From d899a1c08aaded050fd1fd379536f269991ae54c Mon Sep 17 00:00:00 2001 From: Minghai Shang <minghai@google.com> Date: Fri, 2 May 2014 11:54:45 -0700 Subject: [PATCH] [spatial svc] Use VPX_DL_GOOD_QUALITY for vp9_spatial_scalable_encoder Change-Id: I759f2d7c0e75b44ff4522a5ce57328b1c92730aa --- examples/vp9_spatial_scalable_encoder.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/vp9_spatial_scalable_encoder.c b/examples/vp9_spatial_scalable_encoder.c index 64e62ef297..983f52d93f 100644 --- a/examples/vp9_spatial_scalable_encoder.c +++ b/examples/vp9_spatial_scalable_encoder.c @@ -344,7 +344,7 @@ int main(int argc, const char **argv) { } 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"); -- GitLab