]> git.sesse.net Git - vlc/commitdiff
avcodec: remove support for old versions
authorRémi Denis-Courmont <remi@remlab.net>
Sat, 9 Mar 2013 10:29:30 +0000 (12:29 +0200)
committerRémi Denis-Courmont <remi@remlab.net>
Sat, 9 Mar 2013 10:38:27 +0000 (12:38 +0200)
modules/codec/avcodec/avcodec.c
modules/codec/avcodec/avcodec.h
modules/codec/avcodec/avcommon.h
modules/codec/avcodec/encoder.c
modules/codec/avcodec/fourcc.c
modules/codec/avcodec/subtitle.c
modules/codec/avcodec/video.c
modules/demux/avformat/demux.c
modules/stream_out/switcher.c

index 925a7c5415949cd5bbd27568f30a48d14ed11434..9efce6de47f36a1e77a4e30714929e897724c68e 100644 (file)
@@ -42,8 +42,8 @@
 #include "chroma.h"
 #include "avcommon.h"
 
-#if LIBAVCODEC_VERSION_INT < AV_VERSION_INT( 53, 34, 0 )
-#   error You must update libavcodec to a version >= 53.34.0
+#if LIBAVCODEC_VERSION_INT < AV_VERSION_INT( 54, 25, 0 )
+#   error You must update libavcodec to a version >= 54.25.0
 #endif
 
 /*****************************************************************************
@@ -300,11 +300,7 @@ static int OpenDecoder( vlc_object_t *p_this )
     }
 
     /* *** get a p_context *** */
-#if LIBAVCODEC_VERSION_MAJOR >= 54
     p_context = avcodec_alloc_context3(p_codec);
-#else
-    p_context = avcodec_alloc_context();
-#endif
     if( !p_context )
         return VLC_ENOMEM;
     p_context->debug = var_InheritInteger( p_dec, "avcodec-debug" );
@@ -429,11 +425,7 @@ int ffmpeg_OpenCodec( decoder_t *p_dec )
     }
     int ret;
     vlc_avcodec_lock();
-#if LIBAVCODEC_VERSION_MAJOR >= 54
     ret = avcodec_open2( p_sys->p_context, p_sys->p_codec, NULL /* options */ );
-#else
-    ret = avcodec_open( p_sys->p_context, p_sys->p_codec );
-#endif
     vlc_avcodec_unlock();
     if( ret < 0 )
         return VLC_EGENERIC;
index 3785f06ed3af906dccebcd0e97b5170d8b7300ab..526fde952deb7836dfdf0e1dfd181b7cc66a3ad5 100644 (file)
@@ -283,79 +283,3 @@ int ffmpeg_OpenCodec( decoder_t *p_dec );
 #define LIBAVCODEC_VERSION_CHECK( a, b, c, d, e ) \
     (LIBAVCODEC_VERSION_MICRO <  100 && LIBAVCODEC_VERSION_INT >= AV_VERSION_INT( a, b, c ) ) || \
     (LIBAVCODEC_VERSION_MICRO >= 100 && LIBAVCODEC_VERSION_INT >= AV_VERSION_INT( a, d, e ) )
-
-
-#if LIBAVCODEC_VERSION_MAJOR < 54
-#   define AV_PICTURE_TYPE_B        FF_B_TYPE
-#   define AV_PICTURE_TYPE_I        FF_I_TYPE
-#   define AV_PICTURE_TYPE_P        FF_P_TYPE
-
-#   define AV_SAMPLE_FMT_NONE       SAMPLE_FMT_NONE
-#   define AV_SAMPLE_FMT_U8         SAMPLE_FMT_U8
-#   define AV_SAMPLE_FMT_S16        SAMPLE_FMT_S16
-#   define AV_SAMPLE_FMT_S32        SAMPLE_FMT_S32
-#   define AV_SAMPLE_FMT_FLT        SAMPLE_FMT_FLT
-#   define AV_SAMPLE_FMT_DBL        SAMPLE_FMT_DBL
-
-#ifndef AV_CH_FRONT_LEFT
-#   define AV_CH_FRONT_LEFT         CH_FRONT_LEFT
-#endif
-#ifndef AV_CH_FRONT_RIGHT
-#   define AV_CH_FRONT_RIGHT        CH_FRONT_RIGHT
-#endif
-#ifndef AV_CH_FRONT_CENTER
-#   define AV_CH_FRONT_CENTER       CH_FRONT_CENTER
-#endif
-#ifndef AV_CH_LOW_FREQUENCY
-#   define AV_CH_LOW_FREQUENCY      CH_LOW_FREQUENCY
-#endif
-#ifndef AV_CH_BACK_LEFT
-#   define AV_CH_BACK_LEFT          CH_BACK_LEFT
-#endif
-#ifndef AV_CH_BACK_RIGHT
-#   define AV_CH_BACK_RIGHT         CH_BACK_RIGHT
-#endif
-#ifndef AV_CH_FRONT_LEFT_OF_CENTER
-#   define AV_CH_FRONT_LEFT_OF_CENTER  CH_FRONT_LEFT_OF_CENTER
-#endif
-#ifndef AV_CH_FRONT_RIGHT_OF_CENTER
-#   define AV_CH_FRONT_RIGHT_OF_CENTER CH_FRONT_RIGHT_OF_CENTER
-#endif
-#ifndef AV_CH_BACK_CENTER
-#   define AV_CH_BACK_CENTER        CH_BACK_CENTER
-#endif
-#ifndef AV_CH_SIDE_LEFT
-#   define AV_CH_SIDE_LEFT          CH_SIDE_LEFT
-#endif
-#ifndef AV_CH_SIDE_RIGHT
-#   define AV_CH_SIDE_RIGHT         CH_SIDE_RIGHT
-#endif
-#ifndef AV_CH_TOP_CENTER
-#   define AV_CH_TOP_CENTER         CH_TOP_CENTER
-#endif
-#ifndef AV_CH_TOP_FRONT_LEFT
-#   define AV_CH_TOP_FRONT_LEFT     CH_TOP_FRONT_LEFT
-#endif
-#ifndef AV_CH_TOP_FRONT_CENTER
-#   define AV_CH_TOP_FRONT_CENTER   CH_TOP_FRONT_CENTER
-#endif
-#ifndef AV_CH_TOP_FRONT_RIGHT
-#   define AV_CH_TOP_FRONT_RIGHT    CH_TOP_FRONT_RIGHT
-#endif
-#ifndef AV_CH_TOP_BACK_LEFT
-#   define AV_CH_TOP_BACK_LEFT      CH_TOP_BACK_LEFT
-#endif
-#ifndef AV_CH_TOP_BACK_CENTER
-#   define AV_CH_TOP_BACK_CENTER    CH_TOP_BACK_CENTER
-#endif
-#ifndef AV_CH_TOP_BACK_RIGHT
-#   define AV_CH_TOP_BACK_RIGHT     CH_TOP_BACK_RIGHT
-#endif
-#ifndef AV_CH_STEREO_LEFT
-#   define AV_CH_STEREO_LEFT        CH_STEREO_LEFT
-#endif
-#ifndef AV_CH_STEREO_RIGHT
-#   define AV_CH_STEREO_RIGHT       CH_STEREO_RIGHT
-#endif
-
-#endif /* LIBAVCODEC_VERSION_MAJOR < 54 */
index 057d772e1100fa43b81aeee040fa9c142cf9449a..86df112e898145b911f0cb1b0ea2a643a9b1d3f8 100644 (file)
@@ -63,12 +63,7 @@ static inline void vlc_init_avformat(void)
 static inline void vlc_init_avcodec(void)
 {
     vlc_avcodec_lock();
-
-#if LIBAVCODEC_VERSION_MAJOR < 54
-    avcodec_init();
-#endif
     avcodec_register_all();
-
     vlc_avcodec_unlock();
 }
 #endif
index 2047b3bca042ab5c56998f18b5019d15fac0a29b..3416e93474875202f9186af57ab187ff16930b39 100644 (file)
@@ -300,11 +300,7 @@ int OpenEncoder( vlc_object_t *p_this )
     p_sys->p_buffer = NULL;
     p_sys->i_buffer_out = 0;
 
-#if LIBAVCODEC_VERSION_MAJOR < 54
-    p_context = avcodec_alloc_context();
-#else
     p_context = avcodec_alloc_context3(p_codec);
-#endif
     p_sys->p_context = p_context;
     p_sys->p_context->codec_id = p_sys->p_codec->id;
     p_context->debug = var_InheritInteger( p_enc, "avcodec-debug" );
@@ -387,13 +383,11 @@ int OpenEncoder( vlc_object_t *p_this )
 #endif
         else if( !strncmp( psz_val, "ltp", 3 ) )
             p_sys->i_aac_profile = FF_PROFILE_AAC_LTP;
-#if LIBAVCODEC_VERSION_CHECK( 54, 19, 0, 35, 100 )
 /* These require libavcodec with libfdk-aac */
         else if( !strncmp( psz_val, "hev2", 4 ) )
             p_sys->i_aac_profile = FF_PROFILE_AAC_HE_V2;
         else if( !strncmp( psz_val, "hev1", 4 ) )
             p_sys->i_aac_profile = FF_PROFILE_AAC_HE;
-#endif
         else
         {
             msg_Warn( p_enc, "unknown AAC profile requested, setting it to low" );
@@ -697,11 +691,7 @@ int OpenEncoder( vlc_object_t *p_this )
 
     int ret;
     vlc_avcodec_lock();
-#if LIBAVCODEC_VERSION_MAJOR < 54
-    ret = avcodec_open( p_context, p_codec );
-#else
     ret = avcodec_open2( p_context, p_codec, NULL /* options */ );
-#endif
     vlc_avcodec_unlock();
     if( ret )
     {
@@ -755,11 +745,7 @@ int OpenEncoder( vlc_object_t *p_this )
 
             p_context->codec = NULL;
             vlc_avcodec_lock();
-#if LIBAVCODEC_VERSION_MAJOR < 54
-            ret = avcodec_open( p_context, p_codec );
-#else
             ret = avcodec_open2( p_context, p_codec, NULL /* options */ );
-#endif
             vlc_avcodec_unlock();
             if( ret )
             {
index 5046f02550ea1deae3e53b0bffeb14c4ee679c46..b00269f25596342df3b4dcd368047b19abfa393d 100644 (file)
@@ -192,31 +192,19 @@ static const struct
 
     { VLC_CODEC_VBLE, CODEC_ID_VBLE, VIDEO_ES },
 
-#if LIBAVCODEC_VERSION_INT >= AV_VERSION_INT( 54, 1, 0 )
     { VLC_CODEC_CDXL, CODEC_ID_CDXL, VIDEO_ES },
-#endif
 
     { VLC_CODEC_UTVIDEO, CODEC_ID_UTVIDEO, VIDEO_ES },
 
-#if LIBAVCODEC_VERSION_INT >= AV_VERSION_INT( 53, 42, 0 )
     { VLC_CODEC_DXTORY, CODEC_ID_DXTORY, VIDEO_ES },
-#endif
 
-#if LIBAVCODEC_VERSION_CHECK( 54, 16, 0, 27, 100 )
     { VLC_CODEC_MSS1, CODEC_ID_MSS1, VIDEO_ES },
-#endif
 
-#if LIBAVCODEC_VERSION_CHECK( 54, 17, 0, 32, 100 )
     { VLC_CODEC_MSA1, CODEC_ID_MSA1, VIDEO_ES },
-#endif
 
-#if LIBAVCODEC_VERSION_CHECK( 54, 18, 0, 34, 100 )
     { VLC_CODEC_TSC2, CODEC_ID_TSCC2, VIDEO_ES },
-#endif
 
-#if LIBAVCODEC_VERSION_CHECK( 54, 20, 0, 37, 100 )
     { VLC_CODEC_MTS2, CODEC_ID_MTS2, VIDEO_ES },
-#endif
 
 #if LIBAVCODEC_VERSION_CHECK( 54, 27, 0, 55, 100 )
     { VLC_CODEC_MSS2, AV_CODEC_ID_MSS2, VIDEO_ES },
@@ -391,17 +379,11 @@ static const struct
     { VLC_CODEC_TRUEHD, CODEC_ID_TRUEHD, AUDIO_ES },
     { VLC_CODEC_MLP, CODEC_ID_MLP, AUDIO_ES },
 
-#if LIBAVCODEC_VERSION_INT >= AV_VERSION_INT( 54, 5, 0 )
     { VLC_CODEC_WMAL, CODEC_ID_WMALOSSLESS, AUDIO_ES },
-#endif
 
-#if LIBAVCODEC_VERSION_INT >= AV_VERSION_INT( 54, 12, 0 )
     { VLC_CODEC_RALF, CODEC_ID_RALF, AUDIO_ES },
-#endif
 
-#if LIBAVCODEC_VERSION_CHECK( 54, 14, 0, 26, 100 )
     { VLC_CODEC_INDEO_AUDIO, CODEC_ID_IAC, AUDIO_ES },
-#endif
 
     /* PCM */
     { VLC_CODEC_S8, CODEC_ID_PCM_S8, AUDIO_ES },
index c6305b414237c62795d07301148a30b729d7e098..31a7b88c6c23247ee43300efd4442215c58dff8f 100644 (file)
@@ -83,11 +83,7 @@ int InitSubtitleDec(decoder_t *dec, AVCodecContext *context,
     /* */
     int ret;
     vlc_avcodec_lock();
-#if LIBAVCODEC_VERSION_MAJOR < 54
-    ret = avcodec_open(context, codec);
-#else
     ret = avcodec_open2(context, codec, NULL /* options */);
-#endif
     vlc_avcodec_unlock();
     if (ret < 0) {
         msg_Err(dec, "cannot open codec (%s)", namecodec);
index 637f39704286e6e33f08426e587564cf1beeffdf..5c4a3a713e454654fbac6af8f283b71bcce9e216 100644 (file)
@@ -75,11 +75,8 @@ struct decoder_sys_t
 
 
     /* */
-#if LIBAVCODEC_VERSION_MAJOR < 54
-    AVPaletteControl palette;
-#else
-# warning FIXME
-#endif
+    //AVPaletteControl palette;
+#warning FIXME
 
     /* */
     bool b_flush;
@@ -212,11 +209,7 @@ int InitVideoDec( decoder_t *p_dec, AVCodecContext *p_context,
     /*  ***** Get configuration of ffmpeg plugin ***** */
     p_sys->p_context->workaround_bugs =
         var_InheritInteger( p_dec, "avcodec-workaround-bugs" );
-#if LIBAVCODEC_VERSION_MAJOR < 54
-    p_sys->p_context->error_recognition =
-#else
     p_sys->p_context->err_recognition =
-#endif
         var_InheritInteger( p_dec, "avcodec-error-resilience" );
 
     if( var_CreateGetBool( p_dec, "grayscale" ) )
@@ -383,39 +376,8 @@ int InitVideoDec( decoder_t *p_dec, AVCodecContext *p_context,
     }
     p_dec->fmt_out.i_codec = p_dec->fmt_out.video.i_chroma;
 
-#if LIBAVCODEC_VERSION_MAJOR < 54
     /* Setup palette */
-    memset( &p_sys->palette, 0, sizeof(p_sys->palette) );
-    if( p_dec->fmt_in.video.p_palette )
-    {
-        p_sys->palette.palette_changed = 1;
-
-        for( int i = 0; i < __MIN( AVPALETTE_COUNT, p_dec->fmt_in.video.p_palette->i_entries ); i++ )
-        {
-            union {
-                uint32_t u;
-                uint8_t a[4];
-            } c;
-            c.a[0] = p_dec->fmt_in.video.p_palette->palette[i][0];
-            c.a[1] = p_dec->fmt_in.video.p_palette->palette[i][1];
-            c.a[2] = p_dec->fmt_in.video.p_palette->palette[i][2];
-            c.a[3] = p_dec->fmt_in.video.p_palette->palette[i][3];
-
-            p_sys->palette.palette[i] = c.u;
-        }
-        p_sys->p_context->palctrl = &p_sys->palette;
-
-        p_dec->fmt_out.video.p_palette = malloc( sizeof(video_palette_t) );
-        if( p_dec->fmt_out.video.p_palette )
-            *p_dec->fmt_out.video.p_palette = *p_dec->fmt_in.video.p_palette;
-    }
-    else if( p_sys->i_codec_id != CODEC_ID_MSVIDEO1 && p_sys->i_codec_id != CODEC_ID_CINEPAK )
-    {
-        p_sys->p_context->palctrl = &p_sys->palette;
-    }
-#else
 # warning FIXME
-#endif
 
     /* ***** init this codec with special data ***** */
     ffmpeg_InitCodec( p_dec );
@@ -968,10 +930,6 @@ static int ffmpeg_GetFrameBuf( struct AVCodecContext *p_context,
         /* */
         p_ff_pic->type = FF_BUFFER_TYPE_USER;
 
-#if LIBAVCODEC_VERSION_MAJOR < 54
-        p_ff_pic->age = 256*256*256*64;
-#endif
-
         if( vlc_va_Get( p_sys->p_va, p_ff_pic ) )
         {
             msg_Err( p_dec, "VaGrabSurface failed" );
@@ -1060,10 +1018,6 @@ static int ffmpeg_GetFrameBuf( struct AVCodecContext *p_context,
     p_ff_pic->linesize[2] = p_pic->p[2].i_pitch;
     p_ff_pic->linesize[3] = 0;
 
-#if LIBAVCODEC_VERSION_MAJOR < 54
-    p_ff_pic->age = 256*256*256*64;
-#endif
-
     post_mt( p_sys );
     return 0;
 
index b09fad820684586cc7ab3125fa62d0e72e750f9c..b072435067dc66e13fe7e045b4aefcdb6ffcec9a 100644 (file)
@@ -325,15 +325,7 @@ int OpenDemux( vlc_object_t *p_this )
 
             fmt.video.i_width = cc->width;
             fmt.video.i_height = cc->height;
-#if LIBAVCODEC_VERSION_MAJOR < 54
-            if( cc->palctrl )
-            {
-                fmt.video.p_palette = malloc( sizeof(video_palette_t) );
-                *fmt.video.p_palette = *(video_palette_t *)cc->palctrl;
-            }
-#else
 # warning FIXME: implement palette transmission
-#endif
             psz_type = "video";
             fmt.video.i_frame_rate = cc->time_base.den;
             fmt.video.i_frame_rate_base = cc->time_base.num * __MAX( cc->ticks_per_frame, 1 );
index 8e240efa70b0316c30836f6c1511c8cab5986930..b871bc1134fcddecc26af529112f4a91003e3070 100644 (file)
@@ -131,10 +131,8 @@ vlc_module_begin ()
                  QSCALE_TEXT, QSCALE_LONGTEXT, true )
     add_bool( SOUT_CFG_PREFIX "mute-audio", true,
               AUDIO_TEXT, AUDIO_LONGTEXT, true )
-#if LIBAVCODEC_VERSION_MAJOR >= 54
     add_string( SOUT_CFG_PREFIX "options", NULL,
                 AV_OPTIONS_TEXT, AV_OPTIONS_LONGTEXT, true )
-#endif
 vlc_module_end ()
 
 static const char *const ppsz_sout_options[] = {
@@ -158,9 +156,7 @@ struct sout_stream_sys_t
     int             i_fd;
     int             i_cmd, i_old_cmd;
 
-#if LIBAVCODEC_VERSION_MAJOR >= 54
     AVDictionary    *options;
-#endif
 };
 
 struct sout_stream_id_t
@@ -297,7 +293,6 @@ static int Open( vlc_object_t *p_this )
     p_stream->pf_send   = Send;
     p_stream->p_sys     = p_sys;
 
-#if LIBAVCODEC_VERSION_MAJOR >= 54
     char *psz_opts = var_InheritString( p_stream, SOUT_CFG_PREFIX "options" );
     if (psz_opts && *psz_opts) {
         p_sys->options = vlc_av_get_options(psz_opts);
@@ -305,7 +300,6 @@ static int Open( vlc_object_t *p_this )
         p_sys->options = NULL;
     }
     free(psz_opts);
-#endif
 
     return VLC_SUCCESS;
 }
@@ -318,10 +312,7 @@ static void Close( vlc_object_t * p_this )
     sout_stream_t       *p_stream = (sout_stream_t *)p_this;
     sout_stream_sys_t   *p_sys = p_stream->p_sys;
 
-#if LIBAVCODEC_VERSION_MAJOR >= 54
     av_dict_free( &p_sys->options );
-#endif
-
     free( p_sys );
 }
 
@@ -371,11 +362,7 @@ static sout_stream_id_t *Add( sout_stream_t *p_stream, es_format_t *p_fmt )
             return NULL;
         }
 
-#if LIBAVCODEC_VERSION_MAJOR < 54
-        id->ff_enc_c = avcodec_alloc_context();
-#else
         id->ff_enc_c = avcodec_alloc_context3( id->ff_enc );
-#endif
         id->ff_enc_c->dsp_mask = GetVlcDspMask();
         id->ff_enc_c->sample_rate = p_fmt->audio.i_rate;
         id->ff_enc_c->time_base.num = 1;
@@ -384,7 +371,6 @@ static sout_stream_id_t *Add( sout_stream_t *p_stream, es_format_t *p_fmt )
         id->ff_enc_c->bit_rate    = p_fmt->i_bitrate;
 
         int ret;
-#if LIBAVCODEC_VERSION_MAJOR >= 54
         AVDictionary *options = NULL;
         if (p_sys->options)
             av_dict_copy(&options, p_sys->options, 0);
@@ -396,11 +382,6 @@ static sout_stream_id_t *Add( sout_stream_t *p_stream, es_format_t *p_fmt )
             msg_Err( p_stream, "Unknown option \"%s\"", t->key );
         }
         av_dict_free(&options);
-#else
-        vlc_avcodec_lock();
-        ret = avcodec_open( id->ff_enc_c, id->ff_enc );
-        vlc_avcodec_unlock();
-#endif
 
         if (ret)
         {
@@ -760,11 +741,7 @@ static mtime_t VideoCommand( sout_stream_t *p_stream, sout_stream_id_t *id )
             return 0;
         }
 
-#if LIBAVCODEC_VERSION_MAJOR < 54
-        id->ff_enc_c = avcodec_alloc_context();
-#else
         id->ff_enc_c = avcodec_alloc_context3( id->ff_enc );
-#endif
         id->ff_enc_c->dsp_mask = GetVlcDspMask();
         id->ff_enc_c->width = p_sys->p_pictures[p_sys->i_cmd-1].format.i_width;
         id->ff_enc_c->height = p_sys->p_pictures[p_sys->i_cmd-1].format.i_height;
@@ -791,22 +768,18 @@ static mtime_t VideoCommand( sout_stream_t *p_stream, sout_stream_id_t *id )
 
         vlc_avcodec_lock();
         int ret;
-#if LIBAVCODEC_VERSION_MAJOR >= 54
         AVDictionary *options = NULL;
         if (p_sys->options)
             av_dict_copy(&options, p_sys->options, 0);
         ret = avcodec_open2( id->ff_enc_c, id->ff_enc, options ? &options : NULL );
-#else
-        ret = avcodec_open( id->ff_enc_c, id->ff_enc );
-#endif
         vlc_avcodec_unlock();
-#if LIBAVCODEC_VERSION_MAJOR >= 54
+
         AVDictionaryEntry *t = NULL;
         while ((t = av_dict_get(options, "", t, AV_DICT_IGNORE_SUFFIX))) {
             msg_Err( p_stream, "Unknown option \"%s\"", t->key );
         }
         av_dict_free(&options);
-#endif
+
         if (ret)
         {
             msg_Err( p_stream, "cannot open encoder" );