Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
BC
public
external
libvpx
Commits
666c2666
Commit
666c2666
authored
Jul 23, 2013
by
Jingning Han
Committed by
Gerrit Code Review
Jul 23, 2013
Browse files
Merge "Unify the use of encode_b_args/optimize_block_args"
parents
1099a436
ab77828b
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
9 deletions
+3
-9
vp9/encoder/vp9_encodemb.c
vp9/encoder/vp9_encodemb.c
+3
-9
No files found.
vp9/encoder/vp9_encodemb.c
View file @
666c2666
...
...
@@ -356,12 +356,6 @@ static void optimize_b(VP9_COMMON *const cm, MACROBLOCK *mb,
*
a
=
*
l
=
(
final_eob
>
0
);
}
struct
optimize_block_args
{
VP9_COMMON
*
cm
;
MACROBLOCK
*
x
;
struct
optimize_ctx
*
ctx
;
};
void
vp9_optimize_b
(
int
plane
,
int
block
,
BLOCK_SIZE_TYPE
bsize
,
int
ss_txfrm_size
,
VP9_COMMON
*
cm
,
MACROBLOCK
*
mb
,
struct
optimize_ctx
*
ctx
)
{
...
...
@@ -377,7 +371,7 @@ void vp9_optimize_b(int plane, int block, BLOCK_SIZE_TYPE bsize,
static
void
optimize_block
(
int
plane
,
int
block
,
BLOCK_SIZE_TYPE
bsize
,
int
ss_txfrm_size
,
void
*
arg
)
{
const
struct
optimize_block
_args
*
const
args
=
arg
;
const
struct
encode_b
_args
*
const
args
=
arg
;
vp9_optimize_b
(
plane
,
block
,
bsize
,
ss_txfrm_size
,
args
->
cm
,
args
->
x
,
args
->
ctx
);
}
...
...
@@ -414,7 +408,7 @@ void vp9_optimize_init(MACROBLOCKD *xd, BLOCK_SIZE_TYPE bsize,
void
vp9_optimize_sby
(
VP9_COMMON
*
cm
,
MACROBLOCK
*
x
,
BLOCK_SIZE_TYPE
bsize
)
{
struct
optimize_ctx
ctx
;
struct
optimize_block
_args
arg
=
{
cm
,
x
,
&
ctx
};
struct
encode_b
_args
arg
=
{
cm
,
x
,
&
ctx
};
vp9_optimize_init
(
&
x
->
e_mbd
,
bsize
,
&
ctx
);
foreach_transformed_block_in_plane
(
&
x
->
e_mbd
,
bsize
,
0
,
optimize_block
,
&
arg
);
}
...
...
@@ -422,7 +416,7 @@ void vp9_optimize_sby(VP9_COMMON *cm, MACROBLOCK *x, BLOCK_SIZE_TYPE bsize) {
void
vp9_optimize_sbuv
(
VP9_COMMON
*
const
cm
,
MACROBLOCK
*
x
,
BLOCK_SIZE_TYPE
bsize
)
{
struct
optimize_ctx
ctx
;
struct
optimize_block
_args
arg
=
{
cm
,
x
,
&
ctx
};
struct
encode_b
_args
arg
=
{
cm
,
x
,
&
ctx
};
vp9_optimize_init
(
&
x
->
e_mbd
,
bsize
,
&
ctx
);
foreach_transformed_block_uv
(
&
x
->
e_mbd
,
bsize
,
optimize_block
,
&
arg
);
}
...
...
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