diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2013-10-28 23:45:26 +0100 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2013-10-28 23:54:42 +0100 |
commit | f1f0b01c4700ae342bb245efcc00a724fd270c14 (patch) | |
tree | b7218a9908957df093a9baa51a01801070e77777 /libavformat | |
parent | e510171f31b985113d058e4c12f20b723018456c (diff) | |
download | ffmpeg-f1f0b01c4700ae342bb245efcc00a724fd270c14.tar.gz |
avformat/gxf: fix old codec id
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavformat')
-rw-r--r-- | libavformat/gxf.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/gxf.c b/libavformat/gxf.c index e15d06aaf9..c36479a821 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: |