1
mirror of https://git.videolan.org/git/ffmpeg.git synced 2024-09-06 16:10:09 +02:00

improved detection of "AVC1" style H.264 patch by (Måns Rullgård <mru inprovide com>)

Originally committed as revision 4013 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
Måns Rullgård 2005-03-06 19:40:12 +00:00 committed by Michael Niedermayer
parent fc90504b99
commit 26165f99c6

View File

@ -2632,15 +2632,13 @@ static int decode_init(AVCodecContext *avctx){
decode_init_vlc(h);
if(avctx->codec_tag != 0x31637661 && avctx->codec_tag != 0x31435641) // avc1
h->is_avc = 0;
else {
if((avctx->extradata_size == 0) || (avctx->extradata == NULL)) {
av_log(avctx, AV_LOG_ERROR, "AVC codec requires avcC data\n");
return -1;
}
if(avctx->extradata_size > 0 && avctx->extradata &&
*(char *)avctx->extradata == 1){
av_log(avctx, AV_LOG_INFO, "assuming AVC1 format\n");
h->is_avc = 1;
h->got_avcC = 0;
} else {
h->is_avc = 0;
}
return 0;