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
4367cb45
Commit
4367cb45
authored
Aug 30, 2000
by
Henri Fallon
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fixed a 100% CPU use bug while no stream is received
parent
506680c9
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
2 deletions
+1
-2
plugins/dummy/aout_dummy.c
plugins/dummy/aout_dummy.c
+1
-2
No files found.
plugins/dummy/aout_dummy.c
View file @
4367cb45
...
@@ -97,7 +97,7 @@ int aout_DummySetRate( aout_thread_t *p_aout )
...
@@ -97,7 +97,7 @@ int aout_DummySetRate( aout_thread_t *p_aout )
*****************************************************************************/
*****************************************************************************/
long
aout_DummyGetBufInfo
(
aout_thread_t
*
p_aout
,
long
l_buffer_limit
)
long
aout_DummyGetBufInfo
(
aout_thread_t
*
p_aout
,
long
l_buffer_limit
)
{
{
return
(
2
*
l_buffer_limit
);
/* value big enough to sleep */
return
(
sizeof
(
s16
)
*
l_buffer_limit
+
1
);
/* value big enough to sleep */
}
}
/*****************************************************************************
/*****************************************************************************
...
@@ -105,7 +105,6 @@ long aout_DummyGetBufInfo( aout_thread_t *p_aout, long l_buffer_limit )
...
@@ -105,7 +105,6 @@ long aout_DummyGetBufInfo( aout_thread_t *p_aout, long l_buffer_limit )
*****************************************************************************/
*****************************************************************************/
void
aout_DummyPlaySamples
(
aout_thread_t
*
p_aout
,
byte_t
*
buffer
,
int
i_size
)
void
aout_DummyPlaySamples
(
aout_thread_t
*
p_aout
,
byte_t
*
buffer
,
int
i_size
)
{
{
;
}
}
/*****************************************************************************
/*****************************************************************************
...
...
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