ref: 9a733b399ca99a073eb86f8e87adb077c0f57b6b
parent: 42ef854f97bc6c41db4fdc31cce6647e2feaada0
parent: 1b556e1f9a87c2e935b3f11aa268b5f767a11fd3
author: Marco Paniconi <[email protected]>
date: Wed Aug 26 19:37:00 EDT 2015
Merge "vp9_spatial_svc_encoder: Enable aq-mode for real-time mode."
--- a/examples/vp9_spatial_svc_encoder.c
+++ b/examples/vp9_spatial_svc_encoder.c
@@ -635,6 +635,9 @@
vpx_codec_control(&codec, VP8E_SET_CPUUSED, svc_ctx.speed);
if (svc_ctx.threads)
vpx_codec_control(&codec, VP9E_SET_TILE_COLUMNS, (svc_ctx.threads >> 1));
+ if (svc_ctx.speed >= 5)
+ vpx_codec_control(&codec, VP9E_SET_AQ_MODE, 3);
+
// Encode frames
while (!end_of_stream) {