diff options
author | Boyuan Yang <byang@debian.org> | 2022-07-14 15:56:57 -0400 |
---|---|---|
committer | Boyuan Yang <byang@debian.org> | 2022-07-14 15:56:57 -0400 |
commit | d4dbf19f6b0181ee78034bfe4caf189d1c016998 (patch) | |
tree | 47d5d28d2ab770a10e6c48788725c51dffeb84a9 /src/tile.h | |
parent | 320ef65362608ee1148c299d8d5d7618af34e470 (diff) | |
download | libgav1-d4dbf19f6b0181ee78034bfe4caf189d1c016998.tar.gz libgav1-d4dbf19f6b0181ee78034bfe4caf189d1c016998.tar.bz2 libgav1-d4dbf19f6b0181ee78034bfe4caf189d1c016998.zip |
New upstream version 0.18.0
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, |