summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAdrian Grange <agrange@google.com>2014-02-06 13:40:42 -0800
committerGerrit Code Review <gerrit@gerrit.golo.chromium.org>2014-02-06 13:40:42 -0800
commitf0e896c120db2a064ab3b433008ab58ff702bee9 (patch)
tree7ed961fb5e1644625ccff6e47b70be286e066ef2
parent6adaec4f50607ed4cf3459db4462793b3f4e972c (diff)
parentaa77872be79556da8e5d1c92c10f2f6888703f68 (diff)
downloadlibvpx-f0e896c120db2a064ab3b433008ab58ff702bee9.tar
libvpx-f0e896c120db2a064ab3b433008ab58ff702bee9.tar.gz
libvpx-f0e896c120db2a064ab3b433008ab58ff702bee9.tar.bz2
libvpx-f0e896c120db2a064ab3b433008ab58ff702bee9.zip
Merge "Remove out of date comment."
-rw-r--r--vp9/vp9_cx_iface.c9
1 files changed, 3 insertions, 6 deletions
diff --git a/vp9/vp9_cx_iface.c b/vp9/vp9_cx_iface.c
index b601fa25c..85a3b1117 100644
--- a/vp9/vp9_cx_iface.c
+++ b/vp9/vp9_cx_iface.c
@@ -296,14 +296,11 @@ static vpx_codec_err_t set_vp9e_config(VP9_CONFIG *oxcf,
oxcf->lag_in_frames = cfg.g_lag_in_frames;
}
- // VBR only supported for now.
- // CBR code has been deprectated for experimental phase.
- // CQ mode not yet tested
- oxcf->end_usage = USAGE_LOCAL_FILE_PLAYBACK;
+ oxcf->end_usage = USAGE_LOCAL_FILE_PLAYBACK;
if (cfg.rc_end_usage == VPX_CQ)
- oxcf->end_usage = USAGE_CONSTRAINED_QUALITY;
+ oxcf->end_usage = USAGE_CONSTRAINED_QUALITY;
else if (cfg.rc_end_usage == VPX_Q)
- oxcf->end_usage = USAGE_CONSTANT_QUALITY;
+ oxcf->end_usage = USAGE_CONSTANT_QUALITY;
else if (cfg.rc_end_usage == VPX_CBR)
oxcf->end_usage = USAGE_STREAM_FROM_SERVER;