HomeSort by relevance Sort by last modified time
    Searched refs:pixel_format (Results 1 - 25 of 116) sorted by null

1 2 3 4 5

  /external/chromium_org/media/video/capture/
video_capture_types.cc 12 : frame_rate(0.0f), pixel_format(PIXEL_FORMAT_UNKNOWN) {}
16 VideoPixelFormat pixel_format)
19 pixel_format(pixel_format) {}
28 (pixel_format >= PIXEL_FORMAT_UNKNOWN) &&
29 (pixel_format < PIXEL_FORMAT_MAX);
video_capture_types.h 47 VideoPixelFormat pixel_format);
55 VideoPixelFormat pixel_format; member in class:media::VideoCaptureFormat
video_capture_device_unittest.cc 166 const VideoPixelFormat& pixel_format) {
182 if (formats_iterator->pixel_format == pixel_format) {
188 DVLOG(1) << "No camera can capture the format: " << pixel_format;
234 capture_params.requested_format.pixel_format = PIXEL_FORMAT_I420;
260 capture_params.requested_format.pixel_format = PIXEL_FORMAT_I420;
287 capture_params.requested_format.pixel_format = PIXEL_FORMAT_I420;
311 capture_params.requested_format.pixel_format = PIXEL_FORMAT_I420;
341 capture_params.requested_format.pixel_format = PIXEL_FORMAT_I420;
351 capture_params.requested_format.pixel_format = PIXEL_FORMAT_I420
    [all...]
fake_video_capture_device_unittest.cc 136 capture_params.requested_format.pixel_format = PIXEL_FORMAT_I420;
159 EXPECT_EQ(supported_formats[0].pixel_format, media::PIXEL_FORMAT_I420);
163 EXPECT_EQ(supported_formats[1].pixel_format, media::PIXEL_FORMAT_I420);
167 EXPECT_EQ(supported_formats[2].pixel_format, media::PIXEL_FORMAT_I420);
178 capture_params.requested_format.pixel_format = PIXEL_FORMAT_I420;
fake_video_capture_device.cc 75 DCHECK_EQ(params.requested_format.pixel_format, PIXEL_FORMAT_I420);
76 capture_format_.pixel_format = params.requested_format.pixel_format;
181 DCHECK_EQ(capture_format_.pixel_format, PIXEL_FORMAT_I420);
  /external/chromium_org/media/video/capture/linux/
video_capture_device_factory_linux.cc 128 v4l2_fmtdesc pixel_format = {}; local
129 pixel_format.type = V4L2_BUF_TYPE_VIDEO_CAPTURE;
130 while (HANDLE_EINTR(ioctl(fd.get(), VIDIOC_ENUM_FMT, &pixel_format)) == 0) {
132 supported_format.pixel_format =
134 (int32)pixel_format.pixelformat);
135 if (supported_format.pixel_format == PIXEL_FORMAT_UNKNOWN) {
136 ++pixel_format.index;
141 frame_size.pixel_format = pixel_format.pixelformat;
155 frame_interval.pixel_format = pixel_format.pixelformat
    [all...]
  /external/qemu/android/camera/
camera-format-converters.h 48 * pixel_format - Defines pixel format for the converting framebuffer.
62 uint32_t pixel_format,
camera-capture.h 45 * pixel_format - Defines pixel format for the captured frames. Must be one of
49 * 'pixel_format' parameter.
54 uint32_t pixel_format,
camera-capture-windows.c 81 uint32_t pixel_format; member in struct:WndCameraDevice
231 wcd->pixel_format = V4L2_PIX_FMT_BGR32;
233 wcd->pixel_format = V4L2_PIX_FMT_RGB565;
235 wcd->pixel_format = V4L2_PIX_FMT_BGR24;
238 wcd->pixel_format = wcd->frame_bitmap->bmiHeader.biCompression;
289 uint32_t pixel_format,
490 wcd->pixel_format = V4L2_PIX_FMT_RGB565;
492 wcd->pixel_format = V4L2_PIX_FMT_BGR24;
494 wcd->pixel_format = V4L2_PIX_FMT_BGR32;
504 (const char*)&wcd->pixel_format, wcd->frame_bitmap->bmiHeader.biWidth
    [all...]
camera-service.c 191 snprintf(tmp, sizeof(tmp), "pix=%d ", ci->pixel_format);
306 (const char*)(&csd->camera_info[csd->camera_count].pixel_format));
604 uint32_t pixel_format; member in struct:CameraClient
855 if (cc->pixel_format != pix_format ||cc->width != width ||
864 __FUNCTION__, cc->device_name, (const char*)&cc->pixel_format,
877 cc->pixel_format = pix_format;
885 switch (cc->pixel_format) {
895 __FUNCTION__, (char*)&cc->pixel_format);
903 if (!has_converter(cc->camera_info->pixel_format, cc->pixel_format) ||
    [all...]
camera-common.h 100 uint32_t pixel_format; member in struct:ClientFrameBuffer
130 uint32_t pixel_format; member in struct:CameraInfo
camera-capture-mac.m 285 const uint32_t pixel_format =
297 res = convert_frame(pixels, pixel_format, frame_size,
423 uint32_t pixel_format,
545 cis[0].pixel_format = _QTtoFOURCC(qt_pix_format);
546 if (cis[0].pixel_format == 0) {
  /external/chromium_org/content/common/media/
media_param_traits.cc 67 m->WriteInt(static_cast<int>(p.pixel_format));
73 int frame_size_width, frame_size_height, pixel_format; local
77 !m->ReadInt(iter, &pixel_format))
81 r->pixel_format = static_cast<VideoPixelFormat>(pixel_format);
  /external/chromium_org/media/video/capture/android/
video_capture_device_factory_android.cc 102 VideoPixelFormat pixel_format = media::PIXEL_FORMAT_UNKNOWN; local
106 pixel_format = media::PIXEL_FORMAT_YV12;
109 pixel_format = media::PIXEL_FORMAT_NV21;
121 pixel_format); local
126 << capture_format.pixel_format;
  /external/qemu/distrib/sdl-1.2.15/src/video/wincommon/
SDL_wingl_c.h 36 int pixel_format; member in struct:SDL_PrivateGLData
62 #define pixel_format (this->gl_data->pixel_format) macro
SDL_wingl.c 305 pixel_format = ChoosePixelFormatARB(this, iAttribs, fAttribs);
307 if ( ( !pixel_format ) && ( this->gl_config.accelerated < 0 ) ) {
309 pixel_format = ChoosePixelFormatARB(this, iAttribs, fAttribs);
312 if ( !pixel_format ) {
313 pixel_format = ChoosePixelFormat(GL_hdc, &GL_pfd);
315 if ( !pixel_format ) {
319 if ( !SetPixelFormat(GL_hdc, pixel_format, &GL_pfd) ) {
333 DescribePixelFormat(GL_hdc, pixel_format, sizeof(GL_pfd), &GL_pfd);
486 this->gl_data->wglGetPixelFormatAttribivARB(GL_hdc, pixel_format, 0, 1, &wgl_attrib, value);
496 this->gl_data->wglGetPixelFormatAttribivARB(GL_hdc, pixel_format, 0, 1, &wgl_attrib, value)
    [all...]
  /external/chromium_org/media/video/capture/win/
sink_input_pin_win.cc 113 resulting_format_.pixel_format = PIXEL_FORMAT_I420;
118 resulting_format_.pixel_format = PIXEL_FORMAT_YUY2;
123 resulting_format_.pixel_format = PIXEL_FORMAT_RGB24;
143 resulting_format_.pixel_format = PIXEL_FORMAT_UNKNOWN;
capability_list_win.cc 36 return item1.capability->supported_format.pixel_format <
37 item2.capability->supported_format.pixel_format;
  /external/chromium_org/third_party/libva/va/
va_tpi.h 54 unsigned int pixel_format; /* buffer format */ member in struct:_VASurfaceAttributeTPI
  /hardware/intel/common/libva/va/
va_tpi.h 56 unsigned int pixel_format; /* buffer format */ member in struct:_VASurfaceAttributeTPI
  /external/chromium_org/content/browser/media/capture/
desktop_capture_device_unittest.cc 185 capture_params.requested_format.pixel_format = media::PIXEL_FORMAT_I420;
195 EXPECT_EQ(media::PIXEL_FORMAT_ARGB, format.pixel_format);
223 capture_params.requested_format.pixel_format = media::PIXEL_FORMAT_I420;
240 EXPECT_EQ(media::PIXEL_FORMAT_ARGB, format.pixel_format);
266 capture_params.requested_format.pixel_format = media::PIXEL_FORMAT_I420;
285 EXPECT_EQ(media::PIXEL_FORMAT_ARGB, format.pixel_format);
  /device/generic/goldfish/camera/
QemuClient.h 382 * pixel_format - Pixel format that is used by the client to push video
388 status_t queryStart(uint32_t pixel_format, int width, int height);
  /external/chromium_org/content/renderer/media/
video_capture_message_filter_unittest.cc 104 EXPECT_EQ(shm_format.pixel_format, saved_format.pixel_format);
130 EXPECT_EQ(mailbox_format.pixel_format, saved_format.pixel_format);
  /external/chromium_org/third_party/mesa/src/src/mesa/drivers/x11/
xmesaP.h 58 enum pixel_format { enum
85 enum pixel_format dithered_pf; /* Pixel format when dithering */
86 enum pixel_format undithered_pf;/* Pixel format when not dithering */
117 enum pixel_format pixelformat;
  /external/mesa3d/src/mesa/drivers/x11/
xmesaP.h 58 enum pixel_format { enum
85 enum pixel_format dithered_pf; /* Pixel format when dithering */
86 enum pixel_format undithered_pf;/* Pixel format when not dithering */
117 enum pixel_format pixelformat;

Completed in 3395 milliseconds

1 2 3 4 5