dca_parser: allow the parser to change the sample rate

This commit is contained in:
Justin Ruggles 2012-10-07 20:52:35 -04:00
parent 0366664ef9
commit a4202003b2

View File

@ -192,8 +192,7 @@ static int dca_parse(AVCodecParserContext * s,
/* read the duration and sample rate from the frame header */
if (!dca_parse_params(buf, buf_size, &duration, &sample_rate)) {
s->duration = duration;
if (!avctx->sample_rate)
avctx->sample_rate = sample_rate;
avctx->sample_rate = sample_rate;
} else
s->duration = 0;