From 7cbee29afab42e5676039120367c75774f94f036 Mon Sep 17 00:00:00 2001 From: Vikas Arora Date: Wed, 30 May 2012 14:44:54 +0530 Subject: [PATCH] Fix bug: InitIo reseting fancy_upsampling flag. frame's InitIo should not reset fancy_upsampling flag. This flag (fancy_upsampling) is set via CustomSetup -> WebPIoInitFromOptions and frame's InitIo() is resetting it to 0. Change-Id: I64b54cdfba43799c0a5aa8e384575af5d6331674 --- src/dec/frame.c | 1 - 1 file changed, 1 deletion(-) diff --git a/src/dec/frame.c b/src/dec/frame.c index 1ad45f06..50982dbd 100644 --- a/src/dec/frame.c +++ b/src/dec/frame.c @@ -504,7 +504,6 @@ static void InitIo(VP8Decoder* const dec, VP8Io* io) { io->v = dec->cache_v_; io->y_stride = dec->cache_y_stride_; io->uv_stride = dec->cache_uv_stride_; - io->fancy_upsampling = 0; // default io->a = NULL; }