Searched refs:show_idx (Results 1 – 9 of 9) sorted by relevance
/external/libvpx/libvpx/vp9/encoder/ |
D | vp9_firstpass.h | 167 const FIRST_PASS_INFO *first_pass_info, int show_idx) { in fps_get_frame_stats() argument 168 if (show_idx < 0 || show_idx >= first_pass_info->num_frames) { in fps_get_frame_stats() 171 return &first_pass_info->stats[show_idx]; in fps_get_frame_stats()
|
D | vp9_lookahead.h | 28 int show_idx; /*The show_idx of this frame*/ member
|
D | vp9_firstpass.c | 1810 int show_idx, int still_interval) { in check_transition_to_still() argument 1813 if (show_idx + still_interval > num_frames) { in check_transition_to_still() 1820 fps_get_frame_stats(first_pass_info, show_idx + j); in check_transition_to_still() 2798 int show_idx = gf_start_show_idx + j; in define_gf_group() local 2800 fps_get_frame_stats(first_pass_info, show_idx); in define_gf_group() 2979 int show_idx) { in test_candidate_kf() argument 2981 fps_get_frame_stats(first_pass_info, show_idx - 1); in test_candidate_kf() 2983 fps_get_frame_stats(first_pass_info, show_idx); in test_candidate_kf() 2985 fps_get_frame_stats(first_pass_info, show_idx + 1); in test_candidate_kf() 3014 fps_get_frame_stats(first_pass_info, show_idx + 1 + i); in test_candidate_kf() [all …]
|
D | vp9_lookahead.c | 196 buf->show_idx = ctx->next_show_idx; in vp9_lookahead_push()
|
D | vp9_encoder.h | 854 int show_idx; member
|
D | vp9_encoder.c | 7099 encode_frame_result->show_idx = -1; // Actual encoding doesn't happen. 7104 int show_idx, argument 7121 encode_frame_result->show_idx = show_idx; 7418 encode_frame_result, source->show_idx,
|
/external/libvpx/libvpx/test/ |
D | simple_encode_test.cc | 69 EXPECT_EQ(encode_frame_result.show_idx, 0); in TEST() 76 EXPECT_GE(encode_frame_result.show_idx, 0); in TEST() 77 EXPECT_LT(encode_frame_result.show_idx, num_frames); in TEST() 79 EXPECT_EQ(encode_frame_result.show_idx, num_frames - 1) in TEST()
|
/external/libvpx/libvpx/vp9/ |
D | simple_encode.h | 29 int show_idx; member
|
D | simple_encode.cc | 97 encode_frame_result->show_idx = encode_frame_info->show_idx; in update_encode_frame_result()
|