aboutsummaryrefslogtreecommitdiff
path: root/src/tile.h
diff options
context:
space:
mode:
authorBoyuan Yang <byang@debian.org>2022-07-14 15:56:59 -0400
committerBoyuan Yang <byang@debian.org>2022-07-14 15:56:59 -0400
commit1a2e17bd28a068714658551c8c355171ce15dfa0 (patch)
treedb9e739007016850ee355365874a20b07034ef2c /src/tile.h
parenta08da9600832caf817125edee2c3206fe24cd5cb (diff)
parentd4dbf19f6b0181ee78034bfe4caf189d1c016998 (diff)
downloadlibgav1-1a2e17bd28a068714658551c8c355171ce15dfa0.tar.gz
libgav1-1a2e17bd28a068714658551c8c355171ce15dfa0.tar.bz2
libgav1-1a2e17bd28a068714658551c8c355171ce15dfa0.zip
Update upstream source from tag 'upstream/0.18.0'
Update to upstream version '0.18.0' with Debian dir a69c1f7f3e7109393a3f9f5f1a2e7a5c3d3eda9f
Diffstat (limited to 'src/tile.h')
-rw-r--r--src/tile.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/tile.h b/src/tile.h
index 83c3423..fcab963 100644
--- a/src/tile.h
+++ b/src/tile.h
@@ -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,