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

1 2 3

  /external/chromium_org/third_party/libyuv/source/
row_x86.asm 26 %ifidn %1,YUY2
36 %ifidn %1,YUY2
37 pand m0, m0, m2 ; YUY2 even bytes are Y
56 YUY2TOYROW YUY2,a,
57 YUY2TOYROW YUY2,u,_Unaligned
61 YUY2TOYROW YUY2,a,
62 YUY2TOYROW YUY2,u,_Unaligned
66 YUY2TOYROW YUY2,a,
  /frameworks/base/graphics/java/android/graphics/
YuvImage.java 25 * Currently only ImageFormat.NV21 and ImageFormat.YUY2 are supported.
81 format != ImageFormat.YUY2) {
84 "and ImageFormat.YUY2 for now");
110 * Only ImageFormat.NV21 and ImageFormat.YUY2
191 if (mFormat == ImageFormat.YUY2) {
206 if (format == ImageFormat.YUY2) {
227 if (mFormat == ImageFormat.YUY2) {
PixelFormat.java 71 * @deprecated use {@link android.graphics.ImageFormat#YUY2
72 * ImageFormat.YUY2} instead.
ImageFormat.java 163 * YCbCr format used for images, which uses YUYV (YUY2) encoding format.
172 public static final int YUY2 = 0x14;
372 case YUY2:
408 case YUY2:
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
dciddi.h 149 #ifndef YUY2
150 #define YUY2 mmioFOURCC('Y','U','Y','2')
  /cts/tests/tests/graphics/src/android/graphics/cts/
YuvImageTest.java 55 private int[] mFormats = { ImageFormat.NV21, ImageFormat.YUY2 };
114 } else if (mFormats[i] == ImageFormat.YUY2) {
193 YuvImage image = generateYuvImage(ImageFormat.YUY2, mTestBitmaps[0], 0);
215 YuvImage image = generateYuvImage(ImageFormat.YUY2, mTestBitmaps[0], 0);
216 assertEquals(ImageFormat.YUY2, image.getYuvFormat());
246 } else if (format == ImageFormat.YUY2) {
322 } else if (format == ImageFormat.YUY2) {
  /external/chromium_org/third_party/libyuv/include/libyuv/
convert_argb.h 114 // Convert YUY2 to ARGB.
209 // "format" is a fourcc. ie 'I420', 'YUY2'
video_common.h 99 FOURCC_YUYV = FOURCC('Y', 'U', 'Y', 'V'), // Alias for YUY2.
100 FOURCC_YUVS = FOURCC('y', 'u', 'v', 's'), // Alias for YUY2 on Mac.
convert_from_argb.h 151 // Convert ARGB To YUY2.
convert.h 92 // Convert YUY2 to I420.
236 // "format" is a fourcc. ie 'I420', 'YUY2'
planar_functions.h 71 // Convert YUY2 to I422.
318 // Convert I422 to YUY2.
  /external/libyuv/files/include/libyuv/
video_common.h 82 FOURCC_YUYV = FOURCC('Y', 'U', 'Y', 'V'), // Alias for YUY2.
83 FOURCC_YUVS = FOURCC('y', 'u', 'v', 's'), // Alias for YUY2 on Mac.
convert.h 102 // Convert YUY2 to I420.
232 // "format" is a fourcc. ie 'I420', 'YUY2'
convert_argb.h 111 // Convert YUY2 to ARGB.
212 // "format" is a fourcc. ie 'I420', 'YUY2'
planar_functions.h 39 // Convert YUY2 to I422.
247 // Convert I422 to YUY2.
  /pdk/apps/TestingCamera/src/com/android/testingcamera/
callback.rs 40 YUY2 = 20,
71 case YUY2:
CallbackProcessor.java 86 case ImageFormat.YUY2:
  /external/qemu/distrib/sdl-1.2.15/test/
testoverlay2.c 271 fprintf(stderr, " -format <fmt> (one of the: YV12, IYUV, YUY2, UYVY, YVYU)\n");
337 else if(!strcmp(argv[2],"YUY2"))
353 fprintf(stderr, "The -format option requires an argument, default is YUY2.\n");
489 overlay->format==SDL_YUY2_OVERLAY?"YUY2":
testoverlay.c 310 fprintf(stderr, " -format <fmt> (one of the: YV12, IYUV, YUY2, UYVY, YVYU)\n");
406 else if(!strcmp(argv[2],"YUY2"))
541 overlay->format==SDL_YUY2_OVERLAY?"YUY2":
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/camera/formats/
CameraFormatsActivity.java 154 mPreviewFormatNames.append(ImageFormat.YUY2, "YUY2");
473 case ImageFormat.YUY2:
533 case ImageFormat.YUY2:
632 case ImageFormat.YUY2:
778 // YUY2 is an interleaved 4:2:2 format: YU,YV,YU,YV
  /external/chromium_org/third_party/libjingle/source/talk/media/base/
videocapturer.cc 411 // YUY2 can be scaled vertically using an ARGB scaler. Aspect ratio is only
412 // a problem on OSX. OSX always converts webcams to YUY2 or UYVY.
455 // Use ARGBScaler to vertically scale the YUY2 image, adjusting for 16 bpp.
457 captured_frame->width * kYuy2Bpp, // Stride for YUY2.
461 scaled_width * kYuy2Bpp, // Stride for YUY2.
videoframe_unittest.h 533 // Test constructing an image from a YUY2 buffer.
539 uint8* yuy2 = ALIGNP(buf.get(), kAlignment); local
543 yuy2, kWidth * 2,
545 EXPECT_TRUE(LoadFrame(yuy2, buf_size, cricket::FOURCC_YUY2,
550 // Test constructing an image from a YUY2 buffer with buffer unaligned.
556 uint8* yuy2 = ALIGNP(buf.get(), kAlignment) + 1; local
560 yuy2, kWidth * 2,
562 EXPECT_TRUE(LoadFrame(yuy2, buf_size, cricket::FOURCC_YUY2,
567 // Test constructing an image from a wide YUY2 buffer.
    [all...]
videocommon.h 118 FOURCC_YUYV = FOURCC('Y', 'U', 'Y', 'V'), // Alias for YUY2.
119 FOURCC_YUVS = FOURCC('y', 'u', 'v', 's'), // Alias for YUY2 on Mac.
  /external/chromium_org/third_party/libyuv/unit_test/
convert_test.cc     [all...]
  /hardware/libhardware/modules/camera/
Stream.cpp 135 return "YUY2";

Completed in 1290 milliseconds

1 2 3