Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc
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
Commits
6c048d6c
Commit
6c048d6c
authored
Oct 31, 2012
by
Rémi Denis-Courmont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
adummy: avoid forward declaration
parent
2be836eb
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
21 deletions
+6
-21
modules/audio_output/adummy.c
modules/audio_output/adummy.c
+6
-21
No files found.
modules/audio_output/adummy.c
View file @
6c048d6c
...
...
@@ -21,10 +21,6 @@
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
*****************************************************************************/
/*****************************************************************************
* Preamble
*****************************************************************************/
#ifdef HAVE_CONFIG_H
# include "config.h"
#endif
...
...
@@ -46,14 +42,13 @@ vlc_module_end ()
#define A52_FRAME_NB 1536
/*****************************************************************************
* Local prototypes.
*****************************************************************************/
static
void
Play
(
audio_output_t
*
,
block_t
*
,
mtime_t
*
);
static
void
Play
(
audio_output_t
*
aout
,
block_t
*
block
,
mtime_t
*
drift
)
{
block_Release
(
block
);
(
void
)
aout
;
(
void
)
drift
;
}
/*****************************************************************************
* OpenAudio: open a dummy audio device
*****************************************************************************/
static
int
Open
(
vlc_object_t
*
p_this
)
{
audio_output_t
*
p_aout
=
(
audio_output_t
*
)
p_this
;
...
...
@@ -76,13 +71,3 @@ static int Open( vlc_object_t * p_this )
return
VLC_SUCCESS
;
}
/*****************************************************************************
* Play: pretend to play a sound
*****************************************************************************/
static
void
Play
(
audio_output_t
*
aout
,
block_t
*
block
,
mtime_t
*
drift
)
{
block_Release
(
block
);
(
void
)
aout
;
(
void
)
drift
;
}
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