Home
last modified time | relevance | path

Searched refs:show_idx (Results 1 – 9 of 9) sorted by relevance

/external/libvpx/libvpx/vp9/encoder/
Dvp9_firstpass.h167 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()
Dvp9_lookahead.h28 int show_idx; /*The show_idx of this frame*/ member
Dvp9_firstpass.c1810 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 …]
Dvp9_lookahead.c196 buf->show_idx = ctx->next_show_idx; in vp9_lookahead_push()
Dvp9_encoder.h854 int show_idx; member
Dvp9_encoder.c7099 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/
Dsimple_encode_test.cc69 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/
Dsimple_encode.h29 int show_idx; member
Dsimple_encode.cc97 encode_frame_result->show_idx = encode_frame_info->show_idx; in update_encode_frame_result()