Skip to content
GitLab
Explore
Projects
Groups
Topics
Snippets
Projects
Groups
Topics
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
BC
public
external
libvpx
Commits
a9288e29
Commit
a9288e29
authored
11 years ago
by
Yaowu Xu
Committed by
Gerrit Code Review
11 years ago
Browse files
Options
Download
Plain Diff
Merge "vp9_lookahead_push(): remove unused parameters"
parents
32705df4
dac3d0ce
v1.14.0-linphone
1.4.X
feature/update_to_v1.9.0-linphone
feature/uwp_nuget
frame_parallel
highbitdepth
indianrunnerduck
javanwhistlingduck
khakicampbell
linphone
linphone-android
linphone-old
longtailedduck
m49-2623
m52-2743
m54-2840
m56-2924
m66-3359
m68-3440
mandarinduck
nextgen
nextgenv2
playground
sandbox/Jingning/experimental
sandbox/Jingning/transcode
sandbox/Jingning/vpx
sandbox/aconverse@google.com/ansbench
sandbox/hkuang/frame_parallel
sandbox/hkuang@google.com/decode
sandbox/jimbankoski@google.com/proposed-aom
sandbox/jingning@google.com/decoder_test_suite
sandbox/jingning@google.com/experimental
sandbox/jzern@google.com/test
sandbox/wangch@google.com/vp9
sandbox/yaowu@google.com/mergeaom
v1.12.0-linphone
v1.6.1_linphone
v1.7.0-linphone
v1.9.0-linphone
v1.9.0
v1.9.0-rc1
v1.8.2
v1.8.1
v1.8.0
v1.7.0
v1.6.1
v1.6.0
v1.5.0
v1.4.0
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
vp9/encoder/vp9_lookahead.c
+1
-2
vp9/encoder/vp9_lookahead.c
vp9/encoder/vp9_lookahead.h
+1
-2
vp9/encoder/vp9_lookahead.h
vp9/encoder/vp9_onyx_if.c
+2
-2
vp9/encoder/vp9_onyx_if.c
with
4 additions
and
6 deletions
vp9/encoder/vp9_lookahead.c
+
1
−
2
View file @
a9288e29
...
...
@@ -88,8 +88,7 @@ struct lookahead_ctx * vp9_lookahead_init(unsigned int width,
#define USE_PARTIAL_COPY 0
int
vp9_lookahead_push
(
struct
lookahead_ctx
*
ctx
,
YV12_BUFFER_CONFIG
*
src
,
int64_t
ts_start
,
int64_t
ts_end
,
unsigned
int
flags
,
unsigned
char
*
active_map
)
{
int64_t
ts_start
,
int64_t
ts_end
,
unsigned
int
flags
)
{
struct
lookahead_entry
*
buf
;
#if USE_PARTIAL_COPY
int
row
,
col
,
active_end
;
...
...
This diff is collapsed.
Click to expand it.
vp9/encoder/vp9_lookahead.h
+
1
−
2
View file @
a9288e29
...
...
@@ -63,8 +63,7 @@ void vp9_lookahead_destroy(struct lookahead_ctx *ctx);
* \param[in] active_map Map that specifies which macroblock is active
*/
int
vp9_lookahead_push
(
struct
lookahead_ctx
*
ctx
,
YV12_BUFFER_CONFIG
*
src
,
int64_t
ts_start
,
int64_t
ts_end
,
unsigned
int
flags
,
unsigned
char
*
active_map
);
int64_t
ts_start
,
int64_t
ts_end
,
unsigned
int
flags
);
/**\brief Get the next source buffer to encode
...
...
This diff is collapsed.
Click to expand it.
vp9/encoder/vp9_onyx_if.c
+
2
−
2
View file @
a9288e29
...
...
@@ -3459,8 +3459,8 @@ int vp9_receive_raw_frame(VP9_PTR ptr, unsigned int frame_flags,
check_initial_width
(
cpi
,
subsampling_x
,
subsampling_y
);
vpx_usec_timer_start
(
&
timer
);
if
(
vp9_lookahead_push
(
cpi
->
lookahead
,
sd
,
time_stamp
,
end_time
,
frame_flags
,
cpi
->
ac
ti
v
e_
map_enabled
?
cpi
->
active_map
:
NULL
))
if
(
vp9_lookahead_push
(
cpi
->
lookahead
,
sd
,
ti
m
e_
stamp
,
end_time
,
frame_flags
))
res
=
-
1
;
vpx_usec_timer_mark
(
&
timer
);
cpi
->
time_receive_data
+=
vpx_usec_timer_elapsed
(
&
timer
);
...
...
This diff is collapsed.
Click to expand it.
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment
Menu
Explore
Projects
Groups
Topics
Snippets