[FFmpeg-cvslog] avformat: do not require frame_size in avformat_find_stream_info() for MP1/ 2/3

Justin Ruggles git at videolan.org
Tue Mar 6 06:15:58 CET 2012


ffmpeg | branch: master | Justin Ruggles <justin.ruggles at gmail.com> | Mon Feb 27 02:42:22 2012 -0500| [fbc8c59679e13831f5e835761d859858aae368a4] | committer: Justin Ruggles

avformat: do not require frame_size in avformat_find_stream_info() for MP1/2/3

It was only needed to avoid a bad time base (and thus non-monotone timestamps)
for stream copy to avi.

> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=fbc8c59679e13831f5e835761d859858aae368a4
---

 libavformat/utils.c |    3 ---
 1 files changed, 0 insertions(+), 3 deletions(-)

diff --git a/libavformat/utils.c b/libavformat/utils.c
index dbc8a53..4677a11 100644
--- a/libavformat/utils.c
+++ b/libavformat/utils.c
@@ -2019,9 +2019,6 @@ static int has_codec_parameters(AVCodecContext *avctx)
     case AVMEDIA_TYPE_AUDIO:
         val = avctx->sample_rate && avctx->channels && avctx->sample_fmt != AV_SAMPLE_FMT_NONE;
         if (!avctx->frame_size &&
-             avctx->codec_id == CODEC_ID_MP1 ||
-             avctx->codec_id == CODEC_ID_MP2 ||
-             avctx->codec_id == CODEC_ID_MP3 ||
              avctx->codec_id == CODEC_ID_CELT))
             return 0;
         break;



More information about the ffmpeg-cvslog mailing list