Home
last modified time | relevance | path

Searched refs:loop_restoration (Results 1 – 10 of 10) sorted by relevance

/external/libgav1/libgav1/src/
Dpost_filter.h189 static bool DoRestoration(const LoopRestoration& loop_restoration, in DoRestoration() argument
192 return loop_restoration.type[kPlaneY] != kLoopRestorationTypeNone && in DoRestoration()
195 return (loop_restoration.type[kPlaneY] != kLoopRestorationTypeNone || in DoRestoration()
196 loop_restoration.type[kPlaneU] != kLoopRestorationTypeNone || in DoRestoration()
197 loop_restoration.type[kPlaneV] != kLoopRestorationTypeNone) && in DoRestoration()
Dloop_restoration_info.cc57 bool LoopRestorationInfo::Reset(const LoopRestoration* const loop_restoration, in Reset() argument
61 loop_restoration_ = loop_restoration; in Reset()
Dloop_restoration_info.h51 bool Reset(const LoopRestoration* loop_restoration, uint32_t width,
Dobu_parser.cc1140 LoopRestoration* const loop_restoration = &frame_header_.loop_restoration; in ParseLoopRestorationParameters() local
1146 loop_restoration->type[i] = static_cast<LoopRestorationType>(scratch); in ParseLoopRestorationParameters()
1147 if (loop_restoration->type[i] != kLoopRestorationTypeNone) { in ParseLoopRestorationParameters()
1166 loop_restoration->unit_size_log2[kPlaneY] = 6 + unit_shift; in ParseLoopRestorationParameters()
1174 loop_restoration->unit_size_log2[kPlaneU] = in ParseLoopRestorationParameters()
1175 loop_restoration->unit_size_log2[kPlaneV] = in ParseLoopRestorationParameters()
1176 loop_restoration->unit_size_log2[0] - uv_shift; in ParseLoopRestorationParameters()
Dlibgav1_decoder.cmake45 "${libgav1_source}/post_filter/loop_restoration.cc"
Ddecoder_impl.cc1193 &frame_header.loop_restoration, frame_header.upscaled_width, in DecodeTiles()
1213 frame_header.loop_restoration, settings_.post_filter_mask, num_planes); in DecodeTiles()
/external/libgav1/libgav1/src/dsp/
Dlibgav1_dsp.cmake58 "${libgav1_source}/dsp/loop_restoration.cc"
59 "${libgav1_source}/dsp/loop_restoration.h"
/external/libgav1/
DAndroid.bp105 "libgav1/src/dsp/loop_restoration.cc",
147 "libgav1/src/post_filter/loop_restoration.cc",
/external/libgav1/libgav1/src/utils/
Dtypes.h455 LoopRestoration loop_restoration; member
/external/libgav1/libgav1/src/post_filter/
Dpost_filter.cc147 loop_restoration_(frame_header.loop_restoration), in PostFilter()