HomeSort by relevance Sort by last modified time
    Searched defs:srcFormat (Results 1 - 9 of 9) sorted by null

  /frameworks/av/media/libstagefright/codecs/aacenc/
AACEncoder.cpp 201 sp<MetaData> srcFormat = mSource->getFormat();
206 if (srcFormat->findInt64(kKeyDuration, &durationUs)) {
  /external/skia/src/ports/
SkFontHost_FreeType_common.cpp 184 const FT_Pixel_Mode srcFormat = static_cast<FT_Pixel_Mode>(srcFTBitmap.pixel_mode);
201 if ((FT_PIXEL_MODE_MONO == srcFormat && SkMask::kBW_Format == dstFormat) ||
202 (FT_PIXEL_MODE_GRAY == srcFormat && SkMask::kA8_Format == dstFormat))
210 } else if (FT_PIXEL_MODE_MONO == srcFormat && SkMask::kA8_Format == dstFormat) {
228 } else if (FT_PIXEL_MODE_BGRA == srcFormat && SkMask::kARGB32_Format == dstFormat) {
247 SkDEBUGF(("FT_Pixel_Mode %d, SkMask::Format %d\n", srcFormat, dstFormat));
  /external/deqp/modules/gles3/functional/
es3fFramebufferBlitTests.cpp 330 BlitColorConversionCase (Context& context, const char* name, const char* desc, deUint32 srcFormat, deUint32 dstFormat, const IVec2& size)
332 , m_srcFormat (srcFormat)
347 tcu::TextureFormat srcFormat = glu::mapGLInternalFormat(m_srcFormat);
349 glu::DataType srcOutputType = getFragmentOutputType(srcFormat);
353 tcu::TextureFormatInfo srcFmtRangeInfo = tcu::getTextureFormatInfo(srcFormat);
355 tcu::BVec4 copyMask = tcu::logicalAnd(getChannelMask(srcFormat.order), getChannelMask(dstFormat.order));
427 const tcu::TextureFormat srcFormat = glu::mapGLInternalFormat(m_srcFormat);
429 const bool srcIsSRGB = tcu::isSRGB(srcFormat);
436 threshold = getToSRGBConversionThreshold(srcFormat, dstFormat);
440 const tcu::RGBA srcMaxDiff = getFormatThreshold(srcFormat) * (srcIsSRGB ? 2 : 1)
    [all...]
  /external/mesa3d/src/mesa/state_tracker/
st_cb_texture.c 865 const GLenum srcFormat = _mesa_base_fbo_format(ctx, src->InternalFormat);
873 if (srcFormat == dstFormat) {
879 else if (srcFormat == GL_RGB && dstFormat == GL_RGBA) {
885 else if (srcFormat == GL_RGBA && dstFormat == GL_RGB) {
896 _mesa_lookup_enum_by_nr(srcFormat),
    [all...]
st_cb_drawpixels.c     [all...]
  /frameworks/av/cmds/stagefright/
mediafilter.cpp 191 sp<AMessage> srcFormat, destFormat;
192 vidState->mCodec->getOutputFormat(&srcFormat);
198 CHECK(srcFormat->findInt32("stride", &srcStride)
199 && srcFormat->findInt32("slice-height", &srcSliceHeight)
200 && srcFormat->findInt32("width", &srcWidth)
201 && srcFormat->findInt32("height", & srcHeight)
202 && srcFormat->findInt32("color-format", &srcColorFormat));
  /frameworks/av/media/libstagefright/
StagefrightMetadataRetriever.cpp 378 int32_t srcFormat;
379 CHECK(outputFormat->findInt32("color-format", &srcFormat));
381 ColorConverter converter((OMX_COLOR_FORMATTYPE)srcFormat, OMX_COLOR_Format16bitRGB565);
393 ALOGE("Unable to convert from format 0x%08x to RGB565", srcFormat);
  /external/pdfium/core/src/fxcodec/codec/
fx_codec_icc.cpp 112 int srcFormat;
117 srcFormat = COLORSPACE_SH(PT_Lab) | CHANNELS_SH(nSrcComponents) | BYTES_SH(0);
120 srcFormat = COLORSPACE_SH(PT_ANY) | CHANNELS_SH(nSrcComponents) | BYTES_SH(1);
122 srcFormat |= DOSWAP_SH(1);
133 hTransform = cmsCreateTransform(srcProfile, srcFormat, dstProfile, TYPE_GRAY_8, intent, 0);
136 hTransform = cmsCreateTransform(srcProfile, srcFormat, dstProfile, TYPE_BGR_8, intent, 0);
139 hTransform = cmsCreateTransform(srcProfile, srcFormat, dstProfile,
    [all...]
  /external/deqp/modules/gles31/functional/
es31fCopyImageTests.cpp     [all...]

Completed in 330 milliseconds