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
732a37d1
Commit
732a37d1
authored
Oct 03, 2015
by
Anton Khirnov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
libx264: export CPB props side data
parent
03afb62e
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
0 deletions
+8
-0
libx264.c
libavcodec/libx264.c
+8
-0
No files found.
libavcodec/libx264.c
View file @
732a37d1
...
@@ -351,6 +351,7 @@ static int convert_pix_fmt(enum AVPixelFormat pix_fmt)
...
@@ -351,6 +351,7 @@ static int convert_pix_fmt(enum AVPixelFormat pix_fmt)
static
av_cold
int
X264_init
(
AVCodecContext
*
avctx
)
static
av_cold
int
X264_init
(
AVCodecContext
*
avctx
)
{
{
X264Context
*
x4
=
avctx
->
priv_data
;
X264Context
*
x4
=
avctx
->
priv_data
;
AVCPBProperties
*
cpb_props
;
#if CONFIG_LIBX262_ENCODER
#if CONFIG_LIBX262_ENCODER
if
(
avctx
->
codec_id
==
AV_CODEC_ID_MPEG2VIDEO
)
{
if
(
avctx
->
codec_id
==
AV_CODEC_ID_MPEG2VIDEO
)
{
...
@@ -610,6 +611,13 @@ FF_ENABLE_DEPRECATION_WARNINGS
...
@@ -610,6 +611,13 @@ FF_ENABLE_DEPRECATION_WARNINGS
avctx
->
extradata_size
=
p
-
avctx
->
extradata
;
avctx
->
extradata_size
=
p
-
avctx
->
extradata
;
}
}
cpb_props
=
ff_add_cpb_side_data
(
avctx
);
if
(
!
cpb_props
)
return
AVERROR
(
ENOMEM
);
cpb_props
->
buffer_size
=
x4
->
params
.
rc
.
i_vbv_buffer_size
*
1000
;
cpb_props
->
max_bitrate
=
x4
->
params
.
rc
.
i_vbv_max_bitrate
*
1000
;
cpb_props
->
avg_bitrate
=
x4
->
params
.
rc
.
i_bitrate
*
1000
;
return
0
;
return
0
;
}
}
...
...
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