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
pull/126/head
Michael Niedermayer 17 years ago
parent 9fdfd21c77
commit a7805e2983
  1. 2
      libavformat/riff.c

@ -441,7 +441,7 @@ void ff_parse_specific_params(AVCodecContext *stream, int *au_rate, int *au_ssiz
*au_rate = stream->time_base.den; *au_rate = stream->time_base.den;
}else{ }else{
*au_scale= stream->block_align ? stream->block_align*8 : 8; *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); gcd= ff_gcd(*au_scale, *au_rate);
*au_scale /= gcd; *au_scale /= gcd;

Loading…
Cancel
Save