summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMinghai Shang <minghai@google.com>2014-05-02 11:54:45 -0700
committerMinghai Shang <minghai@google.com>2014-05-02 11:54:45 -0700
commitd899a1c08aaded050fd1fd379536f269991ae54c (patch)
treed0c7110b1ce573f24ec0f3694b343adfdacf45db
parent56186c25405406d32467f067fec855001acb2801 (diff)
downloadlibvpx-d899a1c08aaded050fd1fd379536f269991ae54c.tar
libvpx-d899a1c08aaded050fd1fd379536f269991ae54c.tar.gz
libvpx-d899a1c08aaded050fd1fd379536f269991ae54c.tar.bz2
libvpx-d899a1c08aaded050fd1fd379536f269991ae54c.zip
[spatial svc] Use VPX_DL_GOOD_QUALITY for vp9_spatial_scalable_encoder
Change-Id: I759f2d7c0e75b44ff4522a5ce57328b1c92730aa
-rw-r--r--examples/vp9_spatial_scalable_encoder.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/vp9_spatial_scalable_encoder.c b/examples/vp9_spatial_scalable_encoder.c
index 64e62ef29..983f52d93 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");