Skip to content
GitLab
Menu
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Xiph.Org
aom-rav1e
Commits
44dc1806
Commit
44dc1806
authored
Apr 11, 2013
by
Ronald S. Bultje
Committed by
Gerrit Code Review
Apr 11, 2013
Browse files
Merge "Remove "tplist" from VP9_COMP." into experimental
parents
69902c6b
2e2b8a53
Changes
3
Hide whitespace changes
Inline
Side-by-side
vp9/encoder/vp9_encodeframe.c
View file @
44dc1806
...
@@ -927,8 +927,6 @@ static void encode_sb(VP9_COMP *cpi,
...
@@ -927,8 +927,6 @@ static void encode_sb(VP9_COMP *cpi,
if
(
output_enabled
)
{
if
(
output_enabled
)
{
(
*
tp
)
->
Token
=
EOSB_TOKEN
;
(
*
tp
)
->
Token
=
EOSB_TOKEN
;
(
*
tp
)
++
;
(
*
tp
)
++
;
if
(
mb_row
<
cm
->
mb_rows
)
cpi
->
tplist
[
mb_row
].
stop
=
*
tp
;
}
}
}
else
{
}
else
{
int
i
;
int
i
;
...
@@ -958,8 +956,6 @@ static void encode_sb(VP9_COMP *cpi,
...
@@ -958,8 +956,6 @@ static void encode_sb(VP9_COMP *cpi,
if
(
output_enabled
)
{
if
(
output_enabled
)
{
(
*
tp
)
->
Token
=
EOSB_TOKEN
;
(
*
tp
)
->
Token
=
EOSB_TOKEN
;
(
*
tp
)
++
;
(
*
tp
)
++
;
if
(
mb_row
+
y_idx
<
cm
->
mb_rows
)
cpi
->
tplist
[
mb_row
+
y_idx
].
stop
=
*
tp
;
}
}
}
}
}
}
...
@@ -993,8 +989,6 @@ static void encode_sb64(VP9_COMP *cpi,
...
@@ -993,8 +989,6 @@ static void encode_sb64(VP9_COMP *cpi,
(
*
tp
)
->
Token
=
EOSB_TOKEN
;
(
*
tp
)
->
Token
=
EOSB_TOKEN
;
(
*
tp
)
++
;
(
*
tp
)
++
;
if
(
mb_row
<
cm
->
mb_rows
)
cpi
->
tplist
[
mb_row
].
stop
=
*
tp
;
}
else
{
}
else
{
int
i
;
int
i
;
...
...
vp9/encoder/vp9_onyx_if.c
View file @
44dc1806
...
@@ -300,9 +300,6 @@ static void setup_features(VP9_COMP *cpi) {
...
@@ -300,9 +300,6 @@ static void setup_features(VP9_COMP *cpi) {
static
void
dealloc_compressor_data
(
VP9_COMP
*
cpi
)
{
static
void
dealloc_compressor_data
(
VP9_COMP
*
cpi
)
{
vpx_free
(
cpi
->
tplist
);
cpi
->
tplist
=
NULL
;
// Delete last frame MV storage buffers
// Delete last frame MV storage buffers
vpx_free
(
cpi
->
lfmv
);
vpx_free
(
cpi
->
lfmv
);
cpi
->
lfmv
=
0
;
cpi
->
lfmv
=
0
;
...
@@ -934,11 +931,6 @@ void vp9_alloc_compressor_data(VP9_COMP *cpi) {
...
@@ -934,11 +931,6 @@ void vp9_alloc_compressor_data(VP9_COMP *cpi) {
!
cpi
->
twopass
.
this_frame_stats
)
!
cpi
->
twopass
.
this_frame_stats
)
vpx_internal_error
(
&
cpi
->
common
.
error
,
VPX_CODEC_MEM_ERROR
,
vpx_internal_error
(
&
cpi
->
common
.
error
,
VPX_CODEC_MEM_ERROR
,
"Failed to allocate firstpass stats"
);
"Failed to allocate firstpass stats"
);
vpx_free
(
cpi
->
tplist
);
CHECK_MEM_ERROR
(
cpi
->
tplist
,
vpx_malloc
(
sizeof
(
TOKENLIST
)
*
(
cpi
->
common
.
mb_rows
)));
}
}
...
...
vp9/encoder/vp9_onyx_int.h
View file @
44dc1806
...
@@ -566,8 +566,6 @@ typedef struct VP9_COMP {
...
@@ -566,8 +566,6 @@ typedef struct VP9_COMP {
unsigned
char
*
active_map
;
unsigned
char
*
active_map
;
unsigned
int
active_map_enabled
;
unsigned
int
active_map_enabled
;
TOKENLIST
*
tplist
;
fractional_mv_step_fp
*
find_fractional_mv_step
;
fractional_mv_step_fp
*
find_fractional_mv_step
;
vp9_full_search_fn_t
full_search_sad
;
vp9_full_search_fn_t
full_search_sad
;
vp9_refining_search_fn_t
refining_search_sad
;
vp9_refining_search_fn_t
refining_search_sad
;
...
...
Write
Preview
Supports
Markdown
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