Home
last modified time | relevance | path

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

/external/libgav1/libgav1/src/
Dpost_filter.h205 static bool DoRestoration(const LoopRestoration& loop_restoration, in DoRestoration() argument
208 return loop_restoration.type[kPlaneY] != kLoopRestorationTypeNone && in DoRestoration()
211 return (loop_restoration.type[kPlaneY] != kLoopRestorationTypeNone || in DoRestoration()
212 loop_restoration.type[kPlaneU] != kLoopRestorationTypeNone || in DoRestoration()
213 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.cc1126 LoopRestoration* const loop_restoration = &frame_header_.loop_restoration; in ParseLoopRestorationParameters() local
1132 loop_restoration->type[i] = static_cast<LoopRestorationType>(scratch); in ParseLoopRestorationParameters()
1133 if (loop_restoration->type[i] != kLoopRestorationTypeNone) { in ParseLoopRestorationParameters()
1152 loop_restoration->unit_size[kPlaneY] = in ParseLoopRestorationParameters()
1161 loop_restoration->unit_size[kPlaneU] = in ParseLoopRestorationParameters()
1162 loop_restoration->unit_size[kPlaneV] = in ParseLoopRestorationParameters()
1163 loop_restoration->unit_size[0] >> uv_shift; in ParseLoopRestorationParameters()
Dlibgav1_decoder.cmake45 "${libgav1_source}/post_filter/loop_restoration.cc"
Ddecoder_impl.cc1183 &frame_header.loop_restoration, frame_header.upscaled_width, in DecodeTiles()
1197 frame_header.loop_restoration, settings_.post_filter_mask, num_planes); in DecodeTiles()
/external/libgav1/
DAndroid.bp77 "libgav1/src/dsp/loop_restoration.cc",
111 "libgav1/src/post_filter/loop_restoration.cc",
/external/libgav1/libgav1/src/dsp/
Dlibgav1_dsp.cmake49 "${libgav1_source}/dsp/loop_restoration.cc"
50 "${libgav1_source}/dsp/loop_restoration.h"
/external/libgav1/libgav1/src/utils/
Dtypes.h454 LoopRestoration loop_restoration; member
/external/libgav1/libgav1/src/post_filter/
Dpost_filter.cc148 loop_restoration_(frame_header.loop_restoration), in PostFilter()