Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
10
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
Xiph.Org
aom-rav1e
Commits
dd45530e
Commit
dd45530e
authored
Nov 04, 2013
by
Adrian Grange
Committed by
Gerrit Code Review
Nov 04, 2013
Browse files
Options
Browse Files
Download
Plain Diff
Merge "Remove unused member variables from VP9_COMP"
parents
dd209fae
a0a6590e
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
0 additions
and
18 deletions
+0
-18
vp9/encoder/vp9_encodeframe.c
vp9/encoder/vp9_encodeframe.c
+0
-7
vp9/encoder/vp9_onyx_if.c
vp9/encoder/vp9_onyx_if.c
+0
-5
vp9/encoder/vp9_onyx_int.h
vp9/encoder/vp9_onyx_int.h
+0
-6
No files found.
vp9/encoder/vp9_encodeframe.c
View file @
dd45530e
...
...
@@ -683,10 +683,6 @@ static void update_stats(VP9_COMP *cpi) {
[
mbmi
->
ref_frame
[
0
]
!=
GOLDEN_FRAME
]
++
;
}
}
// Count of last ref frame 0,0 usage
if
(
mbmi
->
mode
==
ZEROMV
&&
mbmi
->
ref_frame
[
0
]
==
LAST_FRAME
)
cpi
->
inter_zz_count
++
;
}
}
...
...
@@ -1931,9 +1927,6 @@ static void encode_frame_internal(VP9_COMP *cpi) {
totalrate
=
0
;
// Reset frame count of inter 0,0 motion vector usage.
cpi
->
inter_zz_count
=
0
;
vp9_zero
(
cm
->
counts
.
switchable_interp
);
vp9_zero
(
cpi
->
tx_stepdown_count
);
...
...
vp9/encoder/vp9_onyx_if.c
View file @
dd45530e
...
...
@@ -1032,11 +1032,6 @@ void vp9_alloc_compressor_data(VP9_COMP *cpi) {
CHECK_MEM_ERROR
(
cm
,
cpi
->
tok
,
vpx_calloc
(
tokens
,
sizeof
(
*
cpi
->
tok
)));
}
// Data used for real time vc mode to see if gf needs refreshing
cpi
->
inter_zz_count
=
0
;
cpi
->
gf_bad_count
=
0
;
cpi
->
gf_update_recommended
=
0
;
vpx_free
(
cpi
->
mb_activity_map
);
CHECK_MEM_ERROR
(
cm
,
cpi
->
mb_activity_map
,
vpx_calloc
(
sizeof
(
unsigned
int
),
...
...
vp9/encoder/vp9_onyx_int.h
View file @
dd45530e
...
...
@@ -529,12 +529,6 @@ typedef struct VP9_COMP {
unsigned
int
max_mv_magnitude
;
int
mv_step_param
;
// Data used for real time conferencing mode to help determine if it
// would be good to update the gf
int
inter_zz_count
;
int
gf_bad_count
;
int
gf_update_recommended
;
unsigned
char
*
segmentation_map
;
// segment threashold for encode breakout
...
...
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