HomeSort by relevance Sort by last modified time
    Searched defs:channels (Results 201 - 225 of 605) sorted by null

1 2 3 4 5 6 7 891011>>

  /external/ImageMagick/coders/
vips.c 309 const VIPSBandFormat format,const VIPSType type,const unsigned int channels,
333 if (channels < 3)
337 if (channels == 2)
344 if (channels == 4)
351 else if (channels == 5)
382 channels,
421 channels=ReadBlobLong(image);
454 if (channels == 5)
460 if (channels == 2)
466 if (channels == 4
379 channels, local
633 channels; local
    [all...]
  /external/aac/libPCMutils/src/
limiter.cpp 99 unsigned int channels, maxChannels; member in struct:TDLimiter
162 limiter->channels = maxChannels;
190 FDKmemset(limiter->delayBuf, 0, limiter->attack * limiter->channels * sizeof(FIXP_DBL) );
235 unsigned int channels = limiter->channels; local
278 /* get maximum absolute sample value of all channels, including the additional gain. */
280 for (j = 0; j < channels; j++) {
281 tmp2 = (FIXP_PCM)samples[i * channels + j];
349 for (j = 0; j < channels; j++) {
351 tmp = delayBuf[delayBufIdx * channels + j]
    [all...]
  /external/deqp/modules/gles3/functional/
es3fTextureSwizzleTests.cpp 198 // Swizzle channels
256 } channels[] = local
303 for (int chanNdx = 0; chanNdx < DE_LENGTH_OF_ARRAY(channels); chanNdx++)
310 string name = string(channels[chanNdx].name) + "_" + swizzles[swzNdx].name;
  /external/flac/libFLAC/include/protected/
stream_encoder.h 93 unsigned channels; member in struct:FLAC__StreamEncoderProtected
  /external/kernel-headers/original/uapi/sound/
sb16_csp.h 40 /* CSP channels */
80 int channels; /* channels, look above */ member in struct:snd_sb_csp_start
88 unsigned short acc_channels; /* accepted channels */
92 unsigned short run_channels; /* current channels */
  /external/libgdx/backends/gdx-backend-lwjgl/src/com/badlogic/gdx/backends/lwjgl/audio/
OpenALAudioDevice.java 36 private final int channels; field in class:OpenALAudioDevice
50 channels = isMono ? 1 : 2;
53 this.format = channels > 1 ? AL_FORMAT_STEREO16 : AL_FORMAT_MONO16;
55 secondsPerBuffer = (float)bufferSize / bytesPerSample / channels / sampleRate;
208 return channels == 1;
  /external/libgdx/backends/gdx-backend-lwjgl3/src/com/badlogic/gdx/backends/lwjgl3/audio/
OpenALAudioDevice.java 36 private final int channels; field in class:OpenALAudioDevice
50 channels = isMono ? 1 : 2;
53 this.format = channels > 1 ? AL_FORMAT_STEREO16 : AL_FORMAT_MONO16;
55 secondsPerBuffer = (float)bufferSize / bytesPerSample / channels / sampleRate;
208 return channels == 1;
  /external/libpng/contrib/pngminus/
pnm2png.c 212 int channels=0; local
351 /* calculate the number of channels and store alpha-presence */
353 channels = 1;
355 channels = 2;
357 channels = 3;
359 channels = 4;
362 channels = 0; /* cannot happen */
365 alpha_present = (channels - 1) % 2;
369 /* row data is as many bytes as can fit width x channels x bit_depth */
370 row_bytes = (width * channels * bit_depth + 7) / 8
    [all...]
  /external/libpng/
pnginfo.h 75 png_byte channels; /* number of data channels per pixel (1, 2, 3, 4) */ member in struct:png_info_def
135 * only specified for the channels in the pixel data. The contents of
139 png_color_8 sig_bit; /* significant bits in color channels */
  /external/libvorbis/include/vorbis/
codec.h 30 int channels; member in struct:vorbis_info
  /external/libvorbis/lib/
psy.h 88 int channels; member in struct:__anon16391
  /external/mp4parser/isoparser/src/main/java/com/coremedia/iso/boxes/apple/
AppleLosslessSpecificBox.java 19 8bit channels? 16bit ?? 32bit max coded frame size 32bit
28 private int channels; // 8bit field in class:AppleLosslessSpecificBox
83 return channels;
86 public void setChannels(int channels) {
87 this.channels = channels;
132 channels = IsoTypeReader.readUInt8(content);
148 IsoTypeWriter.writeUInt8(byteBuffer, channels);
  /external/opencv/cxcore/include/
cxcore.hpp 50 CvImage( CvSize size, int depth, int channels )
52 image = cvCreateImage( size, depth, channels );
86 void create( CvSize size, int depth, int channels )
90 image->depth != depth || image->nChannels != channels )
91 attach( cvCreateImage( size, depth, channels ));
154 int channels() const { return image ? image->nChannels : 0; } function in class:CvImage
322 int channels() const { return matrix ? CV_MAT_CN(matrix->type) : 0; } function in class:CvMatrix
  /external/opencv/cxcore/src/
cxrand.cpp 453 int type, depth, channels; local
506 channels = CV_MAT_CN( type );
507 size.width *= channels;
513 for( i = 0, fast_int_mode = 1; i < channels; i++ )
525 for( i = 0; i < channels; i++ )
530 int t0 = iparam[0][i - channels];
531 int t1 = iparam[1][i - channels];
542 for( i = 0; i < channels; i++ )
556 for( i = 0; i < channels; i++ )
574 for( i = channels; i < 12; i++
    [all...]
  /external/opencv/otherlibs/highgui/
grfmt_exr.cpp 142 const ChannelList &channels = m_file->header().channels(); local
143 m_red = channels.findChannel( "R" );
144 m_green = channels.findChannel( "G" );
145 m_blue = channels.findChannel( "B" );
154 m_green = channels.findChannel( "Y" );
158 m_red = channels.findChannel( "RY" );
159 m_blue = channels.findChannel( "BY" );
590 int width, int height, int depth, int channels )
608 if( channels == 3
    [all...]
grfmt_pxm.cpp 381 int channels = _channels > 1 ? 3 : 1; local
382 int fileStep = width*channels*(depth/8);
394 lineLength = channels * width * depth / 8;
396 lineLength = (6 * channels + (channels > 1 ? 2 : 0)) * width + 32;
410 '2' + (channels > 1 ? 1 : 0) + (isBinary ? 3 : 0),
434 for( x = 0; x < width*channels*2; x += 2 )
441 m_strm.PutBytes( (channels > 1 || depth > 8) ? buffer : (char*)data, fileStep );
447 if( channels > 1 )
451 for( x = 0; x < width*channels; x += channels
    [all...]
  /external/opencv3/3rdparty/include/ffmpeg_/libavutil/
frame.h 104 * pointers to the data planes/channels.
111 * contains the total size of the buffer for all channels.
114 * but for planar audio with more channels that can fit in data,
115 * extended_data must be used in order to access all channels.
339 * AV_NUM_DATA_POINTERS channels, there may be more buffers than can fit in
417 * number of audio channels, only used for audio.
423 int channels; member in struct:AVFrame
  /external/opencv3/3rdparty/libpng/
pnginfo.h 74 png_byte channels; /* number of data channels per pixel (1, 2, 3, 4) */ member in struct:png_info_def
123 * only specified for the channels in the pixel data. The contents of
127 png_color_8 sig_bit; /* significant bits in color channels */
  /external/opencv3/3rdparty/openexr/IlmImf/
ImfAcesFile.cpp 320 AcesOutputFile::channels () const function in class:Imf::AcesOutputFile
322 return _data->rgbaFile->channels();
606 AcesInputFile::channels () const function in class:Imf::AcesInputFile
608 return _data->rgbaFile->channels();
ImfB44Compressor.cpp 40 // This compressor is lossy for HALF channels; the compression rate
41 // is fixed at 32/14 (approximately 2.28). FLOAT and UINT channels
481 _channels (hdr.channels()),
495 const ChannelList &channels = header().channels(); local
498 for (ChannelList::ConstIterator c = channels.begin();
499 c != channels.end();
522 for (ChannelList::ConstIterator c = channels.begin();
523 c != channels.end();
541 // format only if all image channels are of type HALF
    [all...]
ImfHeader.cpp 109 header.insert ("channels", ChannelListAttribute ());
136 const ChannelList &channels = header.channels(); local
138 for (ChannelList::ConstIterator i = channels.begin();
139 i != channels.end();
506 Header::channels () function in class:Imf::Header
509 ((*this)["channels"]).value();
514 Header::channels () const function in class:Imf::Header
517 ((*this)["channels"]).value();
769 const ChannelList &channels = this->channels() local
    [all...]
ImfPizCompressor.cpp 182 _channels (hdr.channels()),
197 const ChannelList &channels = header().channels(); local
200 for (ChannelList::ConstIterator c = channels.begin();
201 c != channels.end();
222 // if all image channels are of type HALF, and if the Xdr and the
329 // two interleaved 16-bit channels.
  /external/opencv3/modules/calib3d/src/
quadsubpix.cpp 178 int channels = 0; local
182 calcHist(&img_roi, 1, &channels, Mat(), hist, 1, &nbins, &_ranges);
  /external/opencv3/modules/core/include/opencv2/core/
affine.hpp 157 channels = 16, enumerator in enum:cv::DataType::__anon20605
158 fmt = DataType<channel_type>::fmt + ((channels - 1) << 8),
159 type = CV_MAKETYPE(depth, channels)
162 typedef Vec<channel_type, channels> vec_type;
cuda.inl.hpp 323 int GpuMat::channels() const function in class:cv::cuda::GpuMat
504 int HostMem::channels() const function in class:cv::cuda::HostMem

Completed in 1008 milliseconds

1 2 3 4 5 6 7 891011>>