Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
M
mpd
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Иван Мажукин
mpd
Commits
c764b70b
Commit
c764b70b
authored
Aug 03, 2019
by
Max Kellermann
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
decoder/mad: merge DecodeNextFrame() and DecodeNextFrameHeader()
parent
52bb03e1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
29 additions
and
42 deletions
+29
-42
MadDecoderPlugin.cxx
src/decoder/plugins/MadDecoderPlugin.cxx
+29
-42
No files found.
src/decoder/plugins/MadDecoderPlugin.cxx
View file @
c764b70b
...
@@ -154,8 +154,7 @@ private:
...
@@ -154,8 +154,7 @@ private:
bool
Seek
(
long
offset
)
noexcept
;
bool
Seek
(
long
offset
)
noexcept
;
bool
FillBuffer
()
noexcept
;
bool
FillBuffer
()
noexcept
;
void
ParseId3
(
size_t
tagsize
,
Tag
*
tag
)
noexcept
;
void
ParseId3
(
size_t
tagsize
,
Tag
*
tag
)
noexcept
;
MadDecoderAction
DecodeNextFrameHeader
(
Tag
*
tag
)
noexcept
;
MadDecoderAction
DecodeNextFrame
(
bool
skip
,
Tag
*
tag
)
noexcept
;
MadDecoderAction
DecodeNextFrame
()
noexcept
;
gcc_pure
gcc_pure
offset_type
ThisFrameOffset
()
const
noexcept
;
offset_type
ThisFrameOffset
()
const
noexcept
;
...
@@ -396,7 +395,7 @@ RecoverFrameError(const struct mad_stream &stream) noexcept
...
@@ -396,7 +395,7 @@ RecoverFrameError(const struct mad_stream &stream) noexcept
}
}
MadDecoderAction
MadDecoderAction
MadDecoder
::
DecodeNextFrame
Header
(
Tag
*
tag
)
noexcept
MadDecoder
::
DecodeNextFrame
(
bool
skip
,
Tag
*
tag
)
noexcept
{
{
if
((
stream
.
buffer
==
nullptr
||
stream
.
error
==
MAD_ERROR_BUFLEN
)
&&
if
((
stream
.
buffer
==
nullptr
||
stream
.
error
==
MAD_ERROR_BUFLEN
)
&&
!
FillBuffer
())
!
FillBuffer
())
...
@@ -433,13 +432,7 @@ MadDecoder::DecodeNextFrameHeader(Tag *tag) noexcept
...
@@ -433,13 +432,7 @@ MadDecoder::DecodeNextFrameHeader(Tag *tag) noexcept
return
MadDecoderAction
::
SKIP
;
return
MadDecoderAction
::
SKIP
;
}
}
return
MadDecoderAction
::
OK
;
if
(
!
skip
&&
mad_frame_decode
(
&
frame
,
&
stream
))
}
MadDecoderAction
MadDecoder
::
DecodeNextFrame
()
noexcept
{
if
(
mad_frame_decode
(
&
frame
,
&
stream
))
return
RecoverFrameError
(
stream
);
return
RecoverFrameError
(
stream
);
return
MadDecoderAction
::
OK
;
return
MadDecoderAction
::
OK
;
...
@@ -704,20 +697,20 @@ MadDecoder::DecodeFirstFrame(Tag *tag) noexcept
...
@@ -704,20 +697,20 @@ MadDecoder::DecodeFirstFrame(Tag *tag) noexcept
struct
xing
xing
;
struct
xing
xing
;
while
(
true
)
{
while
(
true
)
{
MadDecoderAction
ret
;
const
auto
action
=
DecodeNextFrame
(
false
,
tag
);
do
{
switch
(
action
)
{
ret
=
DecodeNextFrameHeader
(
tag
);
case
MadDecoderAction
:
:
SKIP
:
}
while
(
ret
==
MadDecoderAction
::
CONT
);
case
MadDecoderAction
:
:
CONT
:
if
(
ret
==
MadDecoderAction
::
BREAK
)
continue
;
return
false
;
if
(
ret
==
MadDecoderAction
::
SKIP
)
continue
;
do
{
case
MadDecoderAction
:
:
BREAK
:
ret
=
DecodeNextFrame
();
}
while
(
ret
==
MadDecoderAction
::
CONT
);
if
(
ret
==
MadDecoderAction
::
BREAK
)
return
false
;
return
false
;
if
(
ret
==
MadDecoderAction
::
OK
)
break
;
case
MadDecoderAction
:
:
OK
:
break
;
}
break
;
}
}
struct
mad_bitptr
ptr
=
stream
.
anc_ptr
;
struct
mad_bitptr
ptr
=
stream
.
anc_ptr
;
...
@@ -941,31 +934,25 @@ inline bool
...
@@ -941,31 +934,25 @@ inline bool
MadDecoder
::
LoadNextFrame
()
noexcept
MadDecoder
::
LoadNextFrame
()
noexcept
{
{
while
(
true
)
{
while
(
true
)
{
MadDecoderAction
ret
;
Tag
tag
;
do
{
Tag
tag
;
ret
=
DecodeNextFrameHeader
(
&
tag
);
const
auto
action
=
DecodeNextFrame
(
mute_frame
!=
MadDecoderMuteFrame
::
NONE
,
if
(
!
tag
.
IsEmpty
())
&
tag
);
client
->
SubmitTag
(
input_stream
,
if
(
!
tag
.
IsEmpty
())
std
::
move
(
tag
));
client
->
SubmitTag
(
input_stream
,
std
::
move
(
tag
));
}
while
(
ret
==
MadDecoderAction
::
CONT
);
if
(
ret
==
MadDecoderAction
::
BREAK
)
return
false
;
const
bool
skip
=
ret
==
MadDecoderAction
::
SKIP
;
switch
(
action
)
{
case
MadDecoderAction
:
:
SKIP
:
case
MadDecoderAction
:
:
CONT
:
continue
;
if
(
mute_frame
==
MadDecoderMuteFrame
::
NONE
)
{
case
MadDecoderAction
:
:
BREAK
:
do
{
return
false
;
ret
=
DecodeNextFrame
();
}
while
(
ret
==
MadDecoderAction
::
CONT
);
if
(
ret
==
MadDecoderAction
::
BREAK
)
return
false
;
}
if
(
!
skip
&&
ret
==
MadDecoderAction
::
OK
)
case
MadDecoderAction
:
:
OK
:
return
true
;
return
true
;
}
}
}
}
}
...
...
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