Changeset e10343bb5d2a5d989ea7616233551882b319eb6b

Show
Ignore:
Timestamp:
22/01/08 08:19:24 (11 months ago)
Author:
Ilkka Ollakka <ileoo@videolan.org>
git-committer:
Ilkka Ollakka <ileoo@videolan.org> 1200986364 +0000
git-parent:

[733d4d79a732f5fa49d692d80eda90e05dd807e9]

git-author:
Ilkka Ollakka <ileoo@videolan.org> 1200986364 +0000
Message:

set volume-change variable also in volumeUp/volumeDown, because it seemed that when you change volume with that, it wasn't setted

Files:

Legend:

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

    rc704c4a re10343b  
    171171    if ( pi_volume != NULL ) *pi_volume = (audio_volume_t) i_volume; 
    172172 
     173    val.b_bool = VLC_TRUE; 
     174    var_Set( p_object->p_libvlc, "volume-change", val ); 
     175 
    173176    if ( p_aout == NULL ) return 0; 
    174177 
     
    209212    var_SetInteger( p_object->p_libvlc, "saved-volume", (audio_volume_t) i_volume ); 
    210213    if ( pi_volume != NULL ) *pi_volume = (audio_volume_t) i_volume; 
     214 
     215    val.b_bool = VLC_TRUE; 
     216    var_Set( p_object->p_libvlc, "volume-change", val ); 
    211217 
    212218    if ( p_aout == NULL ) return 0;