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
29816e27
Commit
29816e27
authored
Sep 23, 2018
by
Mark Thompson
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
vaapi_encode_mpeg2: Use common slice sizing code
parent
2923ed24
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
10 deletions
+8
-10
vaapi_encode_mpeg2.c
libavcodec/vaapi_encode_mpeg2.c
+8
-10
No files found.
libavcodec/vaapi_encode_mpeg2.c
View file @
29816e27
...
@@ -35,9 +35,6 @@ typedef struct VAAPIEncodeMPEG2Context {
...
@@ -35,9 +35,6 @@ typedef struct VAAPIEncodeMPEG2Context {
int
level
;
int
level
;
// Derived settings.
// Derived settings.
int
mb_width
;
int
mb_height
;
int
quant_i
;
int
quant_i
;
int
quant_p
;
int
quant_p
;
int
quant_b
;
int
quant_b
;
...
@@ -477,8 +474,6 @@ static int vaapi_encode_mpeg2_init_picture_params(AVCodecContext *avctx,
...
@@ -477,8 +474,6 @@ static int vaapi_encode_mpeg2_init_picture_params(AVCodecContext *avctx,
vpic
->
f_code
[
1
][
0
]
=
pce
->
f_code
[
1
][
0
];
vpic
->
f_code
[
1
][
0
]
=
pce
->
f_code
[
1
][
0
];
vpic
->
f_code
[
1
][
1
]
=
pce
->
f_code
[
1
][
1
];
vpic
->
f_code
[
1
][
1
]
=
pce
->
f_code
[
1
][
1
];
pic
->
nb_slices
=
priv
->
mb_height
;
return
0
;
return
0
;
}
}
...
@@ -490,8 +485,8 @@ static int vaapi_encode_mpeg2_init_slice_params(AVCodecContext *avctx,
...
@@ -490,8 +485,8 @@ static int vaapi_encode_mpeg2_init_slice_params(AVCodecContext *avctx,
VAEncSliceParameterBufferMPEG2
*
vslice
=
slice
->
codec_slice_params
;
VAEncSliceParameterBufferMPEG2
*
vslice
=
slice
->
codec_slice_params
;
int
qp
;
int
qp
;
vslice
->
macroblock_address
=
priv
->
mb_width
*
slice
->
index
;
vslice
->
macroblock_address
=
slice
->
block_start
;
vslice
->
num_macroblocks
=
priv
->
mb_width
;
vslice
->
num_macroblocks
=
slice
->
block_size
;
switch
(
pic
->
type
)
{
switch
(
pic
->
type
)
{
case
PICTURE_TYPE_IDR
:
case
PICTURE_TYPE_IDR
:
...
@@ -525,9 +520,6 @@ static av_cold int vaapi_encode_mpeg2_configure(AVCodecContext *avctx)
...
@@ -525,9 +520,6 @@ static av_cold int vaapi_encode_mpeg2_configure(AVCodecContext *avctx)
if
(
err
<
0
)
if
(
err
<
0
)
return
err
;
return
err
;
priv
->
mb_width
=
FFALIGN
(
avctx
->
width
,
16
)
/
16
;
priv
->
mb_height
=
FFALIGN
(
avctx
->
height
,
16
)
/
16
;
if
(
ctx
->
va_rc_mode
==
VA_RC_CQP
)
{
if
(
ctx
->
va_rc_mode
==
VA_RC_CQP
)
{
priv
->
quant_p
=
av_clip
(
avctx
->
global_quality
,
1
,
31
);
priv
->
quant_p
=
av_clip
(
avctx
->
global_quality
,
1
,
31
);
if
(
avctx
->
i_quant_factor
>
0
.
0
)
if
(
avctx
->
i_quant_factor
>
0
.
0
)
...
@@ -553,6 +545,12 @@ static av_cold int vaapi_encode_mpeg2_configure(AVCodecContext *avctx)
...
@@ -553,6 +545,12 @@ static av_cold int vaapi_encode_mpeg2_configure(AVCodecContext *avctx)
av_assert0
(
0
&&
"Invalid RC mode."
);
av_assert0
(
0
&&
"Invalid RC mode."
);
}
}
ctx
->
slice_block_rows
=
FFALIGN
(
avctx
->
width
,
16
)
/
16
;
ctx
->
slice_block_cols
=
FFALIGN
(
avctx
->
height
,
16
)
/
16
;
ctx
->
nb_slices
=
ctx
->
slice_block_rows
;
ctx
->
slice_size
=
1
;
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