Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
VLC
Manage
Activity
Members
Labels
Plan
Issues
4k
Issue boards
Milestones
Code
Merge requests
454
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Analyze
Contributor analytics
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
VideoLAN
VLC
Commits
b18243fc
Commit
b18243fc
authored
3 years ago
by
François Cartegnie
Browse files
Options
Downloads
Patches
Plain Diff
demux: adaptive: remove left indirect returns since lock removal
parent
f7cfb90d
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
modules/demux/adaptive/plumbing/CommandsQueue.cpp
+5
-11
5 additions, 11 deletions
modules/demux/adaptive/plumbing/CommandsQueue.cpp
with
5 additions
and
11 deletions
modules/demux/adaptive/plumbing/CommandsQueue.cpp
+
5
−
11
View file @
b18243fc
...
...
@@ -427,8 +427,7 @@ void CommandsQueue::Abort( bool b_reset )
bool
CommandsQueue
::
isEmpty
()
const
{
bool
b_empty
=
commands
.
empty
()
&&
incoming
.
empty
();
return
b_empty
;
return
commands
.
empty
()
&&
incoming
.
empty
();
}
void
CommandsQueue
::
setDrop
(
bool
b
)
...
...
@@ -443,8 +442,7 @@ void CommandsQueue::setDraining()
bool
CommandsQueue
::
isDraining
()
const
{
bool
b
=
b_draining
;
return
b
;
return
b_draining
;
}
void
CommandsQueue
::
setEOF
(
bool
b
)
...
...
@@ -458,8 +456,7 @@ void CommandsQueue::setEOF( bool b )
bool
CommandsQueue
::
isEOF
()
const
{
bool
b
=
b_eof
;
return
b
;
return
b_eof
;
}
vlc_tick_t
CommandsQueue
::
getDemuxedAmount
(
vlc_tick_t
from
)
const
...
...
@@ -474,9 +471,7 @@ vlc_tick_t CommandsQueue::getDemuxedAmount(vlc_tick_t from) const
vlc_tick_t
CommandsQueue
::
getBufferingLevel
()
const
{
vlc_tick_t
i_buffer
;
i_buffer
=
bufferinglevel
;
return
i_buffer
;
return
bufferinglevel
;
}
vlc_tick_t
CommandsQueue
::
getFirstDTS
()
const
...
...
@@ -504,6 +499,5 @@ void CommandsQueue::LockedSetDraining()
vlc_tick_t
CommandsQueue
::
getPCR
()
const
{
vlc_tick_t
i_pcr
=
pcr
;
return
i_pcr
;
return
pcr
;
}
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment