Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-1.1
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Redmine
Redmine
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
videolan
vlc-1.1
Commits
a0550542
Commit
a0550542
authored
Jul 09, 2009
by
Rémi Denis-Courmont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Remove stub functions
parent
31063568
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
0 additions
and
18 deletions
+0
-18
include/vlc_aout.h
include/vlc_aout.h
+0
-5
src/audio_output/intf.c
src/audio_output/intf.c
+0
-12
src/libvlccore.sym
src/libvlccore.sym
+0
-1
No files found.
include/vlc_aout.h
View file @
a0550542
...
@@ -460,11 +460,6 @@ VLC_EXPORT( void, aout_EnableFilter, (vlc_object_t *, const char *, bool ));
...
@@ -460,11 +460,6 @@ VLC_EXPORT( void, aout_EnableFilter, (vlc_object_t *, const char *, bool ));
#define aout_EnableFilter( o, n, b ) \
#define aout_EnableFilter( o, n, b ) \
aout_EnableFilter( VLC_OBJECT(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
)
);
VLC_EXPORT
(
vout_thread_t
*
,
aout_filter_RequestVout
,
(
aout_filter_t
*
,
vout_thread_t
*
p_vout
,
video_format_t
*
p_fmt
)
);
...
...
src/audio_output/intf.c
View file @
a0550542
...
@@ -499,15 +499,3 @@ void aout_EnableFilter( vlc_object_t *p_this, const char *psz_name,
...
@@ -499,15 +499,3 @@ void aout_EnableFilter( vlc_object_t *p_this, const char *psz_name,
if
(
p_aout
)
if
(
p_aout
)
vlc_object_release
(
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"
);
}
src/libvlccore.sym
View file @
a0550542
...
@@ -26,7 +26,6 @@ aout_FormatPrepare
...
@@ -26,7 +26,6 @@ aout_FormatPrepare
aout_FormatPrint
aout_FormatPrint
aout_FormatPrintChannels
aout_FormatPrintChannels
aout_OutputNextBuffer
aout_OutputNextBuffer
aout_VisualChange
__aout_VolumeDown
__aout_VolumeDown
__aout_VolumeGet
__aout_VolumeGet
__aout_VolumeInfos
__aout_VolumeInfos
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment