HomeSort by relevance Sort by last modified time
    Searched defs:colorspace (Results 51 - 75 of 170) sorted by null

1 23 4 5 6 7

  /prebuilts/ndk/current/platforms/android-24/arch-x86_64/usr/include/linux/
v4l2-mediabus.h 112 __u32 colorspace; member in struct:v4l2_mbus_framefmt
  /external/ImageMagick/coders/
bmp.c 51 #include "MagickCore/colorspace.h"
52 #include "MagickCore/colorspace-private.h"
144 colorspace;
719 bmp_info.colorspace=ReadBlobLSBSignedLong(image);
141 colorspace; member in struct:_BMPInfo
    [all...]
jpeg.c 57 #include "MagickCore/colorspace.h"
58 #include "MagickCore/colorspace-private.h"
944 (void) LogMagickEvent(CoderEvent,GetMagickModule(),"Colorspace: CMYK");
959 "Colorspace: GRAYSCALE");
967 (void) LogMagickEvent(CoderEvent,GetMagickModule(),"Colorspace: RGB");
979 (void) LogMagickEvent(CoderEvent,GetMagickModule(),"Colorspace: %d",
2107 colorspace, local
    [all...]
msl.c 5905 colorspace; local
6054 colorspace; local
    [all...]
  /external/mesa3d/src/gallium/auxiliary/util/
u_format.h 191 * depending on the colorspace.
196 * Colorspace transformation.
198 enum util_format_colorspace colorspace; member in struct:util_format_description
474 return desc->colorspace == UTIL_FORMAT_COLORSPACE_SRGB;
480 return desc->colorspace == UTIL_FORMAT_COLORSPACE_ZS &&
487 return desc->colorspace == UTIL_FORMAT_COLORSPACE_ZS &&
532 switch (desc->colorspace) {
741 enum util_format_colorspace colorspace,
755 if (colorspace == UTIL_FORMAT_COLORSPACE_SRGB) {
756 colorspace = UTIL_FORMAT_COLORSPACE_RGB
    [all...]
  /external/opencv3/3rdparty/libwebp/dec/
idec.c 638 idec->output_.colorspace = mode;
652 WEBP_CSP_MODE colorspace; local
658 colorspace = MODE_YUVA;
666 colorspace = (a == NULL) ? MODE_YUV : MODE_YUVA;
672 idec->output_.colorspace = colorspace;
786 if (src->colorspace >= MODE_YUV) {
804 if (src->colorspace < MODE_YUV) {
io.c 57 const WebPSampleLinePairFunc sample = WebPSamplers[output->colorspace];
86 const WebPYUV444Converter convert = WebPYUV444Converters[output->colorspace];
109 WebPUpsampleLinePairFunc upsample = WebPUpsamplers[p->output->colorspace];
219 const WEBP_CSP_MODE colorspace = p->output->colorspace; local
221 (colorspace == MODE_ARGB || colorspace == MODE_Argb);
240 if (alpha_mask != 0xff && WebPIsPremultipliedMode(colorspace)) {
252 const WEBP_CSP_MODE colorspace = p->output->colorspace; local
411 const WEBP_CSP_MODE colorspace = p->output->colorspace; local
444 const WEBP_CSP_MODE colorspace = p->output->colorspace; local
540 const WEBP_CSP_MODE colorspace = p->output->colorspace; local
    [all...]
vp8l.c 405 static int Export(WebPRescaler* const rescaler, WEBP_CSP_MODE colorspace,
413 VP8LConvertFromBGRA(src, dst_width, colorspace, dst);
423 const WEBP_CSP_MODE colorspace = dec->output_->colorspace; local
432 num_lines_out += Export(dec->rescaler, colorspace, out_stride, row_out);
438 static int EmitRows(WEBP_CSP_MODE colorspace,
446 VP8LConvertFromBGRA((const uint32_t*)row_in, mb_w, colorspace, row_out);
662 if (output->colorspace < MODE_YUV) { // convert to RGBA
668 EmitRows(output->colorspace, rows_data, in_stride,
    [all...]
  /external/opencv3/3rdparty/libwebp/webp/
decode.h 195 WEBP_CSP_MODE colorspace; // Colorspace. member in struct:WebPDecBuffer
246 // buffer.colorspace = mode;
283 // colorspace 'csp' is taken into account for allocating this buffer. All other
333 // are not initialized yet. The RGB/A output type corresponds to the colorspace
382 config.output.colorspace = MODE_BGRA;
encode.h 276 // since these are the respective native colorspace for these formats.
280 WebPEncCSP colorspace; // colorspace: should be YUV420 for now (=Y'CbCr). member in struct:WebPPicture
344 // Note that, by default, use_argb is false and colorspace is WEBP_YUV420.
353 // Allocate y/u/v buffers as per colorspace/width/height specification.
386 // picture uses the YUV420 colorspace, the top and left coordinates will be
394 // the 'src' source picture. If the source picture uses the YUV420 colorspace,
415 // Colorspace conversion function to import RGB samples.
438 // Converts picture->argb data to the YUVA format specified by 'colorspace'.
440 // non-opaque transparent values is detected, and 'colorspace' will b
    [all...]
  /external/opencv3/modules/imgcodecs/src/
grfmt_tiff.cpp 570 int colorspace = channels > 1 ? PHOTOMETRIC_RGB : PHOTOMETRIC_MINISBLACK; local
576 || !TIFFSetField(pTiffHandle, TIFFTAG_PHOTOMETRIC, colorspace)
  /external/webp/include/webp/
decode.h 198 WEBP_CSP_MODE colorspace; // Colorspace. member in struct:WebPDecBuffer
249 // buffer.colorspace = mode;
286 // colorspace 'csp' is taken into account for allocating this buffer. All other
336 // are not initialized yet. The RGB/A output type corresponds to the colorspace
385 config.output.colorspace = MODE_BGRA;
encode.h 298 // since these are the respective native colorspace for these formats.
302 WebPEncCSP colorspace; // colorspace: should be YUV420 for now (=Y'CbCr). member in struct:WebPPicture
364 // Note that, by default, use_argb is false and colorspace is WEBP_YUV420.
373 // Allocate y/u/v buffers as per colorspace/width/height specification.
406 // picture uses the YUV420 colorspace, the top and left coordinates will be
414 // the 'src' source picture. If the source picture uses the YUV420 colorspace,
437 // Colorspace conversion function to import RGB samples.
460 // Converts picture->argb data to the YUV420A format. The 'colorspace'
463 // non-opaque transparent values is detected, and 'colorspace' will b
    [all...]
  /external/webp/src/dec/
idec.c 662 idec->output_.colorspace = mode;
676 WEBP_CSP_MODE colorspace; local
682 colorspace = MODE_YUVA;
690 colorspace = (a == NULL) ? MODE_YUV : MODE_YUVA;
696 idec->output_.colorspace = colorspace;
809 if (src->colorspace >= MODE_YUV) {
827 if (src->colorspace < MODE_YUV) {
io.c 54 WebPSamplers[output->colorspace]);
66 WebPUpsampleLinePairFunc upsample = WebPUpsamplers[p->output->colorspace];
179 const WEBP_CSP_MODE colorspace = p->output->colorspace; local
181 (colorspace == MODE_ARGB || colorspace == MODE_Argb);
192 if (has_alpha && WebPIsPremultipliedMode(colorspace)) {
205 const WEBP_CSP_MODE colorspace = p->output->colorspace; local
229 if (alpha_mask != 0x0f && WebPIsPremultipliedMode(colorspace)) {
386 const WEBP_CSP_MODE colorspace = p->output->colorspace; local
420 const WEBP_CSP_MODE colorspace = p->output->colorspace; local
518 const WEBP_CSP_MODE colorspace = p->output->colorspace; local
    [all...]
  /external/webp/src/webp/
decode.h 198 WEBP_CSP_MODE colorspace; // Colorspace. member in struct:WebPDecBuffer
249 // buffer.colorspace = mode;
286 // colorspace 'csp' is taken into account for allocating this buffer. All other
336 // are not initialized yet. The RGB/A output type corresponds to the colorspace
385 config.output.colorspace = MODE_BGRA;
encode.h 298 // since these are the respective native colorspace for these formats.
302 WebPEncCSP colorspace; // colorspace: should be YUV420 for now (=Y'CbCr). member in struct:WebPPicture
364 // Note that, by default, use_argb is false and colorspace is WEBP_YUV420.
373 // Allocate y/u/v buffers as per colorspace/width/height specification.
406 // picture uses the YUV420 colorspace, the top and left coordinates will be
414 // the 'src' source picture. If the source picture uses the YUV420 colorspace,
437 // Colorspace conversion function to import RGB samples.
460 // Converts picture->argb data to the YUV420A format. The 'colorspace'
463 // non-opaque transparent values is detected, and 'colorspace' will b
    [all...]
  /external/ImageMagick/MagickCore/
enhance.c 53 #include "MagickCore/colorspace.h"
54 #include "MagickCore/colorspace-private.h"
335 if( (IsGrayColorspace(image->colorspace) != MagickFalse) &&
336 (IsGrayColorspace(clut_image->colorspace) == MagickFalse))
3153 colorspace; local
    [all...]
pixel.h 21 #include "MagickCore/colorspace.h"
173 colorspace; member in struct:_PixelInfo
property.c 50 #include "MagickCore/colorspace-private.h"
2498 colorspace; local
4010 colorspace; local
    [all...]
accelerate.c 114 /* check if the image's colorspace is supported */
115 if (image->colorspace != RGBColorspace &&
116 image->colorspace != sRGBColorspace &&
117 image->colorspace != GRAYColorspace)
187 if (image->colorspace == RGBColorspace)
194 if (image->colorspace == sRGBColorspace)
319 colorspace, local
331 colorspace = image->colorspace;
346 clStatus|=clEnv->library->clSetKernelArg(histogramKernel,i++,sizeof(cl_uint),&colorspace);
2954 colorspace, local
    [all...]
image.h 135 #include "MagickCore/colorspace.h"
160 colorspace; /* colorspace of image data */ member in struct:_Image
427 colorspace; member in struct:_ImageInfo
  /external/ImageMagick/MagickWand/
mogrify.c 506 (image->colorspace == CMYKColorspace))
609 (image->colorspace == CMYKColorspace))
643 (image->colorspace == CMYKColorspace))
1197 colorspace; local
4405 colorspace; local
4422 colorspace; local
5748 colorspace; local
7846 colorspace; local
    [all...]
  /external/libpng/
pngstruct.h 71 /* Colorspace support; structures used in png_struct, png_info and in internal
75 * colorspace corrections, otherwise all the colorspace information can be
77 * out the colorspace support.
100 #endif /* COLORSPACE */
103 /* A colorspace is all the above plus, potentially, profile information;
141 #endif /* COLORSPACE || GAMMA */
479 png_colorspace colorspace; member in struct:png_struct_def
  /external/opencv3/modules/videoio/src/
cap_mjpeg_encoder.cpp 575 int colorspace = -1; local
580 colorspace = COLORSPACE_GRAY;
585 colorspace = COLORSPACE_RGBA;
590 colorspace = COLORSPACE_BGR;
595 colorspace = COLORSPACE_YUV444P;
598 CV_Error(CV_StsBadArg, "Invalid combination of specified video colorspace and the input image colorspace");
603 writeFrameData(img.data, (int)img.step, colorspace, input_channels);
632 void writeFrameData( const uchar* data, int step, int colorspace, int input_channels );
    [all...]

Completed in 658 milliseconds

1 23 4 5 6 7