decoder/mad: move code to LoadNextFrame()
This commit is contained in:
@@ -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
|
||||
{
|
||||
|
Reference in New Issue
Block a user