From beb0a1badb33918c68d76e2452643144cfbe1005 Mon Sep 17 00:00:00 2001 From: Pascal Massimino Date: Wed, 3 Nov 2010 17:52:00 -0700 Subject: [PATCH] fix signature of VP8StoreBlock cygwin spotted that. Change-Id: I24a0767b438b0937c5dbd85f8a6db1be8ab51e70 --- src/frame.c | 2 +- src/vp8.c | 2 +- src/vp8i.h | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/frame.c b/src/frame.c index 33cffd7b..d9344125 100644 --- a/src/frame.c +++ b/src/frame.c @@ -163,7 +163,7 @@ static void DoFilter(VP8Decoder* const dec, int mb_x, int mb_y) { } } -void VP8StoreBlock(VP8Decoder* const dec, VP8Io* const io) { +void VP8StoreBlock(VP8Decoder* const dec) { if (dec->filter_type_ > 0) { VP8MB* const info = dec->mb_info_ + dec->mb_x_; int level = dec->filter_levels_[dec->segment_]; diff --git a/src/vp8.c b/src/vp8.c index 38018f26..c71af943 100644 --- a/src/vp8.c +++ b/src/vp8.c @@ -537,7 +537,7 @@ static int ParseFrame(VP8Decoder* const dec, VP8Io* io) { VP8ReconstructBlock(dec); // Store data and save block's filtering params - VP8StoreBlock(dec, io); + VP8StoreBlock(dec); } if (!ok) { break; diff --git a/src/vp8i.h b/src/vp8i.h index b4ee8c17..15a21ee8 100644 --- a/src/vp8i.h +++ b/src/vp8i.h @@ -264,7 +264,7 @@ int VP8InitFrame(VP8Decoder* const dec, VP8Io* io); // Predict a block and add residual void VP8ReconstructBlock(VP8Decoder* const dec); // Store a block, along with filtering params -void VP8StoreBlock(VP8Decoder* const dec, VP8Io* io); +void VP8StoreBlock(VP8Decoder* const dec); // Finalize and transmit a complete row void VP8FinishRow(VP8Decoder* const dec, VP8Io* io);