fix signature of VP8StoreBlock

cygwin spotted that.

Change-Id: I24a0767b438b0937c5dbd85f8a6db1be8ab51e70
This commit is contained in:
Pascal Massimino 2010-11-03 17:52:00 -07:00
parent b128c5e268
commit beb0a1badb
3 changed files with 3 additions and 3 deletions

View File

@ -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) { if (dec->filter_type_ > 0) {
VP8MB* const info = dec->mb_info_ + dec->mb_x_; VP8MB* const info = dec->mb_info_ + dec->mb_x_;
int level = dec->filter_levels_[dec->segment_]; int level = dec->filter_levels_[dec->segment_];

View File

@ -537,7 +537,7 @@ static int ParseFrame(VP8Decoder* const dec, VP8Io* io) {
VP8ReconstructBlock(dec); VP8ReconstructBlock(dec);
// Store data and save block's filtering params // Store data and save block's filtering params
VP8StoreBlock(dec, io); VP8StoreBlock(dec);
} }
if (!ok) { if (!ok) {
break; break;

View File

@ -264,7 +264,7 @@ int VP8InitFrame(VP8Decoder* const dec, VP8Io* io);
// Predict a block and add residual // Predict a block and add residual
void VP8ReconstructBlock(VP8Decoder* const dec); void VP8ReconstructBlock(VP8Decoder* const dec);
// Store a block, along with filtering params // 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 // Finalize and transmit a complete row
void VP8FinishRow(VP8Decoder* const dec, VP8Io* io); void VP8FinishRow(VP8Decoder* const dec, VP8Io* io);