Lines Matching refs:h_count

93         if (s->h_count[0] == 2 && s->v_count[0] == 2 &&  in jpeg_judge_yuv_mode()
94 s->h_count[1] == 1 && s->v_count[1] == 1 && in jpeg_judge_yuv_mode()
95 s->h_count[2] == 1 && s->v_count[2] == 1) { in jpeg_judge_yuv_mode()
99 } else if (s->h_count[0] == 2 && s->v_count[0] == 1 && in jpeg_judge_yuv_mode()
100 s->h_count[1] == 1 && s->v_count[1] == 1 && in jpeg_judge_yuv_mode()
101 s->h_count[2] == 1 && s->v_count[2] == 1) { in jpeg_judge_yuv_mode()
110 } else if (s->h_count[0] == 1 && s->v_count[0] == 2 && in jpeg_judge_yuv_mode()
111 s->h_count[1] == 1 && s->v_count[1] == 1 && in jpeg_judge_yuv_mode()
112 s->h_count[2] == 1 && s->v_count[2] == 1) { in jpeg_judge_yuv_mode()
121 } else if (s->h_count[0] == 1 && s->v_count[0] == 1 && in jpeg_judge_yuv_mode()
122 s->h_count[1] == 1 && s->v_count[1] == 1 && in jpeg_judge_yuv_mode()
123 s->h_count[2] == 1 && s->v_count[2] == 1) { in jpeg_judge_yuv_mode()
136 } else if (s->h_count[0] == 4 && s->v_count[0] == 1 && in jpeg_judge_yuv_mode()
137 s->h_count[1] == 1 && s->v_count[1] == 1 && in jpeg_judge_yuv_mode()
138 s->h_count[2] == 1 && s->v_count[2] == 1) { in jpeg_judge_yuv_mode()
149 s->h_count[0], s->v_count[0], in jpeg_judge_yuv_mode()
150 s->h_count[1], s->v_count[1], in jpeg_judge_yuv_mode()
151 s->h_count[2], s->v_count[2]); in jpeg_judge_yuv_mode()
155 if (s->h_count[0] == s->v_count[0] && s->h_count[0] != 0) { in jpeg_judge_yuv_mode()
167 mpp_err_f("unsupported format(%d*%d)\n", s->h_count[0], in jpeg_judge_yuv_mode()
443 syntax->h_count[i] = value; /* Horizontal sampling factor */ in jpegd_decode_sof()
448 if (!syntax->h_count[i] || !syntax->v_count[i]) { in jpegd_decode_sof()
450 i, syntax->h_count[i], syntax->v_count[i]); in jpegd_decode_sof()
455 if (syntax->h_count[i] > syntax->h_max) in jpegd_decode_sof()
456 syntax->h_max = syntax->h_count[i]; in jpegd_decode_sof()
470 i, syntax->h_count[i], syntax->v_count[i], in jpegd_decode_sof()