shithub: libvpx

Download patch

ref: 07ce926107fb939000c5f57b9142d31b91369b80
parent: e9f46ebd38e11361fa051ceac521888af261146d
parent: d899a1c08aaded050fd1fd379536f269991ae54c
author: Minghai Shang <minghai@google.com>
date: Mon May 5 19:22:03 EDT 2014

Merge "[spatial svc] Use VPX_DL_GOOD_QUALITY for vp9_spatial_scalable_encoder"

--- a/examples/vp9_spatial_scalable_encoder.c
+++ b/examples/vp9_spatial_scalable_encoder.c
@@ -344,7 +344,7 @@
     }
 
     res = vpx_svc_encode(&svc_ctx, &codec, (end_of_stream ? NULL : &raw),
-                         pts, frame_duration, VPX_DL_REALTIME);
+                         pts, frame_duration, VPX_DL_GOOD_QUALITY);
     printf("%s", vpx_svc_get_message(&svc_ctx));
     if (res != VPX_CODEC_OK) {
       die_codec(&codec, "Failed to encode frame");
--