Lines Matching refs:frame_idx
1196 int ascending, int frame_idx) in sort_one() argument
1202 if (frame_idx) { in sort_one()
1203 key = ref[(left + right) / 2].frame_idx; in sort_one()
1204 partition(ref, frame_idx, key, ascending); in sort_one()
1212 sort_one(ref, left, j, ascending, frame_idx); in sort_one()
1215 sort_one(ref, i, right, ascending, frame_idx); in sort_one()
1218 …c void sort_two(VAPictureH264 ref[], int left, int right, unsigned int key, unsigned int frame_idx, in sort_two() argument
1224 if (frame_idx) { in sort_two()
1225 partition(ref, frame_idx, key, partition_ascending); in sort_two()
1231 sort_one(ref, left, i-1, list0_ascending, frame_idx); in sort_two()
1232 sort_one(ref, j+1, right, list1_ascending, frame_idx); in sort_two()
1402 pic_param.CurrPic.frame_idx = current_frame_num; in render_picture()