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.cc335 void PostFilter::CopyBordersForOneSuperBlockRow(int row4x4, int sb4x4, in CopyBordersForOneSuperBlockRow() argument
355 std::min(SubsampledValue(MultiplyBy4(sb4x4) - height_offset, in CopyBordersForOneSuperBlockRow()
431 void PostFilter::SetupLoopRestorationBorder(int row4x4_start, int sb4x4) { in SetupLoopRestorationBorder() argument
435 for (int sb_y = 0; sb_y < sb4x4; sb_y += 16) { in SetupLoopRestorationBorder()
565 int PostFilter::ApplyFilteringForOneSuperBlockRow(int row4x4, int sb4x4, in ApplyFilteringForOneSuperBlockRow() argument
570 ApplyDeblockFilterForOneSuperBlockRow(row4x4, sb4x4); in ApplyFilteringForOneSuperBlockRow()
573 SetupLoopRestorationBorder(row4x4, sb4x4); in ApplyFilteringForOneSuperBlockRow()
576 ApplyCdefForOneSuperBlockRow(row4x4, sb4x4, is_last_row); in ApplyFilteringForOneSuperBlockRow()
579 ApplySuperResForOneSuperBlockRow(row4x4, sb4x4, is_last_row); in ApplyFilteringForOneSuperBlockRow()
582 CopyBordersForOneSuperBlockRow(row4x4, sb4x4, true); in ApplyFilteringForOneSuperBlockRow()
[all …]
Dloop_restoration.cc100 const int sb4x4) { in ApplyLoopRestorationForOneSuperBlockRow() argument
124 for (int sb_y = 0; sb_y < sb4x4; in ApplyLoopRestorationForOneSuperBlockRow()
142 void PostFilter::ApplyLoopRestoration(const int row4x4_start, const int sb4x4) { in ApplyLoopRestoration() argument
145 ApplyLoopRestorationForOneSuperBlockRow<uint16_t>(row4x4_start, sb4x4); in ApplyLoopRestoration()
149 ApplyLoopRestorationForOneSuperBlockRow<uint8_t>(row4x4_start, sb4x4); in ApplyLoopRestoration()
Dsuper_res.cc96 void PostFilter::ApplySuperResForOneSuperBlockRow(int row4x4_start, int sb4x4, in ApplySuperResForOneSuperBlockRow() argument
106 std::min(sb4x4, frame_header_.rows4x4 - row4x4_start) - in ApplySuperResForOneSuperBlockRow()
Ddeblock.cc462 int sb4x4) { in ApplyDeblockFilterForOneSuperBlockRow() argument
465 for (int y = 0; y < sb4x4; y += 16) { in ApplyDeblockFilterForOneSuperBlockRow()
504 int column4x4_end, int sb4x4) { in ApplyDeblockFilter() argument
513 std::min(sb4x4, frame_header_.rows4x4 - row4x4_start); in ApplyDeblockFilter()
Dcdef.cc614 void PostFilter::ApplyCdefForOneSuperBlockRow(int row4x4_start, int sb4x4, in ApplyCdefForOneSuperBlockRow() argument
618 for (int y = 0; y < sb4x4; y += kStep64x64) { in ApplyCdefForOneSuperBlockRow()
/external/libgav1/libgav1/src/
Dpost_filter.h142 int ApplyFilteringForOneSuperBlockRow(int row4x4, int sb4x4, bool is_last_row,
152 int column4x4_start, int column4x4_end, int sb4x4);
272 void CopyBordersForOneSuperBlockRow(int row4x4, int sb4x4,
280 void SetupLoopRestorationBorder(int row4x4_start, int sb4x4);
345 void ApplyDeblockFilterForOneSuperBlockRow(int row4x4, int sb4x4);
390 void ApplyCdefForOneSuperBlockRow(int row4x4, int sb4x4, bool is_last_row);
412 void ApplySuperResForOneSuperBlockRow(int row4x4, int sb4x4,
458 void ApplyLoopRestorationForOneSuperBlockRow(int row4x4_start, int sb4x4);
461 void ApplyLoopRestoration(int row4x4_start, int sb4x4);