OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:filt_low
(Results
1 - 2
of
2
) sorted by null
/external/libvpx/libvpx/vp9/encoder/
vp9_picklpf.c
110
int
filt_low
= 0;
local
152
filt_low
= ((filt_mid - filter_step) < min_filter_level)
156
if ((filt_direction <= 0) && (
filt_low
!= filt_mid)) {
158
vp9_set_alt_lf_level(cpi,
filt_low
);
159
vp9_loop_filter_frame(cm, &cpi->mb.e_mbd,
filt_low
, 1, partial);
173
filt_best =
filt_low
;
/external/libvpx/libvpx/vp8/encoder/
picklpf.c
279
int
filt_low
= 0;
local
335
filt_low
= ((filt_mid - filter_step) < min_filter_level) ? min_filter_level : (filt_mid - filter_step);
337
if ((filt_direction <= 0) && (
filt_low
!= filt_mid))
339
if(ss_err[
filt_low
] == 0)
343
vp8cx_set_alt_lf_level(cpi,
filt_low
);
344
vp8_loop_filter_frame_yonly(cm, &cpi->mb.e_mbd,
filt_low
);
347
ss_err[
filt_low
] = filt_err;
350
filt_err = ss_err[
filt_low
];
361
filt_best =
filt_low
;
Completed in 37 milliseconds