]> granicus.if.org Git - libvpx/commitdiff
Remove out of date comment.
authorAdrian Grange <agrange@google.com>
Wed, 5 Feb 2014 23:37:24 +0000 (15:37 -0800)
committerAdrian Grange <agrange@google.com>
Wed, 5 Feb 2014 23:37:24 +0000 (15:37 -0800)
Change-Id: I8c993cf0881cd77c34a4efe7ba1d067cd28c6105

vp9/vp9_cx_iface.c

index 35d202036ee675f0cb0a0ab9b112695d4042adc2..9f5a6204c5e95c41c5904becc2babc8833c5c778 100644 (file)
@@ -279,14 +279,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;