diff options
Diffstat (limited to 'src/tile.h')
-rw-r--r-- | src/tile.h | 5 |
1 files changed, 3 insertions, 2 deletions
@@ -464,13 +464,14 @@ class Tile : public MaxAlignedAllocable { int* start_y, int* step_x, int* step_y); // 7.11.3.3. // If the method returns false, the caller only uses the output parameters // *ref_block_start_x and *ref_block_start_y. If the method returns true, the - // caller uses all three output parameters. + // caller uses all four output parameters. static bool GetReferenceBlockPosition( int reference_frame_index, bool is_scaled, int width, int height, int ref_start_x, int ref_last_x, int ref_start_y, int ref_last_y, int start_x, int start_y, int step_x, int step_y, int left_border, int right_border, int top_border, int bottom_border, - int* ref_block_start_x, int* ref_block_start_y, int* ref_block_end_x); + int* ref_block_start_x, int* ref_block_start_y, int* ref_block_end_x, + int* ref_block_end_y); template <typename Pixel> void BuildConvolveBlock(Plane plane, int reference_frame_index, |