summaryrefslogtreecommitdiff
path: root/examples
diff options
context:
space:
mode:
authorMinghai Shang <minghai@google.com>2014-05-21 11:18:06 -0700
committerMinghai Shang <minghai@google.com>2014-05-21 11:18:06 -0700
commit39aef4023639857d282d65524ac9b5c091df176b (patch)
tree19da7775eeabf13c07e7fbb89634390bb507d38c /examples
parent66ce10c13dee8d64f4249189df450e4b14cf9ca3 (diff)
downloadlibvpx-39aef4023639857d282d65524ac9b5c091df176b.tar.gz
libvpx-39aef4023639857d282d65524ac9b5c091df176b.tar.bz2
libvpx-39aef4023639857d282d65524ac9b5c091df176b.zip
[spatial svc] Remove hard coded rc_end_usage setting
Change-Id: Ifb09502ddf62664b3bfc62172de46bc36fde8efb
Diffstat (limited to 'examples')
-rw-r--r--examples/vp9_spatial_svc_encoder.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/examples/vp9_spatial_svc_encoder.c b/examples/vp9_spatial_svc_encoder.c
index 983f52d93..5bc657576 100644
--- a/examples/vp9_spatial_svc_encoder.c
+++ b/examples/vp9_spatial_svc_encoder.c
@@ -150,6 +150,7 @@ static void parse_command_line(int argc, const char **argv_,
enc_cfg->rc_target_bitrate = default_bitrate;
enc_cfg->kf_min_dist = default_kf_dist;
enc_cfg->kf_max_dist = default_kf_dist;
+ enc_cfg->rc_end_usage = VPX_CQ;
// initialize AppInput with default values
app_input->frames_to_code = default_frames_to_code;