Commit 43c18fec authored by Michael Niedermayer's avatar Michael Niedermayer

Merge commit '584f8840'

* commit '584f8840':
  riff: Pass block_align to estimate frame duration
Merged-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parents f78bc96b 584f8840
......@@ -67,7 +67,7 @@ int ff_put_wav_header(AVIOContext *pb, AVCodecContext *enc, int flags)
/* 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. */
frame_size = av_get_audio_frame_duration(enc, 0);
frame_size = av_get_audio_frame_duration(enc, enc->block_align);
if (!frame_size)
frame_size = enc->frame_size;
......
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