Skip to content
Snippets Groups Projects
Commit b18243fc authored by François Cartegnie's avatar François Cartegnie :fingers_crossed:
Browse files

demux: adaptive: remove left indirect returns since lock removal

parent f7cfb90d
No related branches found
No related tags found
No related merge requests found
......@@ -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;
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment