Searched refs:seg_data (Results 1 – 5 of 5) sorted by relevance
48 SEG_LVL_FEATURES feature_id, int seg_data) { in vp9_set_segdata() argument49 assert(seg_data <= seg_feature_data_max[feature_id]); in vp9_set_segdata()50 if (seg_data < 0) { in vp9_set_segdata()52 assert(-seg_data <= seg_feature_data_max[feature_id]); in vp9_set_segdata()55 seg->feature_data[segment_id][feature_id] = seg_data; in vp9_set_segdata()
68 SEG_LVL_FEATURES feature_id, int seg_data);
80 SEG_LVL_FEATURES feature_id, int seg_data) { in av1_set_segdata() argument81 if (seg_data < 0) { in av1_set_segdata()83 assert(-seg_data <= seg_feature_data_max[feature_id]); in av1_set_segdata()85 assert(seg_data <= seg_feature_data_max[feature_id]); in av1_set_segdata()88 seg->feature_data[segment_id][feature_id] = seg_data; in av1_set_segdata()
93 SEG_LVL_FEATURES feature_id, int seg_data);
635 static int check_seg_range(int seg_data[8], int range) { in check_seg_range()636 return !(abs(seg_data[0]) > range || abs(seg_data[1]) > range || in check_seg_range()637 abs(seg_data[2]) > range || abs(seg_data[3]) > range || in check_seg_range()638 abs(seg_data[4]) > range || abs(seg_data[5]) > range || in check_seg_range()639 abs(seg_data[6]) > range || abs(seg_data[7]) > range); in check_seg_range()