Commit 890ec5e2 authored by Rémi Denis-Courmont's avatar Rémi Denis-Courmont

lavc: kill config_Get

parent 8417358d
...@@ -254,7 +254,7 @@ static int OpenDecoder( vlc_object_t *p_this ) ...@@ -254,7 +254,7 @@ static int OpenDecoder( vlc_object_t *p_this )
p_context = avcodec_alloc_context(); p_context = avcodec_alloc_context();
if( !p_context ) if( !p_context )
return VLC_ENOMEM; return VLC_ENOMEM;
p_context->debug = config_GetInt( p_dec, "ffmpeg-debug" ); p_context->debug = var_InheritInteger( p_dec, "ffmpeg-debug" );
p_context->opaque = (void *)p_this; p_context->opaque = (void *)p_this;
/* Set CPU capabilities */ /* Set CPU capabilities */
......
...@@ -278,7 +278,7 @@ int OpenEncoder( vlc_object_t *p_this ) ...@@ -278,7 +278,7 @@ int OpenEncoder( vlc_object_t *p_this )
p_sys->p_context = p_context = avcodec_alloc_context(); p_sys->p_context = p_context = avcodec_alloc_context();
p_sys->p_context->codec_id = p_sys->p_codec->id; p_sys->p_context->codec_id = p_sys->p_codec->id;
p_context->debug = config_GetInt( p_enc, "ffmpeg-debug" ); p_context->debug = var_InheritInteger( p_enc, "ffmpeg-debug" );
p_context->opaque = (void *)p_this; p_context->opaque = (void *)p_this;
/* Set CPU capabilities */ /* Set CPU capabilities */
......
...@@ -216,13 +216,13 @@ int InitVideoDec( decoder_t *p_dec, AVCodecContext *p_context, ...@@ -216,13 +216,13 @@ int InitVideoDec( decoder_t *p_dec, AVCodecContext *p_context,
/* ***** Get configuration of ffmpeg plugin ***** */ /* ***** Get configuration of ffmpeg plugin ***** */
p_sys->p_context->workaround_bugs = p_sys->p_context->workaround_bugs =
config_GetInt( p_dec, "ffmpeg-workaround-bugs" ); var_InheritInteger( p_dec, "ffmpeg-workaround-bugs" );
#if LIBAVCODEC_VERSION_INT < AV_VERSION_INT( 52, 0, 0 ) #if LIBAVCODEC_VERSION_INT < AV_VERSION_INT( 52, 0, 0 )
p_sys->p_context->error_resilience = p_sys->p_context->error_resilience =
config_GetInt( p_dec, "ffmpeg-error-resilience" ); var_InheritInteger( p_dec, "ffmpeg-error-resilience" );
#else #else
p_sys->p_context->error_recognition = p_sys->p_context->error_recognition =
config_GetInt( p_dec, "ffmpeg-error-resilience" ); var_InheritInteger( p_dec, "ffmpeg-error-resilience" );
#endif #endif
if( var_CreateGetBool( p_dec, "grayscale" ) ) if( var_CreateGetBool( p_dec, "grayscale" ) )
......
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