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

1 2

  /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 53 DummySource(int width, int height, int nFrames, int fps, int colorFormat)
58 mColorFormat(colorFormat),
159 int colorFormat = OMX_COLOR_FormatYUV420Planar;
178 colorFormat = translateColorToOmxEnumValue(atoi(optarg));
179 if (colorFormat == -1) {
250 new DummySource(width, height, nFrames, frameRateFps, colorFormat);
271 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);
  /frameworks/av/libvideoeditor/lvpp/
VideoEditorPreviewController.h 140 M4OSA_Void * dataPtr, M4OSA_UInt32 colorFormat,
146 M4OSA_UInt32 colorFormat, M4OSA_UInt32 videoWidth,
VideoEditorPreviewController.cpp     [all...]
  /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")) {
115 "CameraSource::getColorFormat", colorFormat);
OMXCodec.cpp 644 OMX_COLOR_FORMATTYPE colorFormat) {
672 && format.eColorFormat == colorFormat) {
680 colorFormat, compressionFormat);
698 OMX_COLOR_FORMATTYPE colorFormat, int32_t width, int32_t height) {
699 switch (colorFormat) {
725 const sp<MetaData>& meta, OMX_COLOR_FORMATTYPE *colorFormat) {
729 *colorFormat = OMX_COLOR_FormatYUV420SemiPlanar;
732 *colorFormat = (OMX_COLOR_FORMATTYPE) targetColorFormat;
736 return isColorFormatSupported(*colorFormat, kPortIndexInput);
740 OMX_COLOR_FORMATTYPE colorFormat, int portIndex)
    [all...]
MediaCodec.cpp 619 int32_t colorFormat;
621 "color-format", &colorFormat));
626 meta->setInt32(kKeyColorFormat, colorFormat);
    [all...]
ACodec.cpp     [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);
  /external/mesa3d/src/pixelflinger2/
scanline.cpp 186 void GGLScanLine(const gl_shader_program * program, const GGLPixelFormat colorFormat,
196 // program, colorFormat, frameBuffer, depthBuffer, stencilBuffer);
206 if (GGL_PIXEL_FORMAT_RGBA_8888 == colorFormat)
208 else if (GGL_PIXEL_FORMAT_RGB_565 == colorFormat)
llvm_scanline.cpp 512 if (GGL_PIXEL_FORMAT_RGBA_8888 == gglCtx->bufferState.colorFormat)
514 else if (GGL_PIXEL_FORMAT_RGB_565 == gglCtx->bufferState.colorFormat) {
517 } else if (GGL_PIXEL_FORMAT_UNKNOWN == gglCtx->bufferState.colorFormat)
644 dst = ScreenColorToIntVector(builder, gglCtx->bufferState.colorFormat, frameColor);
650 Value * color = GenerateFSBlend(gglCtx, gglCtx->bufferState.colorFormat,/*&prog->outputRegDesc,*/ builder, src, dst);
buffer.cpp 205 ctx->state.bufferState.colorFormat = ctx->frameSurface.format;
  /frameworks/av/include/media/stagefright/
OMXCodec.h 253 OMX_COLOR_FORMATTYPE colorFormat);
264 const sp<MetaData>& meta, OMX_COLOR_FORMATTYPE *colorFormat);
267 OMX_COLOR_FORMATTYPE colorFormat, int portIndex);
ACodec.h 192 OMX_COLOR_FORMATTYPE 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...]
  /external/mesa3d/include/pixelflinger2/
pixelflinger2_interface.h 106 enum GGLPixelFormat colorFormat, depthFormat, stencilFormat;
357 void GGLScanLine(const gl_shader_program_t * program, const enum GGLPixelFormat colorFormat,
  /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...]
  /external/webkit/Source/WebCore/inspector/front-end/
StylesSidebarPane.js 69 var format = WebInspector.settings.colorFormat;
478 if (options[i].value === WebInspector.settings.colorFormat) {
490 WebInspector.settings.colorFormat = selectedOption.value;
    [all...]
  /development/ndk/platforms/android-14/include/OMXAL/
OpenMAXAL.h 433 XAuint32 colorFormat;
    [all...]

Completed in 1699 milliseconds

1 2