Commit 59fbc36b authored by Rémi Duraffort's avatar Rémi Duraffort

avcodec: fix compilation.

parent 4e48a9c5
...@@ -44,16 +44,15 @@ ...@@ -44,16 +44,15 @@
# include <avcodec.h> # include <avcodec.h>
#endif #endif
#include "avcodec.h"
#include "avutil.h"
#if LIBAVCODEC_VERSION_INT < AV_VERSION_INT( 51, 48, 0 ) #if LIBAVCODEC_VERSION_INT < AV_VERSION_INT( 51, 48, 0 )
# error You must update libavcodec to a version >= 51.48.0 # error You must update libavcodec to a version >= 51.48.0
#elif LIBAVCODEC_VERSION_INT < AV_VERSION_INT( 52, 25, 0 ) #elif LIBAVCODEC_VERSION_INT < AV_VERSION_INT( 52, 25, 0 )
# warning You should update libavcodec to get subtitle support # warning You should update libavcodec to get subtitle support
#endif #endif
#include "avcodec.h"
#include "avutil.h"
/***************************************************************************** /*****************************************************************************
* decoder_sys_t: decoder descriptor * decoder_sys_t: decoder descriptor
*****************************************************************************/ *****************************************************************************/
...@@ -315,9 +314,11 @@ static void CloseDecoder( vlc_object_t *p_this ) ...@@ -315,9 +314,11 @@ static void CloseDecoder( vlc_object_t *p_this )
case VIDEO_ES: case VIDEO_ES:
EndVideoDec ( p_dec ); EndVideoDec ( p_dec );
break; break;
#if LIBAVCODEC_VERSION_INT >= AV_VERSION_INT( 52, 25, 0 )
case SPU_ES: case SPU_ES:
EndSubtitleDec( p_dec ); EndSubtitleDec( p_dec );
break; break;
#endif
} }
if( p_sys->p_context ) if( p_sys->p_context )
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment