Searched refs:video (Results 1 - 25 of 366) sorted by relevance

1234567891011>>

/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/usb/gadget/
H A Duvc_video.c30 uvc_video_encode_header(struct uvc_video *video, struct uvc_buffer *buf, argument
34 data[1] = UVC_STREAM_EOH | video->fid;
36 if (buf->buf.bytesused - video->queue.buf_used <= len - 2)
43 uvc_video_encode_data(struct uvc_video *video, struct uvc_buffer *buf, argument
46 struct uvc_video_queue *queue = &video->queue;
50 /* Copy video data to the USB buffer. */
61 uvc_video_encode_bulk(struct usb_request *req, struct uvc_video *video, argument
65 int len = video->req_size;
69 if (video->payload_size == 0) {
70 ret = uvc_video_encode_header(video, bu
101 uvc_video_encode_isoc(struct usb_request *req, struct uvc_video *video, struct uvc_buffer *buf) argument
164 struct uvc_video *video = req->context; local
209 uvc_video_free_requests(struct uvc_video *video) argument
231 uvc_video_alloc_requests(struct uvc_video *video) argument
275 uvc_video_pump(struct uvc_video *video) argument
329 uvc_video_enable(struct uvc_video *video, int enable) argument
368 uvc_video_init(struct uvc_video *video) argument
[all...]
H A Duvc_v4l2.c69 uvc_v4l2_get_format(struct uvc_video *video, struct v4l2_format *fmt) argument
71 fmt->fmt.pix.pixelformat = video->fcc;
72 fmt->fmt.pix.width = video->width;
73 fmt->fmt.pix.height = video->height;
75 fmt->fmt.pix.bytesperline = video->bpp * video->width / 8;
76 fmt->fmt.pix.sizeimage = video->imagesize;
84 uvc_v4l2_set_format(struct uvc_video *video, struct v4l2_format *fmt) argument
106 video->fcc = format->fcc;
107 video
164 struct uvc_video *video = handle->device; local
189 struct uvc_video *video = &uvc->video; local
[all...]
H A Df_uvc.h18 #include <linux/usb/video.h>
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/ieee1394/
H A Ddv1394.c7 * video1394.c - video driver for OHCI 1394 boards
155 static struct frame* frame_new(unsigned int frame_num, struct video_card *video) argument
161 f->video = video;
164 f->header_pool = pci_alloc_consistent(f->video->ohci->dev, PAGE_SIZE, &f->header_pool_dma);
178 f->descriptor_pool = pci_alloc_consistent(f->video->ohci->dev,
182 pci_free_consistent(f->video->ohci->dev, PAGE_SIZE, f->header_pool, f->header_pool_dma);
198 pci_free_consistent(f->video->ohci->dev, PAGE_SIZE, f->header_pool, f->header_pool_dma);
199 pci_free_consistent(f->video->ohci->dev, f->descriptor_pool_size, f->descriptor_pool, f->descriptor_pool_dma);
209 Frame_prepare() must be called OUTSIDE the video
214 frame_prepare(struct video_card *video, unsigned int this_frame) argument
732 start_dma_receive(struct video_card *video) argument
798 receive_packets(struct video_card *video) argument
852 do_dv1394_init(struct video_card *video, struct dv1394_init *init) argument
1045 do_dv1394_init_default(struct video_card *video) argument
1061 stop_dma(struct video_card *video) argument
1120 do_dv1394_shutdown(struct video_card *video, int free_dv_buf) argument
1223 struct video_card *video = file_to_video_card(file); local
1252 struct video_card *video = file_to_video_card(file); local
1279 struct video_card *video = file_to_video_card(file); local
1286 struct video_card *video = file_to_video_card(file); local
1383 struct video_card *video = file_to_video_card(file); local
1493 struct video_card *video = file_to_video_card(file); local
1737 struct video_card *video = NULL; local
1786 struct video_card *video = file_to_video_card(file); local
1803 struct video_card *video = (struct video_card*) data; local
1948 struct video_card *video = (struct video_card*) data; local
2145 struct video_card *video; local
2213 struct video_card *video, *tmp_video; local
2271 struct video_card *video = NULL, *tmp_vid; local
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/media/video/usbvision/
H A DMakefile1 usbvision-objs := usbvision-core.o usbvision-video.o usbvision-i2c.o usbvision-cards.o
5 EXTRA_CFLAGS += -Idrivers/media/video
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/media/
H A DMakefile5 obj-y += common/ IR/ video/
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/media/video/hdpvr/
H A DMakefile1 hdpvr-objs := hdpvr-control.o hdpvr-core.o hdpvr-video.o
7 EXTRA_CFLAGS += -Idrivers/media/video
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/staging/cx25821/
H A DMakefile2 cx25821-gpio.o cx25821-medusa-video.o \
3 cx25821-video.o cx25821-video-upstream.o \
4 cx25821-video-upstream-ch2.o \
10 EXTRA_CFLAGS += -Idrivers/media/video
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/ffmpeg-2.3.4/libavfilter/
H A Dbuffer.c65 ret->video = av_malloc(sizeof(AVFilterBufferRefVideoProps));
66 if (!ret->video) {
70 copy_video_props(ret->video, ref->video);
107 if (ref->video)
108 av_freep(&ref->video->qp_table);
109 av_freep(&ref->video);
134 dst->video->w = src->width;
135 dst->video->h = src->height;
136 dst->video
[all...]
H A Davcodec.c104 av_assert0(src->video);
105 dst->width = src->video->w;
106 dst->height = src->video->h;
107 dst->sample_aspect_ratio = src->video->sample_aspect_ratio;
108 dst->interlaced_frame = src->video->interlaced;
109 dst->top_field_first = src->video->top_field_first;
110 dst->key_frame = src->video->key_frame;
111 dst->pict_type = src->video->pict_type;
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/media/video/cx18/
H A Dcx18-video.c2 * cx18 video interface functions
23 #include "cx18-video.h"
30 v4l2_subdev_call(cx->sd_av, video, s_routing,
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/sh/include/mach-migor/mach/
H A Dmigor.h10 #include <video/sh_mobile_lcdc.h>
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/media/video/tlg2300/
H A DMakefile1 poseidon-objs := pd-video.o pd-alsa.o pd-dvb.o pd-radio.o pd-main.o
5 EXTRA_CFLAGS += -Idrivers/media/video
H A Dpd-video.c150 strcpy(cap->driver, "tele-video");
161 static void init_copy(struct video_data *video, bool index) argument
163 struct front_face *front = video->front;
165 video->field_count = index;
166 video->lines_copied = 0;
167 video->prev_left = 0 ;
168 video->dst = (char *)videobuf_to_vmalloc(front->curr_frame)
169 + index * video->lines_size;
170 video->vbi->copied = 0; /* set it here */
194 /* check if the video'
195 get_video_frame(struct front_face *front, struct video_data *video) argument
225 end_field(struct video_data *video) argument
234 copy_video_data(struct video_data *video, char *src, unsigned int count) argument
267 check_trailer(struct video_data *video, char *src, int count) argument
317 copy_vbi_video_data(struct video_data *video, char *src, unsigned int count) argument
340 struct video_data *video = &front->pd->video_data; local
426 struct video_data *video = &front->pd->video_data; local
463 prepare_iso_urb(struct video_data *video) argument
555 prepare_bulk_urb(struct video_data *video) argument
568 free_all_urb(struct video_data *video) argument
622 fire_all_urb(struct video_data *video) argument
638 struct video_data *video = &pd->video_data; local
665 struct video_data *video = &pd->video_data; local
738 struct video_data *video = &pd->video_data; local
839 struct video_data *video = &pd->video_data; local
1194 usb_transfer_stop(struct video_data *video) argument
1215 struct video_data *video = &pd->video_data; local
1247 struct video_data *video; local
1356 struct video_data *video = &pd->video_data; local
1632 struct video_data *video = &pd->video_data; local
1642 struct video_data *video = &pd->video_data; local
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/ffmpeg-2.3.4/libavformat/
H A Dxmv.c54 /** A video packet with an XMV file. */
56 int stream_index; ///< The decoder stream index for this video packet.
58 uint32_t data_size; ///< The size of the remaining video data.
59 uint64_t data_offset; ///< The offset of the video data within the file.
61 uint32_t current_frame; ///< The current frame within this video packet.
62 uint32_t frame_count; ///< The amount of frames within this video packet.
64 int has_extradata; ///< Does the video packet contain extra data?
67 int64_t last_pts; ///< PTS of the last video frame.
68 int64_t pts; ///< PTS of the most current video frame.
108 XMVVideoPacket video; ///< Th member in struct:XMVDemuxContext
478 XMVVideoPacket *video = &xmv->video; local
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/iserver/libav-0.8.8/libavformat/
H A Dxmv.c60 /* The decoder stream index for this video packet. */
69 /* Does the video packet contain extra data? */
108 XMVVideoPacket video; member in struct:XMVDemuxContext
179 xmv->video.stream_index = vst->index;
312 /* Packet video header */
317 xmv->video.data_size = AV_RL32(data) & 0x007FFFFF;
319 xmv->video.current_frame = 0;
320 xmv->video.frame_count = (AV_RL32(data) >> 23) & 0xFF;
322 xmv->video.has_extradata = (data[3] & 0x80) != 0;
324 /* Adding the audio data sizes and the video dat
484 XMVVideoPacket *video = &xmv->video; local
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/iserver/libav-0.8.8/libavfilter/
H A Dvf_showinfo.c22 * filter for showing textual video frame information
50 size_t linesize = av_image_get_linesize(picref->format, picref->video->w, plane);
68 picref->video->pixel_aspect.num, picref->video->pixel_aspect.den,
69 picref->video->w, picref->video->h,
70 !picref->video->interlaced ? 'P' : /* Progressive */
71 picref->video->top_field_first ? 'T' : 'B', /* Top / Bottom */
72 picref->video->key_frame,
73 av_get_picture_type_char(picref->video
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/staging/tm6000/
H A DMakefile4 tm6000-video.o \
12 EXTRA_CFLAGS = -Idrivers/media/video
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/acpi/
H A Dvideo.c2 * video.c - ACPI Video Driver ($Revision:$)
48 #include <acpi/video.h>
52 #define ACPI_VIDEO_CLASS "video"
70 ACPI_MODULE_NAME("video");
80 * By default, we don't allow duplicate ACPI video bus devices
98 .name = "video",
109 u8 multihead:1; /* can switch video heads */
110 u8 rom:1; /* can retrieve a video rom */
205 struct acpi_video_bus *video; member in struct:acpi_video_device
323 static void acpi_video_device_rebind(struct acpi_video_bus *video);
404 struct acpi_video_device *video = acpi_driver_data(device); local
414 struct acpi_video_device *video = acpi_driver_data(device); local
433 struct acpi_video_device *video = acpi_driver_data(device); local
707 acpi_video_bus_DOS(struct acpi_video_bus *video, int bios_flag, int lcd_flag) argument
1031 acpi_video_bus_find_cap(struct acpi_video_bus *video) argument
1060 acpi_video_bus_check(struct acpi_video_bus *video) argument
1409 struct acpi_video_bus *video = seq->private; local
1434 struct acpi_video_bus *video = seq->private; local
1453 acpi_video_bus_POST_options(struct acpi_video_bus *video, unsigned long long *options) argument
1467 struct acpi_video_bus *video = seq->private; local
1504 acpi_video_bus_get_POST(struct acpi_video_bus *video, unsigned long long *id) argument
1515 struct acpi_video_bus *video = seq->private; local
1536 struct acpi_video_bus *video = seq->private; local
1556 acpi_video_bus_set_POST(struct acpi_video_bus *video, unsigned long option) argument
1581 struct acpi_video_bus *video = m->private; local
1621 struct acpi_video_bus *video = m->private; local
1647 struct acpi_video_bus *video = acpi_driver_data(device); local
1749 acpi_video_get_device_attr(struct acpi_video_bus *video, unsigned long device_id) argument
1764 acpi_video_get_device_type(struct acpi_video_bus *video, unsigned long device_id) argument
1780 acpi_video_bus_get_one_device(struct acpi_device *device, struct acpi_video_bus *video) argument
1890 acpi_video_device_rebind(struct acpi_video_bus *video) argument
1916 acpi_video_device_bind(struct acpi_video_bus *video, struct acpi_video_device *device) argument
1942 acpi_video_device_enumerate(struct acpi_video_bus *video) argument
2084 struct acpi_video_bus *video; local
2147 acpi_video_bus_get_devices(struct acpi_video_bus *video, struct acpi_device *device) argument
2201 acpi_video_bus_put_devices(struct acpi_video_bus *video) argument
2230 acpi_video_bus_start_devices(struct acpi_video_bus *video) argument
2235 acpi_video_bus_stop_devices(struct acpi_video_bus *video) argument
2242 struct acpi_video_bus *video = acpi_driver_data(device); local
2364 struct acpi_video_bus *video; local
2413 struct acpi_video_bus *video; local
2525 struct acpi_video_bus *video = NULL; local
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/media/video/cx25840/
H A DMakefile6 EXTRA_CFLAGS += -Idrivers/media/video
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/media/video/gspca/gl860/
H A DMakefile9 EXTRA_CFLAGS += -Idrivers/media/video/gspca
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/media/video/gspca/m5602/
H A DMakefile11 EXTRA_CFLAGS += -Idrivers/media/video/gspca
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/media/video/gspca/stv06xx/
H A DMakefile9 EXTRA_CFLAGS += -Idrivers/media/video/gspca
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/video/matrox/
H A Dmatroxfb_crtc2.h22 } video; member in struct:matroxfb_dh_fb_info
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/media/video/saa7134/
H A DMakefile4 saa7134-video.o saa7134-input.o
12 EXTRA_CFLAGS += -Idrivers/media/video

Completed in 367 milliseconds

1234567891011>>