summaryrefslogtreecommitdiff
blob: 07b80a3efe5cf6e319c2421f5988aa965de2167b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
Index: libdlna-0.2.3/src/profiles.c
===================================================================
--- libdlna-0.2.3.orig/src/profiles.c
+++ libdlna-0.2.3/src/profiles.c
@@ -205,13 +205,13 @@ av_profile_get_codecs (AVFormatContext *
   for (i = 0; i < ctx->nb_streams; i++)
   {
     if (audio_stream == -1 &&
-        ctx->streams[i]->codec->codec_type == CODEC_TYPE_AUDIO)
+        ctx->streams[i]->codec->codec_type == AVMEDIA_TYPE_AUDIO)
     {
       audio_stream = i;
       continue;
     }
     else if (video_stream == -1 &&
-             ctx->streams[i]->codec->codec_type == CODEC_TYPE_VIDEO)
+             ctx->streams[i]->codec->codec_type == AVMEDIA_TYPE_VIDEO)
     {
       video_stream = i;
       continue;