shithub: libvpx

Download patch

ref: 5e6b333902f71d0c1110b546e48333ca1da7db7e
parent: b0a2871c3567f2a30100e9aeb0500f8c18d6d68a
author: Scott LaVarnway <slavarnway@google.com>
date: Wed Jul 3 06:25:29 EDT 2013

Bug fix: set frame_parallel_decoding_mode

This patch allows the frame_parallel_decoding_mode flag
to be set instead of returning a codec error.

Change-Id: I4a1631c625723ac8873290d0fd0211074a87d112

--- a/vp9/vp9_cx_iface.c
+++ b/vp9/vp9_cx_iface.c
@@ -1032,6 +1032,7 @@
   {VP8E_SET_CQ_LEVEL,                 set_param},
   {VP8E_SET_MAX_INTRA_BITRATE_PCT,    set_param},
   {VP9E_SET_LOSSLESS,                 set_param},
+  {VP9E_SET_FRAME_PARALLEL_DECODING,  set_param},
   {VP9_GET_REFERENCE,                 get_reference},
   { -1, NULL},
 };
--