Commit a7805e29 authored by Michael Niedermayer's avatar Michael Niedermayer

Fallback to sample rate if bit rate is 0. This avoids 0 timebases in nut.

Originally committed as revision 12294 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent 9fdfd21c
......@@ -441,7 +441,7 @@ void ff_parse_specific_params(AVCodecContext *stream, int *au_rate, int *au_ssiz
*au_rate = stream->time_base.den;
}else{
*au_scale= stream->block_align ? stream->block_align*8 : 8;
*au_rate = stream->bit_rate;
*au_rate = stream->bit_rate ? stream->bit_rate : 8*stream->sample_rate;
}
gcd= ff_gcd(*au_scale, *au_rate);
*au_scale /= gcd;
......
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