Lines Matching defs:h_v
248 static int v4l2_jpeg_decode_subsampling(u8 nf, u8 h_v)
254 if (nf == 4 && h_v != 0x11)
257 switch (h_v) {
328 int c, h_v, tq;
334 h_v = jpeg_get_byte(stream);
335 if (h_v < 0)
336 return h_v;
340 subs = v4l2_jpeg_decode_subsampling(nf, h_v);
344 } else if (h_v != 0x11) {
356 (h_v >> 4) & 0xf;
357 component->vertical_sampling_factor = h_v & 0xf;