Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in / Register
Toggle navigation
F
ffmpeg.wasm-core
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
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Linshizhi
ffmpeg.wasm-core
Commits
8d45c001
Commit
8d45c001
authored
Sep 22, 2012
by
Michael Niedermayer
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
flac_parser: fix fifo ptr wrap check
Signed-off-by:
Michael Niedermayer
<
michaelni@gmx.at
>
parent
1b1b902e
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
1 deletion
+2
-1
flac_parser.c
libavcodec/flac_parser.c
+2
-1
No files found.
libavcodec/flac_parser.c
View file @
8d45c001
...
...
@@ -606,10 +606,11 @@ static int flac_parse(AVCodecParserContext *s, AVCodecContext *avctx,
/* restore the state pre-padding */
if
(
fpc
->
end_padded
)
{
int
warp
=
fpc
->
fifo_buf
->
wptr
-
fpc
->
fifo_buf
->
buffer
<
MAX_FRAME_HEADER_SIZE
;
/* HACK: drain the tail of the fifo */
fpc
->
fifo_buf
->
wptr
-=
MAX_FRAME_HEADER_SIZE
;
fpc
->
fifo_buf
->
wndx
-=
MAX_FRAME_HEADER_SIZE
;
if
(
fpc
->
fifo_buf
->
wptr
<
0
)
{
if
(
warp
)
{
fpc
->
fifo_buf
->
wptr
+=
fpc
->
fifo_buf
->
end
-
fpc
->
fifo_buf
->
buffer
;
}
...
...
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