From 5b55c4dbab0ee2700300f9d8b79747a42ef26158 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rafa=C3=ABl=20Carr=C3=A9?= Date: Sun, 29 Jan 2012 01:18:38 -0500 Subject: [PATCH] Workaround FFmpeg doc/APIchanges lies --- modules/demux/avformat/demux.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/demux/avformat/demux.c b/modules/demux/avformat/demux.c index f427744ebc..a9038cf850 100644 --- a/modules/demux/avformat/demux.c +++ b/modules/demux/avformat/demux.c @@ -243,7 +243,7 @@ int OpenDemux( vlc_object_t *p_this ) psz_url = NULL; vlc_avcodec_lock(); /* avformat calls avcodec behind our back!!! */ -#if LIBAVFORMAT_VERSION_INT >= ((53<<16)+(17<<8)+0) +#if LIBAVFORMAT_VERSION_INT >= ((53<<16)+(26<<8)+0) error = avformat_find_stream_info( p_sys->ic, NULL /* options */ ); #else error = av_find_stream_info( p_sys->ic ); @@ -529,7 +529,7 @@ void CloseDemux( vlc_object_t *p_this ) free( p_sys->tk_pcr ); if( p_sys->ic ) -#if LIBAVFORMAT_VERSION_INT >= ((53<<16)+(17<<8)+0) +#if LIBAVFORMAT_VERSION_INT >= ((53<<16)+(26<<8)+0) avformat_close_input( &p_sys->ic ); #else av_close_input_stream( p_sys->ic ); -- GitLab