1
0
mirror of https://github.com/FFmpeg/FFmpeg.git synced 2025-01-13 21:28:01 +02:00

Add checking for codecid to has_codec_parameters().

patch by Ronald S. Bultje, rsbultje gmail com
Date: Sat, 29 Sep 2007 09:25:52 -0400
Subject: [FFmpeg-devel] [PATCH] has_codec_parameters() addition

Originally committed as revision 10636 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
Ronald S. Bultje 2007-10-01 22:11:10 +00:00 committed by Diego Biurrun
parent 64d8ef0bb7
commit 3303926c2f

View File

@ -1638,7 +1638,7 @@ static int has_codec_parameters(AVCodecContext *enc)
val = 1;
break;
}
return (val != 0);
return (enc->codec_id != CODEC_ID_NONE && val != 0);
}
static int try_decode_frame(AVStream *st, const uint8_t *data, int size)
@ -1803,9 +1803,6 @@ int av_find_stream_info(AVFormatContext *ic)
break;
if(st->parser && st->parser->parser->split && !st->codec->extradata)
break;
if (st->codec->codec_type == CODEC_TYPE_AUDIO &&
st->codec->codec_id == CODEC_ID_NONE)
break;
if(st->first_dts == AV_NOPTS_VALUE)
break;
}