OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:frames_to_blur_forward
(Results
1 - 2
of
2
) sorted by null
/external/libvpx/libvpx/vp9/encoder/
vp9_temporal_filter.c
367
int
frames_to_blur_forward
= 0;
local
396
frames_to_blur_forward
= num_frames_forward;
398
if (
frames_to_blur_forward
>= max_frames)
399
frames_to_blur_forward
= max_frames - 1;
401
frames_to_blur =
frames_to_blur_forward
+ 1;
407
frames_to_blur_forward
= num_frames_forward;
410
if (
frames_to_blur_forward
> frames_to_blur_backward)
411
frames_to_blur_forward
= frames_to_blur_backward;
413
if (frames_to_blur_backward >
frames_to_blur_forward
)
414
frames_to_blur_backward =
frames_to_blur_forward
;
[
all
...]
/external/libvpx/libvpx/vp8/encoder/
temporal_filter.c
439
int
frames_to_blur_forward
= 0;
local
469
frames_to_blur_forward
= num_frames_forward;
471
if (
frames_to_blur_forward
>= max_frames)
472
frames_to_blur_forward
= max_frames - 1;
474
frames_to_blur =
frames_to_blur_forward
+ 1;
480
frames_to_blur_forward
= num_frames_forward;
483
if (
frames_to_blur_forward
> frames_to_blur_backward)
484
frames_to_blur_forward
= frames_to_blur_backward;
486
if (frames_to_blur_backward >
frames_to_blur_forward
)
487
frames_to_blur_backward =
frames_to_blur_forward
;
[
all
...]
Completed in 73 milliseconds