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
cbe2dfa4
Commit
cbe2dfa4
authored
Oct 09, 2015
by
Matthieu Bouron
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
lavc/pngdec: honor skip_frame option
parent
fc460fe6
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
32 additions
and
0 deletions
+32
-0
pngdec.c
libavcodec/pngdec.c
+32
-0
No files found.
libavcodec/pngdec.c
View file @
cbe2dfa4
...
...
@@ -1088,6 +1088,13 @@ static int decode_frame_common(AVCodecContext *avctx, PNGDecContext *s,
for
(;;)
{
length
=
bytestream2_get_bytes_left
(
&
s
->
gb
);
if
(
length
<=
0
)
{
if
(
avctx
->
codec_id
==
AV_CODEC_ID_PNG
&&
avctx
->
skip_frame
==
AVDISCARD_ALL
)
{
av_frame_set_metadata
(
p
,
metadata
);
return
0
;
}
if
(
CONFIG_APNG_DECODER
&&
avctx
->
codec_id
==
AV_CODEC_ID_APNG
&&
length
==
0
)
{
if
(
!
(
s
->
state
&
PNG_IDAT
))
return
0
;
...
...
@@ -1115,6 +1122,20 @@ static int decode_frame_common(AVCodecContext *avctx, PNGDecContext *s,
((
tag
>>
8
)
&
0xff
),
((
tag
>>
16
)
&
0xff
),
((
tag
>>
24
)
&
0xff
),
length
);
if
(
avctx
->
codec_id
==
AV_CODEC_ID_PNG
&&
avctx
->
skip_frame
==
AVDISCARD_ALL
)
{
switch
(
tag
)
{
case
MKTAG
(
'I'
,
'H'
,
'D'
,
'R'
):
case
MKTAG
(
'p'
,
'H'
,
'Y'
,
's'
):
case
MKTAG
(
't'
,
'E'
,
'X'
,
't'
):
case
MKTAG
(
'I'
,
'D'
,
'A'
,
'T'
):
break
;
default
:
goto
skip_tag
;
}
}
switch
(
tag
)
{
case
MKTAG
(
'I'
,
'H'
,
'D'
,
'R'
):
if
((
ret
=
decode_ihdr_chunk
(
avctx
,
s
,
length
))
<
0
)
...
...
@@ -1197,6 +1218,11 @@ skip_tag:
}
}
exit_loop
:
if
(
avctx
->
codec_id
==
AV_CODEC_ID_PNG
&&
avctx
->
skip_frame
==
AVDISCARD_ALL
)
{
av_frame_set_metadata
(
p
,
metadata
);
return
0
;
}
if
(
s
->
bits_per_pixel
<=
4
)
handle_small_bpp
(
s
,
p
);
...
...
@@ -1294,6 +1320,12 @@ static int decode_frame_png(AVCodecContext *avctx,
if
((
ret
=
decode_frame_common
(
avctx
,
s
,
p
,
avpkt
))
<
0
)
goto
the_end
;
if
(
avctx
->
skip_frame
==
AVDISCARD_ALL
)
{
*
got_frame
=
0
;
ret
=
bytestream2_tell
(
&
s
->
gb
);
goto
the_end
;
}
if
((
ret
=
av_frame_ref
(
data
,
s
->
picture
.
f
))
<
0
)
return
ret
;
...
...
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