Home
last modified time | relevance | path

Searched refs:sb4x4 (Results 1 – 6 of 6) sorted by relevance

/external/libgav1/libgav1/src/post_filter/
Dpost_filter.cc330 void PostFilter::CopyBordersForOneSuperBlockRow(int row4x4, int sb4x4, in CopyBordersForOneSuperBlockRow() argument
349 std::min(RightShiftWithRounding(MultiplyBy4(sb4x4) - height_offset, in CopyBordersForOneSuperBlockRow()
397 int PostFilter::ApplyFilteringForOneSuperBlockRow(int row4x4, int sb4x4, in ApplyFilteringForOneSuperBlockRow() argument
402 ApplyDeblockFilterForOneSuperBlockRow(row4x4, sb4x4); in ApplyFilteringForOneSuperBlockRow()
405 SetupDeblockBuffer(row4x4, sb4x4); in ApplyFilteringForOneSuperBlockRow()
408 ApplyCdefForOneSuperBlockRow(row4x4, sb4x4, is_last_row); in ApplyFilteringForOneSuperBlockRow()
411 ApplySuperResForOneSuperBlockRow(row4x4, sb4x4, is_last_row); in ApplyFilteringForOneSuperBlockRow()
414 CopyBordersForOneSuperBlockRow(row4x4, sb4x4, true); in ApplyFilteringForOneSuperBlockRow()
415 ApplyLoopRestoration(row4x4, sb4x4); in ApplyFilteringForOneSuperBlockRow()
419 CopyBordersForOneSuperBlockRow(row4x4 + sb4x4, 16, true); in ApplyFilteringForOneSuperBlockRow()
[all …]
Dsuper_res.cc87 void PostFilter::ApplySuperResForOneSuperBlockRow(int row4x4_start, int sb4x4, in ApplySuperResForOneSuperBlockRow() argument
116 std::min(sb4x4, frame_header_.rows4x4 - row4x4_start) - in ApplySuperResForOneSuperBlockRow()
184 void PostFilter::SetupDeblockBuffer(int row4x4_start, int sb4x4) { in SetupDeblockBuffer() argument
188 for (int sb_y = 0; sb_y < sb4x4; sb_y += 16) { in SetupDeblockBuffer()
Dloop_restoration.cc177 const int sb4x4) { in ApplyLoopRestorationSingleThread() argument
203 for (int sb_y = 0; sb_y < sb4x4; in ApplyLoopRestorationSingleThread()
352 void PostFilter::ApplyLoopRestoration(const int row4x4_start, const int sb4x4) { in ApplyLoopRestoration() argument
355 ApplyLoopRestorationSingleThread<uint16_t>(row4x4_start, sb4x4); in ApplyLoopRestoration()
359 ApplyLoopRestorationSingleThread<uint8_t>(row4x4_start, sb4x4); in ApplyLoopRestoration()
Ddeblock.cc462 int sb4x4) { in ApplyDeblockFilterForOneSuperBlockRow() argument
465 for (int y = 0; y < sb4x4; y += 16) { in ApplyDeblockFilterForOneSuperBlockRow()
548 int column4x4_end, int sb4x4) { in ApplyDeblockFilter() argument
557 std::min(sb4x4, frame_header_.rows4x4 - row4x4_start); in ApplyDeblockFilter()
Dcdef.cc449 void PostFilter::ApplyCdefForOneSuperBlockRow(int row4x4_start, int sb4x4, in ApplyCdefForOneSuperBlockRow() argument
453 for (int y = 0; y < sb4x4; y += kStep64x64) { in ApplyCdefForOneSuperBlockRow()
/external/libgav1/libgav1/src/
Dpost_filter.h139 int ApplyFilteringForOneSuperBlockRow(int row4x4, int sb4x4, bool is_last_row,
149 int column4x4_start, int column4x4_end, int sb4x4);
303 void CopyBordersForOneSuperBlockRow(int row4x4, int sb4x4,
306 void SetupDeblockBuffer(int row4x4_start, int sb4x4);
363 void ApplyDeblockFilterForOneSuperBlockRow(int row4x4, int sb4x4);
392 void ApplyCdefForOneSuperBlockRow(int row4x4, int sb4x4, bool is_last_row);
413 void ApplySuperResForOneSuperBlockRow(int row4x4, int sb4x4,
428 void ApplyLoopRestorationSingleThread(int row4x4_start, int sb4x4);
429 void ApplyLoopRestoration(int row4x4_start, int sb4x4);