shithub: libvpx

Download patch

ref: 3b2510374a8092dd93be912592bf8b3d16ebd5e4
parent: 2f693be8f80fdce940b7ddd3c5151f7f3feacf27
parent: f3bea3de5b40b4b295f6296787e3048ee4349198
author: hkuang <[email protected]>
date: Mon Apr 13 10:33:43 EDT 2015

Merge "Remove unnecessary set postproc flags."

--- a/vp9/vp9_dx_iface.c
+++ b/vp9/vp9_dx_iface.c
@@ -462,7 +462,6 @@
 static vpx_codec_err_t decode_one(vpx_codec_alg_priv_t *ctx,
                                   const uint8_t **data, unsigned int data_sz,
                                   void *user_priv, int64_t deadline) {
-  vp9_ppflags_t flags = {0, 0, 0};
   const VP9WorkerInterface *const winterface = vp9_get_worker_interface();
   (void)deadline;
 
@@ -546,9 +545,6 @@
     worker->had_error = 0;
     winterface->launch(worker);
   }
-
-  if (ctx->base.init_flags & VPX_CODEC_USE_POSTPROC)
-    set_ppflags(ctx, &flags);
 
   return VPX_CODEC_OK;
 }