[FFmpeg-cvslog] avformat/gxf: fix old codec id

Michael Niedermayer git at videolan.org
Mon Oct 28 23:55:44 CET 2013


ffmpeg | branch: master | Michael Niedermayer <michaelni at gmx.at> | Mon Oct 28 23:45:26 2013 +0100| [f1f0b01c4700ae342bb245efcc00a724fd270c14] | committer: Michael Niedermayer

avformat/gxf: fix old codec id

Signed-off-by: Michael Niedermayer <michaelni at gmx.at>

> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=f1f0b01c4700ae342bb245efcc00a724fd270c14
---

 libavformat/gxf.c |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/libavformat/gxf.c b/libavformat/gxf.c
index e15d06a..c36479a 100644
--- a/libavformat/gxf.c
+++ b/libavformat/gxf.c
@@ -166,7 +166,7 @@ static int get_sindex(AVFormatContext *s, int id, int format) {
         case 26: /* AVCi50 / AVCi100 (AVC Intra) */
         case 29: /* AVCHD */
             st->codec->codec_type = AVMEDIA_TYPE_VIDEO;
-            st->codec->codec_id = CODEC_ID_H264;
+            st->codec->codec_id = AV_CODEC_ID_H264;
             st->need_parsing = AVSTREAM_PARSE_HEADERS;
             break;
         // timecode tracks:



More information about the ffmpeg-cvslog mailing list