[vlc-devel] commit: Remove a few fixmes ( Rémi Denis-Courmont )
git version control
git at videolan.org
Sun Feb 14 10:58:26 CET 2010
vlc | branch: master | Rémi Denis-Courmont <remi at remlab.net> | Sun Feb 14 11:55:28 2010 +0200| [d4be4dc20721e131114f83f0b87c942f6be3c190] | committer: Rémi Denis-Courmont
Remove a few fixmes
> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=d4be4dc20721e131114f83f0b87c942f6be3c190
---
src/control/audio.c | 4 ----
1 files changed, 0 insertions(+), 4 deletions(-)
diff --git a/src/control/audio.c b/src/control/audio.c
index 4fc9b22..a213ab1 100644
--- a/src/control/audio.c
+++ b/src/control/audio.c
@@ -305,7 +305,6 @@ void libvlc_audio_output_set_device_type( libvlc_media_player_t *mp,
*****************************************************************************/
void libvlc_audio_toggle_mute( libvlc_media_player_t *mp )
{
-#warning FIXME: no playlist
aout_ToggleMute( mp, NULL );
}
@@ -318,7 +317,6 @@ void libvlc_audio_set_mute( libvlc_media_player_t *mp, int mute )
{
#warning Not quite thread-safe
if ( !mute != !libvlc_audio_get_mute( mp ) )
-#warning FIXME: no playlist
aout_ToggleMute( mp, NULL );
}
@@ -329,7 +327,6 @@ int libvlc_audio_get_volume( libvlc_media_player_t *mp )
{
audio_volume_t i_volume;
-#warning FIXME: no playlist
aout_VolumeGet( mp, &i_volume );
return (i_volume*200+AOUT_VOLUME_MAX/2)/AOUT_VOLUME_MAX;
@@ -348,7 +345,6 @@ int libvlc_audio_set_volume( libvlc_media_player_t *mp, int i_volume )
}
i_volume = (i_volume * AOUT_VOLUME_MAX + 100) / 200;
-#warning FIXME: no playlist
aout_VolumeSet( mp, i_volume );
return 0;
}
More information about the vlc-devel
mailing list