Commit 01985075 authored by Aurelien Nephtali's avatar Aurelien Nephtali Committed by Rafaël Carré

Fix --sout-ffmpeg-codec

Signed-off-by: default avatarRafaël Carré <funman@videolan.org>
parent 789cb0bb
...@@ -202,6 +202,8 @@ int OpenEncoder( vlc_object_t *p_this ) ...@@ -202,6 +202,8 @@ int OpenEncoder( vlc_object_t *p_this )
float f_val; float f_val;
char *psz_val; char *psz_val;
config_ChainParse( p_enc, ENC_CFG_PREFIX, ppsz_enc_options, p_enc->p_cfg );
if( p_enc->fmt_out.i_codec == VLC_CODEC_MP3 ) if( p_enc->fmt_out.i_codec == VLC_CODEC_MP3 )
{ {
i_cat = AUDIO_ES; i_cat = AUDIO_ES;
...@@ -334,8 +336,6 @@ int OpenEncoder( vlc_object_t *p_this ) ...@@ -334,8 +336,6 @@ int OpenEncoder( vlc_object_t *p_this )
p_context->dsp_mask |= AV_CPU_FLAG_SSE2; p_context->dsp_mask |= AV_CPU_FLAG_SSE2;
} }
config_ChainParse( p_enc, ENC_CFG_PREFIX, ppsz_enc_options, p_enc->p_cfg );
p_sys->i_key_int = var_GetInteger( p_enc, ENC_CFG_PREFIX "keyint" ); p_sys->i_key_int = var_GetInteger( p_enc, ENC_CFG_PREFIX "keyint" );
p_sys->i_b_frames = var_GetInteger( p_enc, ENC_CFG_PREFIX "bframes" ); p_sys->i_b_frames = var_GetInteger( p_enc, ENC_CFG_PREFIX "bframes" );
p_sys->i_vtolerance = var_GetInteger( p_enc, ENC_CFG_PREFIX "vt" ) * 1000; p_sys->i_vtolerance = var_GetInteger( p_enc, ENC_CFG_PREFIX "vt" ) * 1000;
......
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