Commit b32a9571 authored by michael's avatar michael

uppercase codec_tag=AVC1 support


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@3746 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent 3ba780d6
......@@ -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)) {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment