HomeSort by relevance Sort by last modified time
    Searched full:fourcc (Results 1 - 25 of 302) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/libvpx/libvpx/third_party/libyuv/include/libyuv/
video_common.h 11 // Common definitions for video, including fourcc and VideoFormat.
24 // Definition of FourCC codes
27 // Convert four characters to a FourCC code.
31 #define FOURCC(a, b, c, d) ( \
35 #define FOURCC(a, b, c, d) ( \
40 // Some pages discussing FourCC codes:
41 // http://www.fourcc.org/yuv.php
47 // FourCC codes grouped according to implementation efficiency.
51 enum FourCC {
53 FOURCC_I420 = FOURCC('I', '4', '2', '0')
    [all...]
  /external/libyuv/files/include/libyuv/
video_common.h 11 // Common definitions for video, including fourcc and VideoFormat.
24 // Definition of FourCC codes
27 // Convert four characters to a FourCC code.
31 #define FOURCC(a, b, c, d) \
35 #define FOURCC(a, b, c, d) \
40 // Some pages discussing FourCC codes:
41 // http://www.fourcc.org/yuv.php
47 // FourCC codes grouped according to implementation efficiency.
51 enum FourCC {
53 FOURCC_I420 = FOURCC('I', '4', '2', '0')
    [all...]
  /external/libyuv/files/docs/
formats.md 3 Formats (FOURCC) supported by libyuv are detailed here.
35 # FOURCC (Four Charactacter Code) List
39 enum FourCC {
41 FOURCC_I420 = FOURCC('I', '4', '2', '0'),
42 FOURCC_I422 = FOURCC('I', '4', '2', '2'),
43 FOURCC_I444 = FOURCC('I', '4', '4', '4'),
44 FOURCC_I400 = FOURCC('I', '4', '0', '0'),
45 FOURCC_NV21 = FOURCC('N', 'V', '2', '1'),
46 FOURCC_NV12 = FOURCC('N', 'V', '1', '2'),
47 FOURCC_YUY2 = FOURCC('Y', 'U', 'Y', '2')
    [all...]
  /external/webrtc/talk/media/base/
videocommon.h 28 // Common definition for video, including fourcc and VideoFormat.
53 // Definition of FourCC codes
55 // Convert four characters to a FourCC code.
58 #define FOURCC(a, b, c, d) \
61 // Some pages discussing FourCC codes:
62 // http://www.fourcc.org/yuv.php
68 // FourCC codes grouped according to implementation efficiency.
72 enum FourCC {
74 FOURCC_I420 = FOURCC('I', '4', '2', '0'),
75 FOURCC_I422 = FOURCC('I', '4', '2', '2')
189 uint32_t fourcc; \/\/ Color space. FOURCC_ANY means that any color space is OK. member in struct:cricket::VideoFormatPod
    [all...]
fakevideocapturer.h 85 GetCaptureFormat()->fourcc);
87 bool CaptureCustomFrame(int width, int height, uint32_t fourcc) {
89 return CaptureCustomFrame(width, height, 33333333, fourcc);
94 uint32_t fourcc) {
98 // Currently, |fourcc| is always I420 or ARGB.
99 // TODO(fbarchard): Extend SizeOf to take fourcc.
101 if (fourcc == cricket::FOURCC_ARGB) {
103 } else if (fourcc == cricket::FOURCC_I420) {
106 return false; // Unsupported FOURCC.
115 frame.fourcc = fourcc
    [all...]
  /hardware/libhardware/modules/camera/3_4/arc/
image_processor.h 11 // FourCC pixel formats (defined as V4L2_PIX_FMT_*).
25 // format. |fourcc| is defined as V4L2_PIX_FMT_* in linux/videodev2.h.
27 static size_t GetConvertedSize(int fourcc, uint32_t width, uint32_t height);
32 // Convert format from |in_frame.fourcc| to |out_frame->fourcc|. Caller should
42 // |fourcc| of |out_frame|.
common_types.h 43 uint32_t fourcc; member in struct:arc::SupportedFormat
46 // fourcc are 640x480 YUYV. If frameRates are 15.0 and 30.0, the camera
cached_frame.h 46 // format. |fourcc| is defined as V4L2_PIX_FMT_* in linux/videodev2.h. Return
48 size_t GetConvertedSize(int fourcc) const;
54 // (swapping U/V planes). Caller should fill |fourcc|, |data|, and
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
aviriff.h 21 FOURCC fcc;
26 FOURCC fcc;
28 FOURCC fccListType;
94 FOURCC fcc;
110 FOURCC fcc;
117 FOURCC fcc;
119 FOURCC fccType;
120 FOURCC fccHandler;
141 FOURCC fcc;
170 FOURCC fcc
    [all...]
  /external/libvpx/libvpx/
ivfenc.c 17 unsigned int fourcc, int frame_cnt) {
26 mem_put_le32(header + 8, fourcc); // fourcc
ivfenc.h 23 uint32_t fourcc, int frame_cnt);
  /external/libvpx/libvpx/third_party/libyuv/source/
video_common.cc 50 uint32 CanonicalFourCC(uint32 fourcc) {
53 if (kFourCCAliases[i].alias == fourcc) {
58 return fourcc;
  /external/libyuv/files/source/
video_common.cc 49 uint32 CanonicalFourCC(uint32 fourcc) {
52 if (kFourCCAliases[i].alias == fourcc) {
57 return fourcc;
  /frameworks/av/media/libstagefright/foundation/include/media/stagefright/foundation/
ByteUtils.h 25 constexpr int FOURCC(unsigned char c1, unsigned char c2, unsigned char c3, unsigned char c4) {
30 constexpr int32_t FOURCC(const char (&s) [N]) {
31 static_assert(N == 5, "fourcc: wrong length");
  /frameworks/av/media/libstagefright/foundation/
ALooperRoster.cpp 103 static void makeFourCC(uint32_t fourcc, char *s, size_t bufsz) {
104 s[0] = (fourcc >> 24) & 0xff;
106 s[1] = (fourcc >> 16) & 0xff;
107 s[2] = (fourcc >> 8) & 0xff;
108 s[3] = fourcc & 0xff;
111 snprintf(s, bufsz, "%u", fourcc);
148 char fourcc[15]; local
149 makeFourCC(handler->mMessages.keyAt(j), fourcc, sizeof(fourcc));
151 fourcc,
    [all...]
  /frameworks/av/media/extractors/mp4/
MPEG4Extractor.cpp 302 static const char *FourCC2MIME(uint32_t fourcc) {
303 switch (fourcc) {
304 case FOURCC('m', 'p', '4', 'a'):
307 case FOURCC('s', 'a', 'm', 'r'):
310 case FOURCC('s', 'a', 'w', 'b'):
313 case FOURCC('m', 'p', '4', 'v'):
316 case FOURCC('s', '2', '6', '3'):
317 case FOURCC('h', '2', '6', '3'):
318 case FOURCC('H', '2', '6', '3'):
321 case FOURCC('a', 'v', 'c', '1')
    [all...]
  /external/libyuv/files/unit_test/
video_common_test.cc 19 // Tests FourCC codes in video common, which are used for ConvertToI420().
29 static bool TestValidFourCC(uint32 fourcc, int bpp) {
30 if (!TestValidChar(fourcc & 0xff) || !TestValidChar((fourcc >> 8) & 0xff) ||
31 !TestValidChar((fourcc >> 16) & 0xff) ||
32 !TestValidChar((fourcc >> 24) & 0xff)) {
  /hardware/intel/img/psb_video/src/
psb_surface_attrib.c 55 int width, int height, int fourcc,
65 if ((fourcc == VA_FOURCC_NV12) || (fourcc == VA_FOURCC_YV16) || (fourcc == VA_FOURCC_IYUV) || (fourcc == VA_FOURCC_RGBA)) {
93 if (VA_FOURCC_NV12 == fourcc) {
97 else if (VA_FOURCC_YV16 == fourcc) {
101 else if (VA_FOURCC_IYUV == fourcc) {
105 else if (VA_FOURCC_RGBA == fourcc) {
264 unsigned int fourcc, /* expected fourcc *
557 unsigned long fourcc; local
649 unsigned long fourcc; local
    [all...]
psb_surface_attrib.h 39 int width, int height, int fourcc, VASurfaceAttributeTPI *graphic_buffers,
50 unsigned int fourcc, /* expected fourcc */
64 unsigned int fourcc, /* expected fourcc */
  /external/autotest/client/site_tests/camera_V4L2/src/
common_types.h 49 : width(w), height(h), fourcc(fmt) {
54 uint32_t fourcc; member in struct:SupportedFormat
57 // fourcc are 640x480 YUYV. If frameRates are 15.0 and 30.0, the camera
  /hardware/libhardware/modules/camera/3_4/
stream_format.cpp 58 v4l2_pixel_format_(format.fourcc),
152 uint32_t fourcc, uint32_t width,
157 if (format.fourcc == fourcc && format.width == width &&
167 // here that the conversion between YU12 and |fourcc| is supported.
168 if (!arc::ImageProcessor::SupportsConversion(V4L2_PIX_FMT_YUV420, fourcc)) {
169 HAL_LOGE("Conversion between YU12 and 0x%x not supported.", fourcc);
208 if (supported_format.fourcc != supported_fourcc) {
213 // preferred fourcc.
  /hardware/intel/common/libva/test/videoprocess/
videoprocess.cpp 186 uint32_t fourCC, uint32_t format)
193 surface_attrib.value.value.i = fourCC;
274 if (surface_image.format.fourcc == VA_FOURCC_YV12 ||
275 surface_image.format.fourcc == VA_FOURCC_I420 ||
276 surface_image.format.fourcc == VA_FOURCC_NV12){
290 if(surface_image.format.fourcc == VA_FOURCC_YV12){
293 }else if(surface_image.format.fourcc == VA_FOURCC_I420){
309 if (surface_image.format.fourcc == VA_FOURCC_YV12||
310 surface_image.format.fourcc == VA_FOURCC_I420){
319 if (surface_image.format.fourcc == VA_FOURCC_YV12)
    [all...]
  /hardware/intel/common/libva/test/
loadsurface.h 45 unsigned int fourcc, int fixed_alpha)
92 if (fourcc == VA_FOURCC_YUY2)
107 switch (fourcc) {
150 unsigned int fourcc, int box_width, int row_shift,
158 if (fourcc == VA_FOURCC_YUY2) y_factor = 2;
179 if (fourcc == VA_FOURCC_YUY2) {
196 switch (fourcc) {
208 printf("unsupported fourcc in loadsurface.h\n");
225 fourcc, alpha);
246 switch (surface_image.format.fourcc) {
    [all...]
  /external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/authoring/adaptivestreaming/
AudioQuality.java 20 String fourCC;
VideoQuality.java 20 String fourCC;

Completed in 749 milliseconds

1 2 3 4 5 6 7 8 91011>>