From: Paul Brossier Date: Thu, 13 Dec 2018 02:10:08 +0000 (+0100) Subject: [io] avoid deprecation warning with ffmpeg X-Git-Tag: 0.4.9~113 X-Git-Url: https://git.aubio.org/?a=commitdiff_plain;h=0f5837d10d4fc8f9d94b6a0591af4743bcbfb5fa;p=aubio.git [io] avoid deprecation warning with ffmpeg --- 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];