HomeSort by relevance Sort by last modified time
    Searched defs:luma (Results 1 - 25 of 29) sorted by null

1 2

  /frameworks/av/media/libstagefright/codecs/on2/h264dec/source/
h264bsd_image.h 51 u8 *luma; member in struct:__anon18129
  /external/chromium_org/third_party/skia/src/effects/
SkLumaColorFilter.cpp 30 * LumA = (k1 * r / a + k2 * g / a + k3 * b / a) * a
31 * LumA = (k1 * r + k2 * g + k3 * b)
33 unsigned luma = SkComputeLuminance(SkGetPackedR32(c), local
36 dst[i] = SkPackARGB32(luma, 0, 0, 0);
104 fsBuilder->codeAppendf("\tfloat luma = dot(vec3(%f, %f, %f), %s.rgb);\n",
109 fsBuilder->codeAppendf("\t%s = vec4(0, 0, 0, luma);\n",
  /external/skia/src/effects/
SkLumaColorFilter.cpp 29 * LumA = (k1 * r / a + k2 * g / a + k3 * b / a) * a
30 * LumA = (k1 * r + k2 * g + k3 * b)
32 unsigned luma = SkComputeLuminance(SkGetPackedR32(c), local
35 dst[i] = SkPackARGB32(luma, 0, 0, 0);
104 builder->fsCodeAppendf("\tfloat luma = dot(vec3(%f, %f, %f), %s.rgb);\n",
109 builder->fsCodeAppendf("\t%s = vec4(0, 0, 0, luma);\n",
  /external/chromium_org/third_party/skia/src/core/
SkMaskGamma.h 20 * Luma is used to specify a linear luminance value [0.0, 1.0].
27 /** Converts a color component luminance in the color space to a linear luma. */
29 /** Converts a linear luma to a color component luminance in the color space. */
30 virtual SkScalar fromLuma(SkScalar gamma, SkScalar luma) const = 0;
38 SkScalar luma = r * SK_LUM_COEFF_R + local
41 SkASSERT(luma <= SK_Scalar1);
42 return SkScalarRoundToInt(luminance.fromLuma(gamma, luma) * 255);
  /external/skia/src/core/
SkMaskGamma.h 20 * Luma is used to specify a linear luminance value [0.0, 1.0].
27 /** Converts a color component luminance in the color space to a linear luma. */
29 /** Converts a linear luma to a color component luminance in the color space. */
30 virtual SkScalar fromLuma(SkScalar gamma, SkScalar luma) const = 0;
38 SkScalar luma = r * SK_LUM_COEFF_R + local
41 SkASSERT(luma <= SK_Scalar1);
42 return SkScalarRoundToInt(luminance.fromLuma(gamma, luma) * 255);
  /frameworks/av/media/libstagefright/codecs/on2/h264dec/source/arm_neon_asm/
h264bsdWriteMacroblock.s 28 luma RN 3 label
74 ; Write one macroblock into the image. Both luma and chroma
79 ; luma followed by 64 values for both chroma components
94 LDR luma, [image, #0xC]
99 ; Write luma
104 VST1 {qRow0}, [luma@128], width
106 VST1 {qRow1}, [luma@128], width
108 VST1 {qRow2}, [luma@128], width
110 VST1 {qRow3}, [luma@128], width
112 VST1 {qRow4}, [luma@128], widt
    [all...]
  /frameworks/av/media/libstagefright/codecs/on2/h264dec/source/arm_neon_asm_gcc/
h264bsdWriteMacroblock.S 30 #define luma r3 define
76 Write one macroblock into the image. Both luma and chroma
81 luma followed by 64 values for both chroma components
96 LDR luma, [image, #0xC]
101 @ Write luma
106 VST1 {qRow0}, [luma,:128], width
108 VST1 {qRow1}, [luma,:128], width
110 VST1 {qRow2}, [luma,:128], width
112 VST1 {qRow3}, [luma,:128], width
114 VST1 {qRow4}, [luma,:128], widt
    [all...]
  /external/chromium_org/third_party/libwebp/dsp/
yuv.h 49 // difference of allowing larger range for luma/chroma.
281 const int luma = 16839 * r + 33059 * g + 6420 * b; local
282 return (luma + rounding + (16 << YUV_FIX)) >> YUV_FIX; // no need to clip
301 const int luma = 19595 * r + 38470 * g + 7471 * b; local
302 return (luma + rounding) >> YUV_FIX; // no need to clip
  /external/chromium_org/ui/gfx/
color_utils.cc 80 int luma = static_cast<int>((0.3 * SkColorGetR(color)) + local
83 return std::max(std::min(luma, 255), 0);
  /external/deqp/framework/common/
tcuFuzzyImageCompare.cpp 332 float luma = toGrayscale(cmp.getPixel(x, y)); local
333 float rF = 0.7f + 0.3f*luma;
  /external/webp/src/dsp/
yuv.h 49 // difference of allowing larger range for luma/chroma.
281 const int luma = 16839 * r + 33059 * g + 6420 * b; local
282 return (luma + rounding + (16 << YUV_FIX)) >> YUV_FIX; // no need to clip
301 const int luma = 19595 * r + 38470 * g + 7471 * b; local
302 return (luma + rounding) >> YUV_FIX; // no need to clip
  /frameworks/av/media/libstagefright/omx/
SoftVideoEncoderOMXComponent.cpp 449 unsigned luma = local
452 dstY[x] = luma;
  /external/libpng/contrib/libtests/
makepng.c 329 png_uint_32 luma = base - abs(2*x-size_max); local
331 /* 'luma' is now in the range 0..2*size_max, we need
334 luma = (luma*depth_max + size_max) / (2*size_max);
335 set_value(row, rowbytes, x, bit_depth, luma, gamma_table, conv);
451 const png_uint_32 luma = colors[1]; local
455 set_value(row, rowbytes, x, bit_depth, luma, gamma_table,
462 const png_uint_32 luma = colors[1]; local
468 set_value(row, rowbytes, 2*x, bit_depth, luma, gamma_table,
    [all...]
  /hardware/ti/omap4-aah/test/CameraHal/
camera_test_surfacetexture.cpp 156 unsigned char *luma = NULL, *chroma = NULL, *src = NULL; local
170 // start of valid luma region
171 luma = src + offset;
175 // write luma line x line
180 if (write_size != write(fd, luma, width)) {
185 luma += stride;
  /hardware/ti/omap4-aah/camera/
AppCallbackNotifier.cpp 722 // start of valid luma region
723 unsigned const char *luma = src + offset; local
727 // copy luma and chroma line x line
729 memcpy(dst, luma, width);
730 luma += stride;
    [all...]
  /hardware/qcom/msm8960/kernel-headers/linux/
msm_q6vdec.h 276 u32 luma; member in struct:stride_type
  /hardware/qcom/msm8960/original-kernel-headers/linux/
msm_q6vdec.h 158 u32 vc1_rangeY; /* luma range mapping */
246 u32 luma; member in struct:stride_type
  /prebuilts/sdk/current/support/v7/palette/libs/
android-support-v7-palette.jar 
  /bionic/libc/kernel/uapi/linux/
omap3isp.h 400 struct omap3isp_prev_luma __user *luma; member in struct:omap3isp_prev_update_config
  /development/ndk/platforms/android-L/include/linux/
omap3isp.h 400 struct omap3isp_prev_luma __user *luma; member in struct:omap3isp_prev_update_config
  /external/kernel-headers/original/uapi/linux/
omap3isp.h 601 * struct omap3isp_prev_luma - Luma enhancement
602 * @table: Array for luma enhancement table.
613 * @luma: Pointer to luma enhancement structure.
632 struct omap3isp_prev_luma __user *luma; member in struct:omap3isp_prev_update_config
  /prebuilts/ndk/9/platforms/android-21/arch-arm/usr/include/linux/
omap3isp.h 400 struct omap3isp_prev_luma __user *luma; member in struct:omap3isp_prev_update_config
  /prebuilts/ndk/9/platforms/android-21/arch-arm64/usr/include/linux/
omap3isp.h 400 struct omap3isp_prev_luma __user *luma; member in struct:omap3isp_prev_update_config
  /prebuilts/ndk/9/platforms/android-21/arch-mips/usr/include/linux/
omap3isp.h 400 struct omap3isp_prev_luma __user *luma; member in struct:omap3isp_prev_update_config
  /prebuilts/ndk/9/platforms/android-21/arch-mips64/usr/include/linux/
omap3isp.h 400 struct omap3isp_prev_luma __user *luma; member in struct:omap3isp_prev_update_config

Completed in 854 milliseconds

1 2