vp9_decodeframe: simplify tile_work_hook signature
use the type names directly in the function declaration rather than (void *arg1, void *arg2) Change-Id: I3d1e6c42d384d8e628d7f2075fa561c2c5e20749
This commit is contained in:
parent
3610d0a3e0
commit
f853117b87
@ -938,9 +938,8 @@ static const uint8_t *decode_tiles(VP9Decoder *pbi,
|
||||
return vp9_reader_find_end(&tile_data->bit_reader);
|
||||
}
|
||||
|
||||
static int tile_worker_hook(void *arg1, void *arg2) {
|
||||
TileWorkerData *const tile_data = (TileWorkerData*)arg1;
|
||||
const TileInfo *const tile = (TileInfo*)arg2;
|
||||
static int tile_worker_hook(TileWorkerData *const tile_data,
|
||||
const TileInfo *const tile) {
|
||||
int mi_row, mi_col;
|
||||
|
||||
for (mi_row = tile->mi_row_start; mi_row < tile->mi_row_end;
|
||||
|
Loading…
x
Reference in New Issue
Block a user