decoder/mad: move code to LoadNextFrame()
This commit is contained in:
parent
187204f03c
commit
8a432c9b7f
@ -207,6 +207,8 @@ private:
|
||||
*/
|
||||
bool HandleCurrentFrame() noexcept;
|
||||
|
||||
bool LoadNextFrame() noexcept;
|
||||
|
||||
bool Read() noexcept;
|
||||
};
|
||||
|
||||
@ -965,11 +967,8 @@ MadDecoder::HandleCurrentFrame() noexcept
|
||||
}
|
||||
|
||||
inline bool
|
||||
MadDecoder::Read() noexcept
|
||||
MadDecoder::LoadNextFrame() noexcept
|
||||
{
|
||||
if (!HandleCurrentFrame())
|
||||
return false;
|
||||
|
||||
while (true) {
|
||||
MadDecoderAction ret;
|
||||
do {
|
||||
@ -999,6 +998,13 @@ MadDecoder::Read() noexcept
|
||||
}
|
||||
}
|
||||
|
||||
inline bool
|
||||
MadDecoder::Read() noexcept
|
||||
{
|
||||
return HandleCurrentFrame() &&
|
||||
LoadNextFrame();
|
||||
}
|
||||
|
||||
inline void
|
||||
MadDecoder::RunDecoder() noexcept
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user