flacdec: do not warn on sample rate change

This commit is contained in:
Justin Ruggles 2012-10-21 17:04:58 -04:00
parent 90fcac0e95
commit 99d8686357
1 changed files with 1 additions and 5 deletions

View File

@ -460,12 +460,8 @@ static int decode_frame(FLACContext *s)
" or frame header\n");
return -1;
}
if (fi.samplerate == 0) {
if (fi.samplerate == 0)
fi.samplerate = s->samplerate;
} else if (s->samplerate && fi.samplerate != s->samplerate) {
av_log(s->avctx, AV_LOG_WARNING, "sample rate changed from %d to %d\n",
s->samplerate, fi.samplerate);
}
s->samplerate = s->avctx->sample_rate = fi.samplerate;
if (!s->got_streaminfo) {