From 74b7001500c0901b095986fafe7dca3e5c23c7f2 Mon Sep 17 00:00:00 2001 From: wm4 Date: Fri, 7 Mar 2014 15:23:03 +0100 Subject: encode: don't access ao->pts This field will be moved out of the ao struct. The encoding code was basically using an invalid way of accessing this field. Since the AO will be moved into its own thread too and will do its own buffering, the AO and the playback core might not even agree which sample a PTS timestamp belongs to. Add some extrapolation code to handle this case. --- common/encode_lavc.c | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to 'common/encode_lavc.c') diff --git a/common/encode_lavc.c b/common/encode_lavc.c index 39787430bf..5f9e2a0390 100644 --- a/common/encode_lavc.c +++ b/common/encode_lavc.c @@ -386,6 +386,14 @@ void encode_lavc_set_video_fps(struct encode_lavc_context *ctx, float fps) ctx->vo_fps = fps; } +void encode_lavc_set_audio_pts(struct encode_lavc_context *ctx, double pts) +{ + if (ctx) { + ctx->last_audio_in_pts = pts; + ctx->samples_since_last_pts = 0; + } +} + static void encode_2pass_prepare(struct encode_lavc_context *ctx, AVDictionary **dictp, AVStream *stream, struct stream **bytebuf, -- cgit v1.2.3