Commit 37e6859a authored by Rémi Denis-Courmont's avatar Rémi Denis-Courmont

Remove redumdant audio format comparisons

aout_FiltersCreatePipeline() deals with it internally.
parent 43c4b5aa
...@@ -344,24 +344,20 @@ int aout_InputNew( aout_instance_t * p_aout, aout_input_t * p_input, const aout_ ...@@ -344,24 +344,20 @@ int aout_InputNew( aout_instance_t * p_aout, aout_input_t * p_input, const aout_
} }
/* complete the filter chain if necessary */ /* complete the filter chain if necessary */
if ( !AOUT_FMTS_IDENTICAL( &chain_input_format, if ( aout_FiltersCreatePipeline( p_aout, p_input->pp_filters,
&p_filter->fmt_in.audio ) ) &p_input->i_nb_filters,
&chain_input_format,
&p_filter->fmt_in.audio ) < 0 )
{ {
if ( aout_FiltersCreatePipeline( p_aout, p_input->pp_filters, msg_Err( p_aout, "cannot add user filter %s (skipped)",
&p_input->i_nb_filters, psz_parser );
&chain_input_format,
&p_filter->fmt_in.audio ) < 0 )
{
msg_Err( p_aout, "cannot add user filter %s (skipped)",
psz_parser );
module_unneed( p_filter, p_filter->p_module ); module_unneed( p_filter, p_filter->p_module );
free( p_filter->p_owner ); free( p_filter->p_owner );
vlc_object_release( p_filter ); vlc_object_release( p_filter );
psz_parser = psz_next; psz_parser = psz_next;
continue; continue;
}
} }
/* success */ /* success */
...@@ -381,16 +377,13 @@ int aout_InputNew( aout_instance_t * p_aout, aout_input_t * p_input, const aout_ ...@@ -381,16 +377,13 @@ int aout_InputNew( aout_instance_t * p_aout, aout_input_t * p_input, const aout_
free( psz_scaletempo ); free( psz_scaletempo );
/* complete the filter chain if necessary */ /* complete the filter chain if necessary */
if ( !AOUT_FMTS_IDENTICAL( &chain_input_format, &chain_output_format ) ) if ( aout_FiltersCreatePipeline( p_aout, p_input->pp_filters,
&p_input->i_nb_filters,
&chain_input_format,
&chain_output_format ) < 0 )
{ {
if ( aout_FiltersCreatePipeline( p_aout, p_input->pp_filters, inputFailure( p_aout, p_input, "couldn't set an input pipeline" );
&p_input->i_nb_filters, return -1;
&chain_input_format,
&chain_output_format ) < 0 )
{
inputFailure( p_aout, p_input, "couldn't set an input pipeline" );
return -1;
}
} }
/* Create resamplers. */ /* Create resamplers. */
......
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