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
c3320a51
Commit
c3320a51
authored
Apr 08, 2016
by
Dmitriy
Committed by
Paul B Mahol
Apr 08, 2016
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
avcodec/pngenc: restore image size before copying frame
Signed-off-by:
Paul B Mahol
<
onemda@gmail.com
>
parent
ae8a13c5
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
0 deletions
+4
-0
pngenc.c
libavcodec/pngenc.c
+4
-0
No files found.
libavcodec/pngenc.c
View file @
c3320a51
...
...
@@ -766,6 +766,8 @@ static int apng_encode_frame(AVCodecContext *avctx, const AVFrame *pict,
// Do disposal
if
(
last_fctl_chunk
.
dispose_op
!=
APNG_DISPOSE_OP_PREVIOUS
)
{
diffFrame
->
width
=
pict
->
width
;
diffFrame
->
height
=
pict
->
height
;
av_frame_copy
(
diffFrame
,
s
->
last_frame
);
if
(
last_fctl_chunk
.
dispose_op
==
APNG_DISPOSE_OP_BACKGROUND
)
{
...
...
@@ -778,6 +780,8 @@ static int apng_encode_frame(AVCodecContext *avctx, const AVFrame *pict,
if
(
!
s
->
prev_frame
)
continue
;
diffFrame
->
width
=
pict
->
width
;
diffFrame
->
height
=
pict
->
height
;
av_frame_copy
(
diffFrame
,
s
->
prev_frame
);
}
...
...
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