From 69eb0563339e99a83146d0252478b58e265cba04 Mon Sep 17 00:00:00 2001 From: wm4 Date: Thu, 24 Jul 2014 15:27:31 +0200 Subject: audio: fix timestamps Accidentally broken in b6af44d3. For ad_lavc (and in general), the PTS was not updated correctly when filtering only parts of audio frames, and for ad_mpg123 and ad_spdif the PTS was additionally offset by the frame size. This could lead to incorrect time display, and possibly broken A/V sync. --- audio/decode/ad_spdif.c | 1 - 1 file changed, 1 deletion(-) (limited to 'audio/decode/ad_spdif.c') diff --git a/audio/decode/ad_spdif.c b/audio/decode/ad_spdif.c index d655f91574..c215f92e63 100644 --- a/audio/decode/ad_spdif.c +++ b/audio/decode/ad_spdif.c @@ -211,7 +211,6 @@ static int decode_packet(struct dec_audio *da) da->decoded.planes[0] = spdif_ctx->out_buffer; da->decoded.samples = spdif_ctx->out_buffer_len / da->decoded.sstride; - da->pts_offset += da->decoded.samples; return 0; } -- cgit v1.2.3