From 0f5837d10d4fc8f9d94b6a0591af4743bcbfb5fa Mon Sep 17 00:00:00 2001 From: Paul Brossier Date: Thu, 13 Dec 2018 03:10:08 +0100 Subject: [PATCH] [io] avoid deprecation warning with ffmpeg --- src/io/source_avcodec.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/io/source_avcodec.c b/src/io/source_avcodec.c index 41954528..537b6627 100644 --- a/src/io/source_avcodec.c +++ b/src/io/source_avcodec.c @@ -239,9 +239,11 @@ aubio_source_avcodec_t * new_aubio_source_avcodec(const char_t * path, av_get_media_type_string(AVMEDIA_TYPE_AUDIO), s->path); goto beach; } +#if FFMPEG_LIBAVFORMAT // deprecated with ffmpeg, required with libav av_codec_set_pkt_timebase(avCodecCtx, avFormatCtx->streams[selected_stream]->time_base); #endif +#endif if ( ( err = avcodec_open2(avCodecCtx, codec, NULL) ) < 0) { char errorstr[256]; -- 2.11.0