Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-gpu
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-gpu
Commits
b64ada26
Commit
b64ada26
authored
Oct 23, 2008
by
Rémi Denis-Courmont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix decoder FIFO pacing.
parent
3c9681e1
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
7 deletions
+3
-7
src/input/decoder.c
src/input/decoder.c
+3
-7
No files found.
src/input/decoder.c
View file @
b64ada26
...
@@ -306,6 +306,7 @@ void input_DecoderDelete( decoder_t *p_dec )
...
@@ -306,6 +306,7 @@ void input_DecoderDelete( decoder_t *p_dec )
/**
/**
* Put a block_t in the decoder's fifo.
* Put a block_t in the decoder's fifo.
* Thread-safe w.r.t. the decoder. May be a cancellation point.
*
*
* \param p_dec the decoder object
* \param p_dec the decoder object
* \param p_block the data block
* \param p_block the data block
...
@@ -316,17 +317,12 @@ void input_DecoderDecode( decoder_t *p_dec, block_t *p_block )
...
@@ -316,17 +317,12 @@ void input_DecoderDecode( decoder_t *p_dec, block_t *p_block )
if
(
p_owner
->
p_input
->
p
->
b_out_pace_control
)
if
(
p_owner
->
p_input
->
p
->
b_out_pace_control
)
{
{
/* FIXME !!!!! */
block_FifoPace
(
p_owner
->
p_fifo
,
10
,
SIZE_MAX
);
while
(
vlc_object_alive
(
p_dec
)
&&
block_FifoCount
(
p_owner
->
p_fifo
)
>
10
)
{
msleep
(
1000
);
}
}
}
else
if
(
block_FifoSize
(
p_owner
->
p_fifo
)
>
50000000
/* 50 MB */
)
else
if
(
block_FifoSize
(
p_owner
->
p_fifo
)
>
50000000
/* 50 MB */
)
{
{
/* FIXME: ideally we would check the time amount of data
/* FIXME: ideally we would check the time amount of data
* in the
fifo
instead of its size. */
* in the
FIFO
instead of its size. */
msg_Warn
(
p_dec
,
"decoder/packetizer fifo full (data not "
msg_Warn
(
p_dec
,
"decoder/packetizer fifo full (data not "
"consumed quickly enough), resetting fifo!"
);
"consumed quickly enough), resetting fifo!"
);
block_FifoEmpty
(
p_owner
->
p_fifo
);
block_FifoEmpty
(
p_owner
->
p_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