[FFmpeg-cvslog] ff_parse_specific_params: do not use AVCodecContext.frame_size
Anton Khirnov
git at videolan.org
Fri Jan 1 15:55:10 CET 2016
ffmpeg | branch: master | Anton Khirnov <anton at khirnov.net> | Tue Dec 30 07:51:04 2014 +0100| [9f1eccb97bf8894cb18b14f642500686505ef186] | committer: Anton Khirnov
ff_parse_specific_params: do not use AVCodecContext.frame_size
It will not be set unless the muxing codec context is also the encoding
context, which is discouraged. When the frame size is not known from
av_get_audio_frame_duration(), the fallback should still be good enough.
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=9f1eccb97bf8894cb18b14f642500686505ef186
---
libavformat/riffenc.c | 5 -----
1 file changed, 5 deletions(-)
diff --git a/libavformat/riffenc.c b/libavformat/riffenc.c
index 81b3b2d..2e4b7e0 100644
--- a/libavformat/riffenc.c
+++ b/libavformat/riffenc.c
@@ -212,12 +212,7 @@ void ff_parse_specific_params(AVStream *st, int *au_rate,
int gcd;
int audio_frame_size;
- /* We use the known constant frame size for the codec if known, otherwise
- * fall back on using AVCodecContext.frame_size, which is not as reliable
- * for indicating packet duration. */
audio_frame_size = av_get_audio_frame_duration(codec, 0);
- if (!audio_frame_size)
- audio_frame_size = codec->frame_size;
*au_ssize = codec->block_align;
if (audio_frame_size && codec->sample_rate) {
More information about the ffmpeg-cvslog
mailing list