Searched refs:codec (Results 1 - 25 of 439) sorted by last modified time

1234567891011>>

/external/webrtc/src/modules/audio_coding/codecs/isac/fix/source/
H A Dlattice_armv7.S12 @ filter routine for iSAC codec, optimized for ARMv7 platforms.
H A Dlattice_neon.S14 @ filter routine for iSAC codec, optimized for ARM Neon platform.
H A Dlpc_masking_model_neon.S12 @ iSAC codec, optimized for ARM Neon platform. Reference code in
/external/webrtc/src/modules/audio_coding/codecs/isac/fix/test/
H A DIsac_test.cc66 WebRtc_Word8 codec[10]; local
87 strcpy(codec,argv[5]);
90 if (!_stricmp("isac",codec)){
124 strcat(outFile, codec);
144 if (!_stricmp("isac", codec)){ /* ISAC */
254 if (!_stricmp("isac", codec)){
/external/webrtc/src/modules/interface/
H A Dmodule_common_types.h112 RTPVideoCodecTypes codec; member in struct:webrtc::RTPVideoHeader
325 codec = data.codec;
359 codec = data.codec;
394 VideoCodecType codec; member in class:webrtc::EncodedVideoData
/external/tinycompress/
H A Dcompress.c145 bool codec = false; local
149 if (caps->codecs[i] == config->codec->id) {
150 /* found the codec */
151 codec = true;
155 if (codec == false) {
156 oops(compress, ENXIO, "this codec is not supported");
181 /* TODO: match the codec properties */
185 static bool _is_codec_type_supported(int fd, struct snd_codec *codec) argument
197 if (caps.codecs[i] == codec->id) {
198 /* found the codec */
575 is_codec_supported(unsigned int card, unsigned int device, unsigned int flags, struct snd_codec *codec) argument
[all...]
H A Dcplay.c129 int check_codec_format_supported(unsigned int card, unsigned int device, struct snd_codec *codec) argument
131 if (is_codec_supported(card, device, COMPRESS_IN, codec) == false) {
132 fprintf(stderr, "Error: This codec or format is not supported by DSP\n");
203 struct snd_codec codec; local
226 codec.id = SND_AUDIOCODEC_MP3;
227 codec.ch_in = channels;
228 codec.ch_out = channels;
229 codec.sample_rate = rate;
230 if (!codec.sample_rate) {
235 codec
[all...]
/external/tinycompress/include/tinycompress/
H A Dtinycompress.h66 * @codec: codec type and parameters requested
71 struct snd_codec *codec; member in struct:compr_config
239 * is_codec_supported:check if the given codec is supported
245 * @codec: codec type and parameters to be checked
248 unsigned int flags, struct snd_codec *codec);
/external/stlport/test/unit/
H A Dcodecvt_test.cpp309 eater_codecvt codec(1);
310 locale loc(locale::classic(), &codec); local
343 generator_codecvt codec(1);
344 locale loc(locale::classic(), &codec);
/external/skia/samplecode/
H A DSampleEncode.cpp123 SkAutoTDelete<SkImageEncoder> codec(
125 if (NULL == codec.get()) {
130 SkAutoDataUnref data(codec->encodeData(fBitmaps[i], 100));
H A DSampleSubpixelTranslate.cpp34 SkImageDecoder* codec = NULL; local
37 codec = SkImageDecoder::Factory(&stream);
39 if (codec) {
41 codec->decode(&stream, &fBM, kN32_SkColorType, SkImageDecoder::kDecodePixels_Mode);
42 SkDELETE(codec);
/external/skia/src/images/
H A DSkImageDecoder.cpp297 SkImageDecoder* codec = SkImageDecoder::Factory(stream); local
299 if (NULL != codec) {
300 success = codec->decode(stream, bm, pref, mode);
302 *format = codec->getFormat();
309 delete codec;
H A DSkImageDecoder_FactoryRegistrar.cpp22 SkImageDecoder* codec = NULL; local
25 codec = curr->factory()(stream);
34 SkDELETE(codec);
38 if (codec) {
39 return codec;
H A DSkImageEncoder_Factory.cpp14 SkImageEncoder* codec = NULL; local
17 if ((codec = curr->factory()(t)) != NULL) {
18 return codec;
/external/skia/src/ports/
H A DSkImageDecoder_WIC.cpp457 SkImageDecoder_WIC codec; local
458 if (!codec.decodeStream(stream, NULL, SkImageDecoder_WIC::kDecodeFormat_WICMode, &format)) {
/external/skia/tools/
H A Dskdiff_utils.cpp54 SkImageDecoder* codec = SkImageDecoder::Factory(&stream); local
55 if (NULL == codec) {
56 SkDebugf("ERROR: no codec found for <%s>\n", resource.fFullPath.c_str());
63 SkAutoTDelete<SkImageDecoder> ad(codec);
66 if (!codec->decode(&stream, &resource.fBitmap, kN32_SkColorType, mode)) {
67 SkDebugf("ERROR: codec failed for basePath <%s>\n", resource.fFullPath.c_str());
H A Dskimage_main.cpp427 * same image as if it did report to have a length. Assumes that codec was used to
430 * @param codec The SkImageDecoder originally used to decode srcPath, which will be used
435 static void test_stream_without_length(const char srcPath[], SkImageDecoder* codec, argument
442 SkASSERT(codec);
448 if (!codec->decode(&stream, &bm, gPrefColorType, SkImageDecoder::kDecodePixels_Mode)) {
492 SkImageDecoder* codec = SkImageDecoder::Factory(&stream); local
493 if (NULL == codec) {
498 SkAutoTDelete<SkImageDecoder> ad(codec);
500 codec->setSkipWritingZeroes(FLAGS_skip);
501 codec
[all...]
/external/smack/asmack-master/lib/
H A Dhttpclient-4.1.3.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/apache/ org/apache/http/ org/apache/http/cookie/ ...
/external/skia/experimental/PdfViewer/
H A Dchop_transparency_main.cpp102 SkImageDecoder* codec = SkImageDecoder::Factory(&stream); local
103 if (NULL == codec) {
107 SkAutoTDelete<SkImageDecoder> ad(codec);
111 if (!codec->decode(&stream, &bitmap, kN32_SkColorType, SkImageDecoder::kDecodePixels_Mode)) {
/external/skia/gm/
H A Dcmykjpeg.cpp42 SkImageDecoder* codec = SkImageDecoder::Factory(&stream); variable
43 if (codec) {
45 codec->setDitherImage(dither);
46 codec->decode(&stream, &fBitmap, kN32_SkColorType, SkImageDecoder::kDecodePixels_Mode);
47 SkDELETE(codec); variable
H A Ddownsamplebitmap.cpp179 SkImageDecoder* codec = NULL; variable
182 codec = SkImageDecoder::Factory(&stream);
184 if (codec) {
186 codec->decode(&stream, &fBM, kN32_SkColorType, SkImageDecoder::kDecodePixels_Mode);
187 SkDELETE(codec); variable
H A Dfilterbitmap.cpp201 SkImageDecoder* codec = NULL; variable
204 codec = SkImageDecoder::Factory(&stream);
206 if (codec) {
208 codec->decode(&stream, &fBM, kN32_SkColorType, SkImageDecoder::kDecodePixels_Mode);
209 SkDELETE(codec); variable
H A Dfilterindiabox.cpp111 SkImageDecoder* codec = NULL; local
114 codec = SkImageDecoder::Factory(&stream);
116 if (codec) {
118 codec->decode(&stream, &fBM, kN32_SkColorType, SkImageDecoder::kDecodePixels_Mode);
119 SkDELETE(codec);
/external/skia/include/core/
H A DSkImageDecoder.h174 * to some flavor of decode, it is still at the discretion of the codec
215 // Note: this is a hint, and the codec may choose to ignore this, or only
266 which will allocated a pixelRef. To access the pixel memory, the codec
526 #define DECLARE_DECODER_CREATOR(codec) \
527 SkImageDecoder *Create ## codec ();
531 #define DEFINE_DECODER_CREATOR(codec) \
532 SkImageDecoder *Create ## codec () { \
533 return SkNEW( Sk ## codec ); \
H A DSkImageEncoder.h81 #define DECLARE_ENCODER_CREATOR(codec) \
82 SkImageEncoder *Create ## codec ();
86 #define DEFINE_ENCODER_CREATOR(codec) \
87 SkImageEncoder *Create ## codec () { \
88 return SkNEW( Sk ## codec ); \

Completed in 240 milliseconds

1234567891011>>