diff options
Diffstat (limited to 'libavcodec/dca_parser.c')
-rw-r--r-- | libavcodec/dca_parser.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/libavcodec/dca_parser.c b/libavcodec/dca_parser.c index 5ccaaccf11..266520f36c 100644 --- a/libavcodec/dca_parser.c +++ b/libavcodec/dca_parser.c @@ -190,8 +190,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; |