diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2004-12-09 22:04:15 +0000 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2004-12-09 22:04:15 +0000 |
commit | bf835aee11f5ae8708f4d2a2530183e40a38b1db (patch) | |
tree | dfbd18b7aa83feaad2d217d6a9706809e8b141d9 /libavcodec | |
parent | 169eb021d03e19ee77329938f529f2d01410c23a (diff) | |
download | ffmpeg-bf835aee11f5ae8708f4d2a2530183e40a38b1db.tar.gz |
uppercase codec_tag=AVC1 support
Originally committed as revision 3746 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec')
-rw-r--r-- | libavcodec/h264.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/h264.c b/libavcodec/h264.c index a3f1f2416d..11b58ee538 100644 --- a/libavcodec/h264.c +++ b/libavcodec/h264.c @@ -2248,7 +2248,7 @@ static int decode_init(AVCodecContext *avctx){ decode_init_vlc(h); - if(avctx->codec_tag != 0x31637661) // avc1 + if(avctx->codec_tag != 0x31637661 && avctx->codec_tag != 0x31435641) // avc1 h->is_avc = 0; else { if((avctx->extradata_size == 0) || (avctx->extradata == NULL)) { |