Fixes timestamps with raw .dts demuxing.
---
 libavcodec/dca_parser.c | 1 +
 1 file changed, 1 insertion(+)

diff --git a/libavcodec/dca_parser.c b/libavcodec/dca_parser.c
index 70e64a8..337a99d 100644
--- a/libavcodec/dca_parser.c
+++ b/libavcodec/dca_parser.c
@@ -166,6 +166,7 @@ static int dca_parse(AVCodecParserContext *s, 
AVCodecContext *avctx,
     /* read the duration and sample rate from the frame header */
     if (!dca_parse_params(buf, buf_size, &duration, &sample_rate, 
&pc1->framesize)) {
         s->duration        = duration;
+        avctx->sample_rate = sample_rate;
     } else
         s->duration = 0;
 
-- 
2.7.0

_______________________________________________
ffmpeg-devel mailing list
ffmpeg-devel@ffmpeg.org
http://ffmpeg.org/mailman/listinfo/ffmpeg-devel

Reply via email to