From c19ec6f6f6e77ba713f8ae6f25b68c6eaef46973 Mon Sep 17 00:00:00 2001 From: Rudolf Polzer Date: Wed, 23 Jul 2014 16:09:44 +0200 Subject: encode: deal even more with codec->time_base deprecation. I assume this works too with Libav 10 and FFmpeg d3e51b41. --- audio/out/ao_lavc.c | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/audio/out/ao_lavc.c b/audio/out/ao_lavc.c index 72e98655c1..34cf2c21ac 100644 --- a/audio/out/ao_lavc.c +++ b/audio/out/ao_lavc.c @@ -114,12 +114,11 @@ static int init(struct ao *ao) codec = encode_lavc_get_codec(ao->encode_lavc_ctx, ac->stream); - // ac->stream->time_base.num = 1; - // ac->stream->time_base.den = ao->samplerate; - // doing this breaks mpeg2ts in ffmpeg - // which doesn't properly force the time base to be 90000 - // furthermore, ffmpeg.c doesn't do this either and works - + // TODO: Remove this redundancy with encode_lavc_alloc_stream also + // setting the time base. + // Using codec->time_bvase is deprecated, but needed for older lavf. + ac->stream->time_base.num = 1; + ac->stream->time_base.den = ao->samplerate; ac->stream->codec->time_base.num = 1; ac->stream->codec->time_base.den = ao->samplerate; -- cgit v1.2.3