/external/v4l2_codec2/common/ |
D | Fourcc.cpp | 31 case NV21: in fromUint32() 66 case VideoPixelFormat::NV21: in fromVideoPixelFormat() 67 return Fourcc(NV21); in fromVideoPixelFormat() 99 case VideoPixelFormat::NV21: in fromVideoPixelFormat() 156 case NV21: in toVideoPixelFormat() 158 return VideoPixelFormat::NV21; in toVideoPixelFormat() 204 case NV21: in toSinglePlanar() 213 return Fourcc(NV21); in toSinglePlanar() 236 case NV21: in isMultiPlanar() 270 static_assert(Fourcc::NV21 == V4L2_PIX_FMT_NV21, "Mismatch Fourcc");
|
D | VideoPixelFormat.cpp | 41 case VideoPixelFormat::NV21: in videoPixelFormatToString() 110 case VideoPixelFormat::NV21: in bitDepth() 158 case VideoPixelFormat::NV21: in RequiresEvenSizeAllocation() 198 case VideoPixelFormat::NV21: in numPlanes() 294 case VideoPixelFormat::NV21: { in bytesPerElement() 346 case VideoPixelFormat::NV21: in SampleSize()
|
D | FormatConverter.cpp | 213 inputFormat = (srcV > srcU) ? VideoPixelFormat::NV12 : VideoPixelFormat::NV21; in convertBlock() 238 case convertMap(VideoPixelFormat::NV21, VideoPixelFormat::I420): in convertBlock() 243 case convertMap(VideoPixelFormat::NV21, VideoPixelFormat::NV12): in convertBlock()
|
/external/robolectric-shadows/robolectric/src/test/java/org/robolectric/shadows/ |
D | ShadowCameraParametersTest.java | 71 assertThat(parameters.getPreviewFormat()).isEqualTo(ImageFormat.NV21); in testPreviewFormat() 81 assertThat(supportedFormats).contains(ImageFormat.NV21); in testGetSupportedPreviewFormats() 89 assertThat(supportedFormats).contains(ImageFormat.NV21); in testGetSupportedPictureFormats()
|
D | ShadowCameraTest.java | 76 assertThat(parameters.getPreviewFormat()).isEqualTo(ImageFormat.NV21); in testSetParameters()
|
/external/webrtc/sdk/android/api/org/webrtc/ |
D | CameraEnumerationAndroid.java | 90 public final int imageFormat = ImageFormat.NV21; 114 if (imageFormat != ImageFormat.NV21) { in frameSize()
|
/external/libyuv/files/docs/ |
D | formats.md | 100 planes for UV: I420, I422, I444, I400, NV21, NV12, I400 102 I420, NV12 and NV21 are half width, half height 155 # NV12 and NV21 159 NV21 is the same but with weaved V and U values.
|
D | rotation.md | 3 … allow rotation of any format. Optimized functionality is supported for I420, ARGB, NV12 and NV21.
|
/external/robolectric-shadows/shadows/framework/src/main/java/org/robolectric/shadows/ |
D | ShadowCamera.java | 255 private int previewFormat = ImageFormat.NV21; 324 formats.add(ImageFormat.NV21); in getSupportedPictureFormats() 332 formats.add(ImageFormat.NV21); in getSupportedPreviewFormats()
|
/external/v4l2_codec2/common/include/v4l2_codec2/common/ |
D | VideoPixelFormat.h | 25 NV21, // 12bpp with Y plane followed by a 2x2 interleaved VU plane. enumerator
|
D | Fourcc.h | 86 NV21 = composeFourcc('N', 'V', '2', '1'), enumerator
|
/external/libkmsxx/kms++/inc/kms++/ |
D | pixelformats.h | 18 NV21 = MakeFourCC("NV21"), enumerator
|
/external/libkmsxx/kms++util/src/ |
D | drawing.cpp | 300 case PixelFormat::NV21: in draw_yuv420_semiplanar_macropixel() 365 case PixelFormat::NV21: in draw_yuv420_macropixel() 430 case PixelFormat::NV21: in draw_rect() 530 case PixelFormat::NV21: in draw_char()
|
D | colorbar.cpp | 104 case PixelFormat::NV21: in draw_color_bar()
|
/external/libkmsxx/kms++/src/ |
D | pixelformats.cpp | 42 { PixelFormat::NV21, {
|
/external/webrtc/sdk/android/instrumentationtests/src/org/webrtc/ |
D | VideoFrameBufferTest.java | 48 private static enum BufferType { I420, RGB_TEXTURE, OES_TEXTURE, NV21, NV12 } enumConstant 85 case NV21: in createBufferWithType()
|
/external/libyuv/files/unit_test/ |
D | convert_test.cc | 282 TESTAPLANARTOP(Android420, NV21, 2, 1, 0, 2, 2, I420, 2, 2) 393 TESTPLANARTOBP(I420, 2, 2, NV21, 2, 2) 394 TESTPLANARTOBP(I422, 2, 1, NV21, 2, 2) 395 TESTPLANARTOBP(I444, 1, 1, NV21, 2, 2) 396 TESTPLANARTOBP(I400, 2, 2, NV21, 2, 2) 606 TESTBIPLANARTOP(NV21, 2, 2, I420, 2, 2) 848 TESTBIPLANARTOB(NV21, 2, 2, ARGB, ARGB, 4, 2) 850 TESTBIPLANARTOB(NV21, 2, 2, ABGR, ABGR, 4, 2) 852 TESTBIPLANARTOB(NV21, 2, 2, RGB24, RGB24, 3, 2) 854 TESTBIPLANARTOB(NV21, 2, 2, RAW, RAW, 3, 2) [all …]
|
/external/sl4a/Common/src/com/googlecode/android_scripting/facade/webcam/ |
D | WebCamFacade.java | 175 new YuvImage(yuvData, ImageFormat.NV21, mPreviewWidth, mPreviewHeight, null); in compressYuvToJpeg()
|
/external/libkmsxx/py/pykms/ |
D | pykmsbase.cpp | 177 .value("NV21", PixelFormat::NV21) in init_pykmsbase()
|
/external/v4l2_codec2/components/ |
D | V4L2Decoder.cpp | 33 Fourcc::NV12, Fourcc::NV21, Fourcc::NM12, Fourcc::NM21,
|
D | V4L2EncodeComponent.cpp | 110 *format = VideoPixelFormat::NV21; in getVideoFrameLayout()
|
/external/mesa3d/src/gallium/drivers/virgl/ |
D | virgl_encode.c | 183 CONV_FORMAT(NV21)
|