HomeSort by relevance Sort by last modified time
    Searched refs:fourcc (Results 101 - 125 of 162) sorted by null

1 2 3 45 6 7

  /external/libyuv/files/source/
convert_to_i420.cc 43 uint32 fourcc) {
44 uint32 format = CanonicalFourCC(fourcc);
245 r = -1; // unknown fourcc - return failure code.
  /external/webrtc/talk/media/base/
videoframe.cc 243 bool VideoFrame::Validate(uint32_t fourcc,
256 uint32_t format = CanonicalFourCC(fourcc);
capturemanager.cc 376 LOG(LS_WARNING) << " " << GetFourccName(format.fourcc)
  /hardware/interfaces/camera/device/3.4/default/
ExternalCameraUtils.cpp 34 uint32_t w, uint32_t h, uint32_t fourcc,
36 mWidth(w), mHeight(h), mFourcc(fourcc),
ExternalCameraDeviceSession.cpp 244 streamingFmt.fourcc & 0xFF,
245 (streamingFmt.fourcc >> 8) & 0xFF,
246 (streamingFmt.fourcc >> 16) & 0xFF,
247 (streamingFmt.fourcc >> 24) & 0xFF,
    [all...]
  /external/libvncserver/libvncclient/
h264.c 88 static const char *string_of_FOURCC(uint32_t fourcc)
94 str[buf][0] = fourcc;
95 str[buf][1] = fourcc >> 8;
96 str[buf][2] = fourcc >> 16;
97 str[buf][3] = fourcc >> 24;
104 return string_of_FOURCC(imgfmt->fourcc);
  /external/mesa3d/src/mesa/drivers/dri/i915/
intel_screen.c 543 int width, int height, int fourcc,
556 if (intel_image_formats[i].fourcc == fourcc) {
584 int width, int height, int fourcc,
597 if (intel_image_formats[i].fourcc == fourcc) {
    [all...]
  /external/webp/src/mux/
muxedit.c 178 WebPMuxError WebPMuxSetChunk(WebPMux* mux, const char fourcc[4],
182 if (mux == NULL || fourcc == NULL || chunk_data == NULL ||
186 tag = ChunkGetTagFromFourCC(fourcc);
188 // Delete existing chunk(s) with the same 'fourcc'.
377 WebPMuxError WebPMuxDeleteChunk(WebPMux* mux, const char fourcc[4]) {
378 if (mux == NULL || fourcc == NULL) return WEBP_MUX_INVALID_ARGUMENT;
379 return MuxDeleteAllNamedData(mux, ChunkGetTagFromFourCC(fourcc));
  /external/mesa3d/src/gallium/state_trackers/dri/
dri2.c 885 int width, int height, int fourcc,
896 switch (fourcc) {
914 format = convert_fourcc(fourcc, dri_components);
934 if (fourcc == __DRI_IMAGE_FOURCC_YVU420) {
939 fourcc = __DRI_IMAGE_FOURCC_YUV420;
    [all...]
  /hardware/intel/common/libva/test/encode/
h264encode.c 623 static char *fourcc_to_string(int fourcc)
625 switch (fourcc) {
641 int fourcc; local
644 fourcc = VA_FOURCC_NV12;
646 fourcc = VA_FOURCC_IYUV;
648 fourcc = VA_FOURCC_YV12;
650 fourcc = VA_FOURCC_UYVY;
652 printf("Unknow FOURCC\n");
653 fourcc = -1;
655 return fourcc;
    [all...]
  /hardware/intel/img/psb_video/src/
psb_overlay.c 933 int __maybe_unused fourcc, int __maybe_unused flags,
    [all...]
  /external/autotest/client/site_tests/camera_V4L2/src/
media_v4l2_device.cc 951 uint32_t V4L2Device::MapFourCC(const char* fourcc) {
952 return v4l2_fourcc(fourcc[0], fourcc[1], fourcc[2], fourcc[3]);
  /external/mesa3d/include/GL/internal/
dri_interface.h     [all...]
  /external/libvpx/libvpx/third_party/libyuv/source/
convert_to_i420.cc 37 uint32 fourcc) {
38 uint32 format = CanonicalFourCC(fourcc);
315 r = -1; // unknown fourcc - return failure code.
  /external/strace/tests/
ioctl_v4l2.c 41 # define fourcc(a0, a1, a2, a3) \ macro
51 # define fourcc(a0, a1, a2, a3) \ macro
872 p_frmsizeenum->pixel_format = fourcc(cc[0], cc[1], cc[2], cc[3]);
    [all...]
  /external/strace/tests-m32/
ioctl_v4l2.c 41 # define fourcc(a0, a1, a2, a3) \ macro
51 # define fourcc(a0, a1, a2, a3) \ macro
872 p_frmsizeenum->pixel_format = fourcc(cc[0], cc[1], cc[2], cc[3]);
    [all...]
  /external/strace/tests-mx32/
ioctl_v4l2.c 41 # define fourcc(a0, a1, a2, a3) \ macro
51 # define fourcc(a0, a1, a2, a3) \ macro
872 p_frmsizeenum->pixel_format = fourcc(cc[0], cc[1], cc[2], cc[3]);
    [all...]
  /external/libvpx/libvpx/examples/
twopass_encoder.c 155 VpxVideoInfo info = { encoder->fourcc,
vp8_multi_resolution_encoder.c 38 #define fourcc 0x30385056 macro
135 mem_put_le32(header + 8, fourcc); /* headersize */
  /external/mesa3d/src/egl/main/
eglapi.h 189 _EGLImage *img, EGLint *fourcc,
  /external/mesa3d/src/gallium/state_trackers/va/
subpicture.c 37 .fourcc = VA_FOURCC_BGRA,
  /hardware/intel/common/libva/va/
va_backend.h 374 unsigned int *fourcc, /* out for follow argument */
  /external/libxcam/xcore/
drm_display.cpp 368 uint32_t fourcc = video_info.format; local
403 ret = (XCamReturn) drmModeAddFB2(_fd, video_info.width, video_info.height, fourcc, bo_handles,
  /external/webrtc/talk/app/webrtc/objc/
avfoundationvideocapturer.mm 414 frame.fourcc = static_cast<uint32_t>(cricket::FOURCC_NV12);
  /external/webrtc/talk/media/webrtc/
webrtcvideoframe.cc 79 return Reset(frame->fourcc, frame->width, frame->height, dw, dh,

Completed in 1271 milliseconds

1 2 3 45 6 7