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
285128ee
Commit
285128ee
authored
Jan 25, 2013
by
Paul B Mahol
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
lavc/gifdec: do not return nonzero *got_frame if frame is not passed
Signed-off-by:
Paul B Mahol
<
onemda@gmail.com
>
parent
aaebdce3
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
8 deletions
+6
-8
gifdec.c
libavcodec/gifdec.c
+6
-8
No files found.
libavcodec/gifdec.c
View file @
285128ee
...
@@ -409,10 +409,8 @@ static int gif_read_header1(GifState *s)
...
@@ -409,10 +409,8 @@ static int gif_read_header1(GifState *s)
return
0
;
return
0
;
}
}
static
int
gif_parse_next_image
(
GifState
*
s
,
int
*
got_picture
)
static
int
gif_parse_next_image
(
GifState
*
s
)
{
{
*
got_picture
=
1
;
while
(
bytestream2_get_bytes_left
(
&
s
->
gb
))
{
while
(
bytestream2_get_bytes_left
(
&
s
->
gb
))
{
int
code
=
bytestream2_get_byte
(
&
s
->
gb
);
int
code
=
bytestream2_get_byte
(
&
s
->
gb
);
int
ret
;
int
ret
;
...
@@ -428,8 +426,7 @@ static int gif_parse_next_image(GifState *s, int *got_picture)
...
@@ -428,8 +426,7 @@ static int gif_parse_next_image(GifState *s, int *got_picture)
break
;
break
;
case
GIF_TRAILER
:
case
GIF_TRAILER
:
/* end of image */
/* end of image */
*
got_picture
=
0
;
return
AVERROR_EOF
;
return
0
;
default:
default:
/* erroneous block label */
/* erroneous block label */
return
AVERROR_INVALIDDATA
;
return
AVERROR_INVALIDDATA
;
...
@@ -507,11 +504,12 @@ static int gif_decode_frame(AVCodecContext *avctx, void *data, int *got_frame, A
...
@@ -507,11 +504,12 @@ static int gif_decode_frame(AVCodecContext *avctx, void *data, int *got_frame, A
s
->
picture
.
key_frame
=
0
;
s
->
picture
.
key_frame
=
0
;
}
}
ret
=
gif_parse_next_image
(
s
,
got_frame
);
ret
=
gif_parse_next_image
(
s
);
if
(
ret
<
0
)
if
(
ret
<
0
)
return
ret
;
return
ret
;
else
if
(
*
got_frame
)
*
picture
=
s
->
picture
;
*
picture
=
s
->
picture
;
*
got_frame
=
1
;
return
avpkt
->
size
;
return
avpkt
->
size
;
}
}
...
...
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