summaryrefslogtreecommitdiff
path: root/libavcodec/h264.c
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2004-12-09 22:04:15 +0000
committerMichael Niedermayer <michaelni@gmx.at>2004-12-09 22:04:15 +0000
commitbf835aee11f5ae8708f4d2a2530183e40a38b1db (patch)
treedfbd18b7aa83feaad2d217d6a9706809e8b141d9 /libavcodec/h264.c
parent169eb021d03e19ee77329938f529f2d01410c23a (diff)
uppercase codec_tag=AVC1 support
Originally committed as revision 3746 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/h264.c')
-rw-r--r--libavcodec/h264.c2
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)) {