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
458e53f5
Commit
458e53f5
authored
Dec 10, 2015
by
Anton Khirnov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
mpegvideo_enc: actually add the side data with vbv_delay to the packet
Fixes
2507b5dd
parent
b0b133b8
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
0 deletions
+7
-0
mpegvideo_enc.c
libavcodec/mpegvideo_enc.c
+7
-0
No files found.
libavcodec/mpegvideo_enc.c
View file @
458e53f5
...
...
@@ -1808,6 +1808,13 @@ FF_ENABLE_DEPRECATION_WARNINGS
return
AVERROR
(
ENOMEM
);
props
->
vbv_delay
=
vbv_delay
*
300
;
ret
=
av_packet_add_side_data
(
pkt
,
AV_PKT_DATA_CPB_PROPERTIES
,
(
uint8_t
*
)
props
,
props_size
);
if
(
ret
<
0
)
{
av_freep
(
&
props
);
return
ret
;
}
#if FF_API_VBV_DELAY
FF_DISABLE_DEPRECATION_WARNINGS
avctx
->
vbv_delay
=
vbv_delay
*
300
;
...
...
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