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
2e448ef8
Commit
2e448ef8
authored
Aug 12, 2002
by
Christophe Massiot
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fixed a S/PDIF bug.
parent
0ef062c7
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
2 deletions
+4
-2
modules/audio_mixer/spdif.c
modules/audio_mixer/spdif.c
+4
-2
No files found.
modules/audio_mixer/spdif.c
View file @
2e448ef8
...
...
@@ -2,7 +2,7 @@
* spdif.c : dummy mixer for S/PDIF output (1 input only)
*****************************************************************************
* Copyright (C) 2002 VideoLAN
* $Id: spdif.c,v 1.
1 2002/08/11 22:36:35
massiot Exp $
* $Id: spdif.c,v 1.
2 2002/08/12 07:40:23
massiot Exp $
*
* Authors: Christophe Massiot <massiot@via.ecp.fr>
*
...
...
@@ -64,7 +64,7 @@ static int Create( vlc_object_t *p_this )
p_aout
->
mixer
.
pf_do_work
=
DoWork
;
/* This is a bit kludgy - do not ask for a new buffer, since the one
* provided by the first input will be good enough. */
p_aout
->
mixer
.
output_alloc
.
i_alloc
=
AOUT_ALLOC_NONE
;
p_aout
->
mixer
.
output_alloc
.
i_alloc
_type
=
AOUT_ALLOC_NONE
;
return
0
;
}
...
...
@@ -74,5 +74,7 @@ static int Create( vlc_object_t *p_this )
*****************************************************************************/
static
void
DoWork
(
aout_instance_t
*
p_aout
,
aout_buffer_t
*
p_buffer
)
{
aout_input_t
*
p_input
=
p_aout
->
pp_inputs
[
0
];
aout_FifoPop
(
p_aout
,
&
p_input
->
fifo
);
}
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