Changeset 3057eb721f8408a02baf233397c7002f45c7d3f7

Show
Ignore:
Timestamp:
06/17/07 16:06:26 (1 year ago)
Author:
Laurent Aimar <fenrir@videolan.org>
git-committer:
Laurent Aimar <fenrir@videolan.org> 1182089186 +0000
git-parent:

[0ec9c4719ba4df3896197dfddcc2b38f42269790]

git-author:
Laurent Aimar <fenrir@videolan.org> 1182089186 +0000
Message:

Be sure to restart the mixer on replaygain mode change.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • src/audio_output/input.c

    rd20dd24 r3057eb7  
    880880    for( i = 0; i < p_aout->i_nb_inputs; i++ ) 
    881881        ReplayGainSelect( p_aout, p_aout->pp_inputs[i] ); 
     882 
     883    /* Restart the mixer (a trivial mixer may be in use) */ 
     884    aout_MixerMultiplierSet( p_aout, p_aout->mixer.f_multiplier ); 
    882885    vlc_mutex_unlock( &p_aout->mixer_lock ); 
    883886