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
749fbfd0
Commit
749fbfd0
authored
Mar 31, 2015
by
Donny Yang
Committed by
Michael Niedermayer
Mar 31, 2015
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
png: Clear up the calculation of max packet size
Signed-off-by:
Michael Niedermayer
<
michaelni@gmx.at
>
parent
65a646eb
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
4 deletions
+8
-4
pngenc.c
libavcodec/pngenc.c
+8
-4
No files found.
libavcodec/pngenc.c
View file @
749fbfd0
...
...
@@ -307,12 +307,16 @@ static int encode_frame(AVCodecContext *avctx, AVPacket *pkt,
row_size
=
(
avctx
->
width
*
s
->
bits_per_pixel
+
7
)
>>
3
;
enc_row_size
=
deflateBound
(
&
s
->
zstream
,
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
;
max_packet_size
=
FF_MIN_BUFFER_SIZE
+
// headers
avctx
->
height
*
(
enc_row_size
+
12
*
(((
int64_t
)
enc_row_size
+
IOBUF_SIZE
-
1
)
/
IOBUF_SIZE
)
// IDAT * ceil(enc_row_size / IOBUF_SIZE)
);
if
(
max_packet_size
>
INT_MAX
)
return
AVERROR
(
ENOMEM
);
if
((
ret
=
ff_alloc_packet2
(
avctx
,
pkt
,
max_packet_size
))
<
0
)
ret
=
ff_alloc_packet2
(
avctx
,
pkt
,
max_packet_size
);
if
(
ret
<
0
)
return
ret
;
s
->
bytestream_start
=
...
...
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