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

1 2

  /hardware/samsung_slsi/exynos5/include/
ExynosRect.h 47 int colorFormat; //!< V4L2_PIX_FMT_XXX
65 colorFormat = _colorFormat_;
77 colorFormat = other->colorFormat;
89 colorFormat = other.colorFormat;
102 && colorFormat == other.colorFormat);
ExynosCamera.h 352 bool setVideoFormat(int colorFormat);
648 bool setPictureFormat(int colorFormat);
654 bool setPreviewFormat(int colorFormat);
777 int colorFormat,
792 void m_printFormat(int colorFormat, const char *arg);
  /external/webkit/Source/ThirdParty/ANGLE/src/libGLESv2/
utilities.h 58 unsigned int GetAlphaSize(D3DFORMAT colorFormat);
59 unsigned int GetRedSize(D3DFORMAT colorFormat);
60 unsigned int GetGreenSize(D3DFORMAT colorFormat);
61 unsigned int GetBlueSize(D3DFORMAT colorFormat);
utilities.cpp 611 unsigned int GetAlphaSize(D3DFORMAT colorFormat)
613 switch (colorFormat)
633 unsigned int GetRedSize(D3DFORMAT colorFormat)
635 switch (colorFormat)
654 unsigned int GetGreenSize(D3DFORMAT colorFormat)
656 switch (colorFormat)
676 unsigned int GetBlueSize(D3DFORMAT colorFormat)
678 switch (colorFormat)
  /frameworks/av/cmds/stagefright/
recordvideo.cpp 54 DummySource(int width, int height, int nFrames, int fps, int colorFormat)
59 mColorFormat(colorFormat),
160 int colorFormat = OMX_COLOR_FormatYUV420Planar;
180 colorFormat = translateColorToOmxEnumValue(atoi(optarg));
181 if (colorFormat == -1) {
264 new DummySource(width, height, nFrames, frameRateFps, colorFormat);
285 enc_meta->setInt32(kKeyColorFormat, colorFormat);
record.cpp 45 DummySource(int width, int height, int colorFormat)
48 mColorFormat(colorFormat),
54 CHECK(colorFormat == OMX_COLOR_FormatYUV420SemiPlanar ||
55 colorFormat == OMX_COLOR_FormatYUV420Planar);
180 int colorFormat = translateColorToOmxEnumValue(atoi(argv[2]));
181 if (colorFormat == -1) {
210 sp<MediaSource> decoder = new DummySource(width, height, colorFormat);
224 enc_meta->setInt32(kKeyColorFormat, colorFormat);
  /cts/tests/tests/media/src/android/media/cts/
EncodeDecodeTest.java 240 int colorFormat = selectColorFormat(codecInfo, MIME_TYPE);
241 if (VERBOSE) Log.d(TAG, "found colorFormat: " + colorFormat);
249 format.setInteger(MediaFormat.KEY_COLOR_FORMAT, colorFormat);
265 doEncodeDecodeVideoFromBuffer(encoder, colorFormat, decoder, toSurface);
304 int colorFormat = MediaCodecInfo.CodecCapabilities.COLOR_FormatSurface;
312 format.setInteger(MediaFormat.KEY_COLOR_FORMAT, colorFormat);
335 doEncodeDecodeVideoFromSurfaceToSurface(encoder, inputSurface, colorFormat, decoder, outputSurface);
388 int colorFormat = capabilities.colorFormats[i];
389 if (isRecognizedFormat(colorFormat)) {
    [all...]
MediaCodecTest.java 59 int colorFormat = findNonSurfaceColorFormat(codecInfo, MIME_TYPE);
60 format.setInteger(MediaFormat.KEY_COLOR_FORMAT, colorFormat);
268 int colorFormat = capabilities.colorFormats[i];
269 if (colorFormat != MediaCodecInfo.CodecCapabilities.COLOR_FormatSurface) {
270 return colorFormat;
  /frameworks/av/libvideoeditor/lvpp/
VideoEditorPreviewController.h 140 M4OSA_Void * dataPtr, M4OSA_UInt32 colorFormat,
146 M4OSA_UInt32 colorFormat, M4OSA_UInt32 videoWidth,
  /frameworks/av/media/libstagefright/
CameraSource.cpp 89 static int32_t getColorFormat(const char* colorFormat) {
90 if (!strcmp(colorFormat, CameraParameters::PIXEL_FORMAT_YUV420P)) {
94 if (!strcmp(colorFormat, CameraParameters::PIXEL_FORMAT_YUV422SP)) {
98 if (!strcmp(colorFormat, CameraParameters::PIXEL_FORMAT_YUV420SP)) {
102 if (!strcmp(colorFormat, CameraParameters::PIXEL_FORMAT_YUV422I)) {
106 if (!strcmp(colorFormat, CameraParameters::PIXEL_FORMAT_RGB565)) {
110 if (!strcmp(colorFormat, "OMX_TI_COLOR_FormatYUV420PackedSemiPlanar")) {
114 if (!strcmp(colorFormat, CameraParameters::PIXEL_FORMAT_ANDROID_OPAQUE)) {
119 "CameraSource::getColorFormat", colorFormat);
OMXCodec.cpp 652 OMX_COLOR_FORMATTYPE colorFormat) {
680 && format.eColorFormat == colorFormat) {
688 colorFormat, compressionFormat);
706 OMX_COLOR_FORMATTYPE colorFormat, int32_t width, int32_t height) {
707 switch (colorFormat) {
733 const sp<MetaData>& meta, OMX_COLOR_FORMATTYPE *colorFormat) {
737 *colorFormat = OMX_COLOR_FormatYUV420SemiPlanar;
740 *colorFormat = (OMX_COLOR_FORMATTYPE) targetColorFormat;
744 return isColorFormatSupported(*colorFormat, kPortIndexInput);
748 OMX_COLOR_FORMATTYPE colorFormat, int portIndex)
    [all...]
  /external/webkit/Source/WebCore/platform/graphics/gpu/
DrawingBuffer.cpp 213 unsigned long internalColorFormat, colorFormat, internalRenderbufferFormat;
216 colorFormat = GraphicsContext3D::RGBA;
220 colorFormat = GraphicsContext3D::RGB;
250 m_context->texImage2DResourceSafe(GraphicsContext3D::TEXTURE_2D, 0, internalColorFormat, m_size.width(), m_size.height(), 0, colorFormat, GraphicsContext3D::UNSIGNED_BYTE);
  /hardware/samsung_slsi/exynos5/libcamera/
ExynosJpegEncoderForCamera.h 83 int setColorFormat(int colorFormat);
ExynosCameraHWInterface.h 209 void m_getAlignedYUVSize(int colorFormat, int w, int h, ExynosBuffer *buf);
ExynosCamera.cpp     [all...]
ExynosCameraHWInterface.cpp 686 m_orgPreviewRect.colorFormat = newPreviewFormat;
796 m_orgPictureRect.colorFormat = value;
    [all...]
  /frameworks/av/include/media/stagefright/
OMXCodec.h 256 OMX_COLOR_FORMATTYPE colorFormat);
267 const sp<MetaData>& meta, OMX_COLOR_FORMATTYPE *colorFormat);
270 OMX_COLOR_FORMATTYPE colorFormat, int portIndex);
ACodec.h 218 OMX_COLOR_FORMATTYPE colorFormat);
  /hardware/samsung_slsi/exynos5/libcamera2/
ExynosJpegEncoderForCamera.h 81 int setColorFormat(int colorFormat);
  /frameworks/native/opengl/tests/hwc/
hwcTestLib.h 130 uint32_t colorFormat,
hwcTestLib.cpp 687 // given by colorFormat, which might be different from the format of the
692 void hwcTestFillColorHBlend(GraphicBuffer *gBuf, uint32_t colorFormat,
720 if (colorFormat != (uint32_t) gBuf->getPixelFormat()) {
721 hwcTestColorConvert(colorFormat, gBuf->getPixelFormat(), color);
    [all...]
  /frameworks/av/libvideoeditor/vss/stagefrightshells/src/
VideoEditorVideoDecoder.cpp     [all...]
  /frameworks/wilhelm/src/
data.c 504 switch (pDataFormat->mRawImage.colorFormat) {
548 pDataFormat->mRawImage.colorFormat);
    [all...]
  /external/webkit/Source/WebCore/platform/graphics/opengl/
GraphicsContext3DOpenGL.cpp 180 GLuint colorFormat, internalDepthStencilFormat = 0;
183 colorFormat = GL_RGBA;
186 colorFormat = GL_RGB;
237 ::glTexImage2D(GL_TEXTURE_2D, 0, m_internalColorFormat, width, height, 0, colorFormat, GL_UNSIGNED_BYTE, 0);
240 ::glTexImage2D(GL_TEXTURE_2D, 0, m_internalColorFormat, width, height, 0, colorFormat, GL_UNSIGNED_BYTE, 0);
    [all...]
  /frameworks/av/media/libmediaplayerservice/
StagefrightRecorder.cpp     [all...]

Completed in 729 milliseconds

1 2