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
9d389d44
Commit
9d389d44
authored
Jul 25, 2001
by
Arnaud de Bossoreille de Ribou
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
The spdif audio output won't kill itself anymore at the beginning.
parent
664478c0
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
8 deletions
+1
-8
src/audio_output/aout_spdif.c
src/audio_output/aout_spdif.c
+1
-8
No files found.
src/audio_output/aout_spdif.c
View file @
9d389d44
...
@@ -2,7 +2,7 @@
...
@@ -2,7 +2,7 @@
* aout_spdif: ac3 passthrough output
* aout_spdif: ac3 passthrough output
*****************************************************************************
*****************************************************************************
* Copyright (C) 2001 VideoLAN
* Copyright (C) 2001 VideoLAN
* $Id: aout_spdif.c,v 1.1
4 2001/06/13 00:03:08 stef
Exp $
* $Id: aout_spdif.c,v 1.1
5 2001/07/25 14:51:48 bozo
Exp $
*
*
* Authors: Michel Kaempf <maxx@via.ecp.fr>
* Authors: Michel Kaempf <maxx@via.ecp.fr>
* Stphane Borel <stef@via.ecp.fr>
* Stphane Borel <stef@via.ecp.fr>
...
@@ -41,7 +41,6 @@
...
@@ -41,7 +41,6 @@
#include "audio_output.h"
#include "audio_output.h"
#include "aout_common.h"
#include "aout_common.h"
#define BLANK_FRAME_MAX 1000
#define SLEEP_TIME 16000
#define SLEEP_TIME 16000
/*****************************************************************************
/*****************************************************************************
...
@@ -150,12 +149,6 @@ void aout_SpdifThread( aout_thread_t * p_aout )
...
@@ -150,12 +149,6 @@ void aout_SpdifThread( aout_thread_t * p_aout )
* the external decoder */
* the external decoder */
intf_WarnMsg
(
6
,
"spdif warning: blank frame"
);
intf_WarnMsg
(
6
,
"spdif warning: blank frame"
);
p_aout
->
pf_play
(
p_aout
,
pi_blank
,
SPDIF_FRAME_SIZE
);
p_aout
->
pf_play
(
p_aout
,
pi_blank
,
SPDIF_FRAME_SIZE
);
/* we kill the output if we don't have any stream */
if
(
++
i_blank
>
BLANK_FRAME_MAX
)
{
p_aout
->
b_die
=
1
;
}
}
}
}
}
...
...
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