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
afc0cc22
Commit
afc0cc22
authored
Mar 22, 2012
by
Michael Niedermayer
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
pngenc: make max_packet_size 64bit check check it.
Signed-off-by:
Michael Niedermayer
<
michaelni@gmx.at
>
parent
50a3867b
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
2 deletions
+5
-2
pngenc.c
libavcodec/pngenc.c
+5
-2
No files found.
libavcodec/pngenc.c
View file @
afc0cc22
...
...
@@ -219,7 +219,8 @@ static int encode_frame(AVCodecContext *avctx, AVPacket *pkt,
PNGEncContext
*
s
=
avctx
->
priv_data
;
AVFrame
*
const
p
=
&
s
->
picture
;
int
bit_depth
,
color_type
,
y
,
len
,
row_size
,
ret
,
is_progressive
;
int
bits_per_pixel
,
pass_row_size
,
enc_row_size
,
max_packet_size
;
int
bits_per_pixel
,
pass_row_size
,
enc_row_size
;
int64_t
max_packet_size
;
int
compression_level
;
uint8_t
*
ptr
,
*
top
;
uint8_t
*
crow_base
=
NULL
,
*
crow_buf
,
*
crow
;
...
...
@@ -286,9 +287,11 @@ static int encode_frame(AVCodecContext *avctx, AVPacket *pkt,
return
-
1
;
enc_row_size
=
deflateBound
(
&
s
->
zstream
,
row_size
);
max_packet_size
=
avctx
->
height
*
(
enc_row_size
+
max_packet_size
=
avctx
->
height
*
(
int64_t
)(
enc_row_size
+
((
enc_row_size
+
IOBUF_SIZE
-
1
)
/
IOBUF_SIZE
)
*
12
)
+
FF_MIN_BUFFER_SIZE
;
if
(
max_packet_size
>
INT_MAX
)
return
AVERROR
(
ENOMEM
);
if
((
ret
=
ff_alloc_packet2
(
avctx
,
pkt
,
max_packet_size
))
<
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