/cts/tests/tests/net/src/android/net/rtp/cts/ |
AudioCodecTest.java | 23 private void assertEquals(AudioCodec codec, int type, String rtpmap, String fmtp) { 25 assertEquals(codec.type, type); 27 assertTrue(codec.type >= 96 && codec.type <= 127); 29 assertEquals(codec.rtpmap.compareToIgnoreCase(rtpmap), 0); 30 assertEquals(codec.fmtp, fmtp); 68 for (AudioCodec codec : codecs) { 69 assertFalse(types[codec.type]); 70 types[codec.type] = true;
|
/external/apache-http/src/org/apache/commons/codec/ |
StringEncoderComparator.java | 17 package org.apache.commons.codec;
|
/external/apache-http/src/org/apache/commons/codec/language/ |
RefinedSoundex.java | 17 package org.apache.commons.codec.language; 19 import org.apache.commons.codec.EncoderException; 20 import org.apache.commons.codec.StringEncoder;
|
SoundexUtils.java | 17 package org.apache.commons.codec.language; 19 import org.apache.commons.codec.EncoderException; 20 import org.apache.commons.codec.StringEncoder;
|
/external/chromium_org/chromecast/media/cma/ipc_streamer/ |
audio_decoder_config_marshaller.cc | 22 CHECK(msg->WritePod(config.codec())); 35 ::media::AudioCodec codec; local 43 CHECK(msg->ReadPod(&codec)); 50 CHECK_GE(codec, ::media::kUnknownAudioCodec); 51 CHECK_LE(codec, ::media::kAudioCodecMax); 63 codec, sample_format,
|
/external/chromium_org/third_party/libvpx/source/libvpx/examples/ |
postproc.c | 18 // You must inform the codec that you might request postprocessing at 20 // flag to `vpx_codec_dec_init`. If the codec does not support 23 // the codec does not provide support. 30 // special value 0 indicates that the codec should take as long as 32 // codec 15ms (15000us) to return a frame. Remember that this is a soft 33 // deadline, and the codec may exceed it doing its regular processing. In 36 // Codec Specific Postprocessing Controls 63 vpx_codec_ctx_t codec; local 85 die("Unknown input codec."); 89 res = vpx_codec_dec_init(&codec, decoder->codec_interface(), NULL [all...] |
simple_decoder.c | 34 // Initializing The Codec 69 // The `vpx_codec_destroy` call frees any memory allocated by the codec. 99 vpx_codec_ctx_t codec; local 120 die("Unknown input codec."); 124 if (vpx_codec_dec_init(&codec, decoder->codec_interface(), NULL, 0)) 125 die_codec(&codec, "Failed to initialize decoder."); 133 if (vpx_codec_decode(&codec, frame, (unsigned int)frame_size, NULL, 0)) 134 die_codec(&codec, "Failed to decode frame."); 136 while ((img = vpx_codec_get_frame(&codec, &iter)) != NULL) { 143 if (vpx_codec_destroy(&codec)) [all...] |
/external/chromium_org/third_party/skia/gm/ |
cmykjpeg.cpp | 36 SkImageDecoder* codec = SkImageDecoder::Factory(&stream); variable 37 if (codec) { 39 codec->setDitherImage(dither); 40 codec->decode(&stream, &fBitmap, kN32_SkColorType, SkImageDecoder::kDecodePixels_Mode); 41 SkDELETE(codec); variable
|
/external/chromium_org/third_party/skia/samplecode/ |
SampleIdentityScale.cpp | 27 SkImageDecoder* codec = NULL; local 30 codec = SkImageDecoder::Factory(&stream); 32 if (codec) { 34 codec->decode(&stream, &fBM, kN32_SkColorType, SkImageDecoder::kDecodePixels_Mode); 35 SkDELETE(codec);
|
SampleSubpixelTranslate.cpp | 30 SkImageDecoder* codec = NULL; local 33 codec = SkImageDecoder::Factory(&stream); 35 if (codec) { 37 codec->decode(&stream, &fBM, kN32_SkColorType, SkImageDecoder::kDecodePixels_Mode); 38 SkDELETE(codec);
|
/external/chromium_org/third_party/webrtc/modules/media_file/source/ |
media_file_unittest.cc | 54 webrtc::CodecInst codec = {0, "L16", 16000, kPayloadSize, 1}; local 58 outfile.c_str(), webrtc::kFileFormatWavFile, codec));
|
/external/chromium_org/third_party/webrtc/video_engine/test/auto_test/primitives/ |
general_primitives.cc | 106 webrtc::VideoCodec codec; local 107 memset(&codec, 0, sizeof(webrtc::VideoCodec)); 108 if (codec_interface->GetCodec(i, codec) != 0) { 111 if (codec.codecType == of_type) { 113 *result = codec;
|
/external/chromium_org/third_party/webrtc/video_engine/test/libvietest/include/ |
tb_interfaces.h | 42 webrtc::ViECodec* codec; member in class:TbInterfaces
|
/external/libvpx/libvpx/examples/ |
postproc.c | 18 // You must inform the codec that you might request postprocessing at 20 // flag to `vpx_codec_dec_init`. If the codec does not support 23 // the codec does not provide support. 30 // special value 0 indicates that the codec should take as long as 32 // codec 15ms (15000us) to return a frame. Remember that this is a soft 33 // deadline, and the codec may exceed it doing its regular processing. In 36 // Codec Specific Postprocessing Controls 65 vpx_codec_ctx_t codec; local 87 die("Unknown input codec."); 91 res = vpx_codec_dec_init(&codec, decoder->interface(), NULL [all...] |
simple_decoder.c | 36 // Initializing The Codec 71 // The `vpx_codec_destroy` call frees any memory allocated by the codec. 103 vpx_codec_ctx_t codec; local 124 die("Unknown input codec."); 128 if (vpx_codec_dec_init(&codec, decoder->interface(), NULL, 0)) 129 die_codec(&codec, "Failed to initialize decoder."); 137 if (vpx_codec_decode(&codec, frame, (unsigned int)frame_size, NULL, 0)) 138 die_codec(&codec, "Failed to decode frame."); 140 while ((img = vpx_codec_get_frame(&codec, &iter)) != NULL) { 147 if (vpx_codec_destroy(&codec)) [all...] |
/external/skia/gm/ |
cmykjpeg.cpp | 42 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
|
/external/skia/samplecode/ |
SampleSubpixelTranslate.cpp | 34 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);
|
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/examples/ |
postproc.c | 18 // You must inform the codec that you might request postprocessing at 20 // flag to `vpx_codec_dec_init`. If the codec does not support 23 // the codec does not provide support. 30 // special value 0 indicates that the codec should take as long as 32 // codec 15ms (15000us) to return a frame. Remember that this is a soft 33 // deadline, and the codec may exceed it doing its regular processing. In 36 // Codec Specific Postprocessing Controls 65 vpx_codec_ctx_t codec; local 87 die("Unknown input codec."); 91 res = vpx_codec_dec_init(&codec, decoder->interface(), NULL [all...] |
simple_decoder.c | 36 // Initializing The Codec 71 // The `vpx_codec_destroy` call frees any memory allocated by the codec. 103 vpx_codec_ctx_t codec; local 124 die("Unknown input codec."); 128 if (vpx_codec_dec_init(&codec, decoder->interface(), NULL, 0)) 129 die_codec(&codec, "Failed to initialize decoder."); 137 if (vpx_codec_decode(&codec, frame, (unsigned int)frame_size, NULL, 0)) 138 die_codec(&codec, "Failed to decode frame."); 140 while ((img = vpx_codec_get_frame(&codec, &iter)) != NULL) { 147 if (vpx_codec_destroy(&codec)) [all...] |
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/encodings/ |
big5.py | 2 # big5.py: Python Unicode Codec for BIG5 10 codec = _codecs_tw.getcodec('big5') variable 12 class Codec(codecs.Codec): 13 encode = codec.encode 14 decode = codec.decode 18 codec = codec variable in class:IncrementalEncoder 22 codec = codec variable in class:IncrementalDecoder 25 codec = codec variable in class:StreamReader 28 codec = codec variable in class:StreamWriter [all...] |
big5hkscs.py | 2 # big5hkscs.py: Python Unicode Codec for BIG5HKSCS 10 codec = _codecs_hk.getcodec('big5hkscs') variable 12 class Codec(codecs.Codec): 13 encode = codec.encode 14 decode = codec.decode 18 codec = codec variable in class:IncrementalEncoder 22 codec = codec variable in class:IncrementalDecoder 25 codec = codec variable in class:StreamReader 28 codec = codec variable in class:StreamWriter [all...] |
cp932.py | 2 # cp932.py: Python Unicode Codec for CP932 10 codec = _codecs_jp.getcodec('cp932') variable 12 class Codec(codecs.Codec): 13 encode = codec.encode 14 decode = codec.decode 18 codec = codec variable in class:IncrementalEncoder 22 codec = codec variable in class:IncrementalDecoder 25 codec = codec variable in class:StreamReader 28 codec = codec variable in class:StreamWriter [all...] |
cp949.py | 2 # cp949.py: Python Unicode Codec for CP949 10 codec = _codecs_kr.getcodec('cp949') variable 12 class Codec(codecs.Codec): 13 encode = codec.encode 14 decode = codec.decode 18 codec = codec variable in class:IncrementalEncoder 22 codec = codec variable in class:IncrementalDecoder 25 codec = codec variable in class:StreamReader 28 codec = codec variable in class:StreamWriter [all...] |
cp950.py | 2 # cp950.py: Python Unicode Codec for CP950 10 codec = _codecs_tw.getcodec('cp950') variable 12 class Codec(codecs.Codec): 13 encode = codec.encode 14 decode = codec.decode 18 codec = codec variable in class:IncrementalEncoder 22 codec = codec variable in class:IncrementalDecoder 25 codec = codec variable in class:StreamReader 28 codec = codec variable in class:StreamWriter [all...] |
euc_jis_2004.py | 2 # euc_jis_2004.py: Python Unicode Codec for EUC_JIS_2004 10 codec = _codecs_jp.getcodec('euc_jis_2004') variable 12 class Codec(codecs.Codec): 13 encode = codec.encode 14 decode = codec.decode 18 codec = codec variable in class:IncrementalEncoder 22 codec = codec variable in class:IncrementalDecoder 25 codec = codec variable in class:StreamReader 28 codec = codec variable in class:StreamWriter [all...] |