Searched refs:pix (Results 1 - 25 of 81) sorted by relevance

1234

/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/minidlna/ffmpeg-0.5.1/libavcodec/
H A Dh264pred.h80 void (*pred4x4_add [2])(uint8_t *pix/*align 4*/, const DCTELEM *block/*align 16*/, int stride);
81 void (*pred8x8l_add [2])(uint8_t *pix/*align 8*/, const DCTELEM *block/*align 16*/, int stride);
82 void (*pred8x8_add [3])(uint8_t *pix/*align 8*/, const int *block_offset, const DCTELEM *block/*align 16*/, int stride);
83 void (*pred16x16_add[3])(uint8_t *pix/*align 16*/, const int *block_offset, const DCTELEM *block/*align 16*/, int stride);
H A Dmsrledec.c199 uint8_t pix[3]; //original pixel local
201 case 8: pix[0] = *src++;
206 case 24: pix[0] = *src++;
207 pix[1] = *src++;
208 pix[2] = *src++;
218 case 8: *output++ = pix[0];
223 case 24: *output++ = pix[0];
224 *output++ = pix[1];
225 *output++ = pix[2];
H A Dqdrw.c92 int size, left, code, pix; local
106 pix = *buf++;
109 memset(out, pix, 257 - code);
H A Dh264pred.c990 static void pred4x4_vertical_add_c(uint8_t *pix, const DCTELEM *block, int stride){ argument
992 pix -= stride;
994 uint8_t v = pix[0];
995 pix[1*stride]= v += block[0];
996 pix[2*stride]= v += block[4];
997 pix[3*stride]= v += block[8];
998 pix[4*stride]= v += block[12];
999 pix++;
1004 static void pred4x4_horizontal_add_c(uint8_t *pix, const DCTELEM *block, int stride){ argument
1007 uint8_t v = pix[
1017 pred8x8l_vertical_add_c(uint8_t *pix, const DCTELEM *block, int stride) argument
1035 pred8x8l_horizontal_add_c(uint8_t *pix, const DCTELEM *block, int stride) argument
1052 pred16x16_vertical_add_c(uint8_t *pix, const int *block_offset, const DCTELEM *block, int stride) argument
1058 pred16x16_horizontal_add_c(uint8_t *pix, const int *block_offset, const DCTELEM *block, int stride) argument
1064 pred8x8_vertical_add_c(uint8_t *pix, const int *block_offset, const DCTELEM *block, int stride) argument
1070 pred8x8_horizontal_add_c(uint8_t *pix, const int *block_offset, const DCTELEM *block, int stride) argument
[all...]
H A Dinterplayvideo.c481 unsigned char pix; local
513 pix = P[(flags >> shifter) & 0x03];
514 *(s->pixel_ptr + x) = pix;
515 *(s->pixel_ptr + x + 1) = pix;
516 *(s->pixel_ptr + s->stride + x) = pix;
517 *(s->pixel_ptr + s->stride + x + 1) = pix;
534 pix = P[(flags >> shifter) & 0x03];
535 *(s->pixel_ptr + x) = pix;
536 *(s->pixel_ptr + x + 1) = pix;
553 pix
684 unsigned char pix; local
737 unsigned char pix; local
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/minidlna/minidlna/
H A Dimage_utils.h12 typedef u_int32_t pix; typedef
17 pix *buf;
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/minidlna/minidlna.03.14/
H A Dimage_utils.h31 typedef uint32_t pix; typedef
36 pix *buf;
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/minidlna/minidlna.07.26/
H A Dimage_utils.h12 typedef u_int32_t pix; typedef
17 pix *buf;
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/drivers/media/video/pwc/
H A Dpwc-v4l.c216 memset(&f->fmt.pix, 0, sizeof(struct v4l2_pix_format));
217 f->fmt.pix.width = pdev->view.x;
218 f->fmt.pix.height = pdev->view.y;
219 f->fmt.pix.field = V4L2_FIELD_NONE;
221 f->fmt.pix.pixelformat = V4L2_PIX_FMT_YUV420;
222 f->fmt.pix.bytesperline = (f->fmt.pix.width * 3)/2;
223 f->fmt.pix.sizeimage = f->fmt.pix.height * f->fmt.pix
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/drivers/media/video/
H A Dzr364xx.c549 if (f->fmt.pix.pixelformat != V4L2_PIX_FMT_JPEG)
551 if (f->fmt.pix.field != V4L2_FIELD_ANY &&
552 f->fmt.pix.field != V4L2_FIELD_NONE)
554 f->fmt.pix.field = V4L2_FIELD_NONE;
555 f->fmt.pix.width = cam->width;
556 f->fmt.pix.height = cam->height;
557 f->fmt.pix.bytesperline = f->fmt.pix.width * 2;
558 f->fmt.pix.sizeimage = f->fmt.pix
[all...]
H A Dvivi.c950 f->fmt.pix.width = fh->width;
951 f->fmt.pix.height = fh->height;
952 f->fmt.pix.field = fh->vb_vidq.field;
953 f->fmt.pix.pixelformat = fh->fmt->fourcc;
954 f->fmt.pix.bytesperline =
955 (f->fmt.pix.width * fh->fmt->depth) >> 3;
956 f->fmt.pix.sizeimage =
957 f->fmt.pix.height * f->fmt.pix.bytesperline;
969 if (format.fourcc != f->fmt.pix
[all...]
H A Dv4l1-compat.c262 fmt2.fmt.pix.width = 10000;
263 fmt2.fmt.pix.height = 10000;
264 fmt2.fmt.pix.pixelformat = desc2.pixelformat;
268 *maxw = fmt2.fmt.pix.width;
269 *maxh = fmt2.fmt.pix.height;
456 win->width = fmt2->fmt.pix.width;
457 win->height = fmt2->fmt.pix.height;
475 fmt2->fmt.pix.width = win->width;
476 fmt2->fmt.pix.height = win->height;
477 fmt2->fmt.pix
[all...]
H A Dmeye.c1395 if (f->fmt.pix.pixelformat != V4L2_PIX_FMT_YUYV &&
1396 f->fmt.pix.pixelformat != V4L2_PIX_FMT_MJPEG)
1398 if (f->fmt.pix.field != V4L2_FIELD_ANY &&
1399 f->fmt.pix.field != V4L2_FIELD_NONE)
1401 f->fmt.pix.field = V4L2_FIELD_NONE;
1402 if (f->fmt.pix.width <= 320) {
1403 f->fmt.pix.width = 320;
1404 f->fmt.pix.height = 240;
1406 f->fmt.pix.width = 640;
1407 f->fmt.pix
[all...]
H A Dov7670.c676 struct v4l2_pix_format *pix = &fmt->fmt.pix; local
679 if (ov7670_formats[index].pixelformat == pix->pixelformat)
688 if (pix->field == V4L2_FIELD_ANY)
689 pix->field = V4L2_FIELD_NONE;
690 else if (pix->field != V4L2_FIELD_NONE)
698 if (pix->width >= wsize->width && pix->height >= wsize->height)
707 pix->width = wsize->width;
708 pix
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/drivers/media/video/sn9c102/
H A Dsn9c102_tas5110d.c58 const struct v4l2_pix_format* pix)
62 if (pix->pixelformat == V4L2_PIX_FMT_SN9C10X)
57 tas5110d_set_pix_format(struct sn9c102_device* cam, const struct v4l2_pix_format* pix) argument
H A Dsn9c102_tas5110c1b.c78 const struct v4l2_pix_format* pix)
82 if (pix->pixelformat == V4L2_PIX_FMT_SN9C10X)
77 tas5110c1b_set_pix_format(struct sn9c102_device* cam, const struct v4l2_pix_format* pix) argument
H A Dsn9c102_tas5130d1b.c79 const struct v4l2_pix_format* pix)
83 if (pix->pixelformat == V4L2_PIX_FMT_SN9C10X)
78 tas5130d1b_set_pix_format(struct sn9c102_device* cam, const struct v4l2_pix_format* pix) argument
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/drivers/media/video/ivtv/
H A Divtv-ioctl.c365 fmt->fmt.pix.width = itv->main_rect.width;
366 fmt->fmt.pix.height = itv->main_rect.height;
367 fmt->fmt.pix.colorspace = V4L2_COLORSPACE_SMPTE170M;
368 fmt->fmt.pix.field = V4L2_FIELD_INTERLACED;
372 fmt->fmt.pix.field = (itv->yuv_info.lace_mode & IVTV_YUV_SYNC_MASK) ?
376 fmt->fmt.pix.field = V4L2_FIELD_NONE;
379 fmt->fmt.pix.field = V4L2_FIELD_ANY;
382 fmt->fmt.pix.pixelformat = V4L2_PIX_FMT_HM12;
384 fmt->fmt.pix.sizeimage =
385 fmt->fmt.pix
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/drivers/media/video/cpia2/
H A Dcpia2_v4l.c828 if (f->fmt.pix.pixelformat != V4L2_PIX_FMT_MJPEG &&
829 f->fmt.pix.pixelformat != V4L2_PIX_FMT_JPEG)
832 f->fmt.pix.field = V4L2_FIELD_NONE;
833 f->fmt.pix.bytesperline = 0;
834 f->fmt.pix.sizeimage = cam->frame_size;
835 f->fmt.pix.colorspace = V4L2_COLORSPACE_JPEG;
836 f->fmt.pix.priv = 0;
838 switch (cpia2_match_video_size(f->fmt.pix.width, f->fmt.pix.height)) {
840 f->fmt.pix
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/drivers/media/video/saa7134/
H A Dsaa6752hs.c61 { .fmt = { .pix = { .width = 720, .height = 576 }}},
63 { .fmt = { .pix = { .width = 480, .height = 576 }}},
65 { .fmt = { .pix = { .width = 352, .height = 576 }}},
67 { .fmt = { .pix = { .width = 352, .height = 288 }}},
69 { .fmt = { .pix = { .width = 0, .height = 0}}},
326 dist_352 = abs(f->fmt.pix.width - 352);
327 dist_480 = abs(f->fmt.pix.width - 480);
328 dist_720 = abs(f->fmt.pix.width - 720);
330 f->fmt.pix.width = 720;
331 f->fmt.pix
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/powerpc/platforms/pseries/
H A Dlpar.c518 unsigned long i, pix, rc; local
532 pix = 0;
547 param[pix] = HBR_REQUEST | HBR_AVPN | slot;
548 param[pix+1] = hpte_encode_v(va, psize) &
550 pix += 2;
551 if (pix == 8) {
557 pix = 0;
562 if (pix) {
563 param[pix] = HBR_END;
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/drivers/media/video/cx88/
H A Dcx88-blackbird.c772 f->fmt.pix.pixelformat = V4L2_PIX_FMT_MPEG;
773 f->fmt.pix.bytesperline = 0;
774 f->fmt.pix.sizeimage = dev->ts_packet_size * dev->ts_packet_count; /* 188 * 4 * 1024; */
775 f->fmt.pix.colorspace = 0;
776 f->fmt.pix.width = dev->width;
777 f->fmt.pix.height = dev->height;
778 f->fmt.pix.field = fh->mpegq.field;
791 f->fmt.pix.pixelformat = V4L2_PIX_FMT_MPEG;
792 f->fmt.pix.bytesperline = 0;
793 f->fmt.pix
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/minidlna/ffmpeg-0.5.1/libavdevice/
H A Dv4l2.c183 fmt.fmt.pix.width = *width;
184 fmt.fmt.pix.height = *height;
185 fmt.fmt.pix.pixelformat = pix_fmt;
186 fmt.fmt.pix.field = V4L2_FIELD_INTERLACED;
188 if ((*width != fmt.fmt.pix.width) || (*height != fmt.fmt.pix.height)) {
189 av_log(ctx, AV_LOG_INFO, "The V4L2 driver changed the video from %dx%d to %dx%d\n", *width, *height, fmt.fmt.pix.width, fmt.fmt.pix.height);
190 *width = fmt.fmt.pix.width;
191 *height = fmt.fmt.pix
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/drivers/media/common/
H A Dsaa7146_video.c107 f->fmt.pix = fh->video_fmt;
196 fmt = format_by_fourcc(dev,f->fmt.pix.pixelformat);
201 field = f->fmt.pix.field;
206 field = (f->fmt.pix.height > maxh/2)
230 f->fmt.pix.field = field;
231 if (f->fmt.pix.width > maxw)
232 f->fmt.pix.width = maxw;
233 if (f->fmt.pix.height > maxh)
234 f->fmt.pix.height = maxh;
236 calc_bpl = (f->fmt.pix
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/drivers/media/video/pvrusb2/
H A Dpvrusb2-i2c-cmd-v4l2.c214 fmt.fmt.pix.width = hdw->res_hor_val;
215 fmt.fmt.pix.height = hdw->res_ver_val;
218 fmt.fmt.pix.width,fmt.fmt.pix.height);

Completed in 139 milliseconds

1234