OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:filt_high
(Results
1 - 2
of
2
) sorted by null
/external/libvpx/libvpx/vp9/encoder/
vp9_picklpf.c
124
int
filt_high
= 0;
local
166
filt_high
= ((filt_mid + filter_step) > max_filter_level) ? max_filter_level : (filt_mid + filter_step);
189
// Now look at
filt_high
190
if ((filt_direction >= 0) && (
filt_high
!= filt_mid)) {
191
vp9_set_alt_lf_level(cpi,
filt_high
);
192
vp9_loop_filter_frame(cm, &cpi->mb.e_mbd,
filt_high
, 1, partial);
202
filt_best =
filt_high
;
/external/libvpx/libvpx/vp8/encoder/
picklpf.c
276
int
filt_high
= 0;
local
334
filt_high
= ((filt_mid + filter_step) > max_filter_level) ? max_filter_level : (filt_mid + filter_step);
365
/* Now look at
filt_high
*/
366
if ((filt_direction >= 0) && (
filt_high
!= filt_mid))
368
if(ss_err[
filt_high
] == 0)
371
vp8cx_set_alt_lf_level(cpi,
filt_high
);
372
vp8_loop_filter_frame_yonly(cm, &cpi->mb.e_mbd,
filt_high
);
375
ss_err[
filt_high
] = filt_err;
378
filt_err = ss_err[
filt_high
];
384
filt_best =
filt_high
;
[
all
...]
Completed in 65 milliseconds