[vlc-devel] commit: Remove stub functions ( Rémi Denis-Courmont )
git version control
git at videolan.org
Thu Jul 9 20:54:30 CEST 2009
vlc | branch: master | Rémi Denis-Courmont <remi at remlab.net> | Thu Jul 9 21:51:55 2009 +0300| [a0550542cb69a155b3bf676213f1064c95c467f1] | committer: Rémi Denis-Courmont
Remove stub functions
> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=a0550542cb69a155b3bf676213f1064c95c467f1
---
include/vlc_aout.h | 5 -----
src/audio_output/intf.c | 12 ------------
src/libvlccore.sym | 1 -
3 files changed, 0 insertions(+), 18 deletions(-)
diff --git a/include/vlc_aout.h b/include/vlc_aout.h
index 81cc684..d9c3124 100644
--- a/include/vlc_aout.h
+++ b/include/vlc_aout.h
@@ -460,11 +460,6 @@ VLC_EXPORT( void, aout_EnableFilter, (vlc_object_t *, const char *, bool ));
#define aout_EnableFilter( o, n, b ) \
aout_EnableFilter( VLC_OBJECT(o), n, b )
-#define aout_VisualNext(a) aout_VisualChange( VLC_OBJECT(a),1 )
-#define aout_VisualPrev(a) aout_VisualChange( VLC_OBJECT(a),-1 )
-
-VLC_EXPORT( char *, aout_VisualChange, (vlc_object_t *, int ) );
-
/* */
VLC_EXPORT( vout_thread_t *, aout_filter_RequestVout, ( aout_filter_t *, vout_thread_t *p_vout, video_format_t *p_fmt ) );
diff --git a/src/audio_output/intf.c b/src/audio_output/intf.c
index 5cee776..e20ecfd 100644
--- a/src/audio_output/intf.c
+++ b/src/audio_output/intf.c
@@ -499,15 +499,3 @@ void aout_EnableFilter( vlc_object_t *p_this, const char *psz_name,
if( p_aout )
vlc_object_release( p_aout );
}
-
-/**
- * Change audio visualization
- * -1 goes backwards, +1 goes forward
- */
-char *aout_VisualChange( vlc_object_t *p_this, int i_skip )
-{
- (void)p_this; (void)i_skip;
- msg_Err( p_this, "FIXME: %s (%s %d) isn't implemented.", __func__,
- __FILE__, __LINE__ );
- return strdup("foobar");
-}
diff --git a/src/libvlccore.sym b/src/libvlccore.sym
index bb2fbc1..4868852 100644
--- a/src/libvlccore.sym
+++ b/src/libvlccore.sym
@@ -26,7 +26,6 @@ aout_FormatPrepare
aout_FormatPrint
aout_FormatPrintChannels
aout_OutputNextBuffer
-aout_VisualChange
__aout_VolumeDown
__aout_VolumeGet
__aout_VolumeInfos
More information about the vlc-devel
mailing list