Searched defs:codec (Results 26 - 50 of 148) sorted by relevance

123456

/external/webrtc/webrtc/modules/audio_coding/acm2/
H A Daudio_coding_module.cc45 int AudioCodingModule::Codec(int list_id, CodecInst* codec) { argument
52 *codec = *ci;
57 CodecInst* codec,
63 *codec = *ci;
66 // We couldn't find a matching codec, so set the parameters to unacceptable
68 codec->plname[0] = '\0';
69 codec->pltype = -1;
70 codec->pacsize = 0;
71 codec->rate = 0;
72 codec
56 Codec(const char* payload_name, CodecInst* codec, int sampling_freq_hz, size_t channels) argument
90 IsCodecValid(const CodecInst& codec) argument
[all...]
/external/webrtc/webrtc/voice_engine/test/auto_test/fixtures/
H A Dbefore_streaming_fixture.cc67 webrtc::CodecInst codec; local
68 codec.channels = 1;
69 codec.pacsize = 160;
70 codec.plfreq = 8000;
71 codec.pltype = 0;
72 codec.rate = 64000;
74 _snprintf(codec.plname, RTP_PAYLOAD_NAME_SIZE - 1, "PCMU");
76 snprintf(codec.plname, RTP_PAYLOAD_NAME_SIZE, "PCMU");
78 voe_codec_->SetSendCodec(channel_, codec);
/external/webrtc/webrtc/voice_engine/test/auto_test/
H A Dvoe_cpu_test.cc50 VoECodec* codec = _mgr.CodecPtr(); local
73 CHECK(codec->SetRecPayloadType(channel, isac));
74 CHECK(codec->SetSendCodec(channel, isac));
82 CHECK(codec->SetVADStatus(channel, true));
/external/apache-http/src/org/apache/commons/codec/binary/
H A DHex.java17 package org.apache.commons.codec.binary;
19 import org.apache.commons.codec.BinaryDecoder;
20 import org.apache.commons.codec.BinaryEncoder;
21 import org.apache.commons.codec.DecoderException;
22 import org.apache.commons.codec.EncoderException;
H A DBinaryCodec.java17 package org.apache.commons.codec.binary;
19 import org.apache.commons.codec.BinaryDecoder;
20 import org.apache.commons.codec.BinaryEncoder;
21 import org.apache.commons.codec.DecoderException;
22 import org.apache.commons.codec.EncoderException;
83 * @see org.apache.commons.codec.BinaryEncoder#encode(byte[])
97 * @see org.apache.commons.codec.Encoder#encode(java.lang.Object)
114 * @see org.apache.commons.codec.Decoder#decode(java.lang.Object)
138 * @see org.apache.commons.codec.Decoder#decode(Object)
150 * @see org.apache.commons.codec
[all...]
/external/apache-http/src/org/apache/commons/codec/language/
H A DRefinedSoundex.java17 package org.apache.commons.codec.language;
19 import org.apache.commons.codec.EncoderException;
20 import org.apache.commons.codec.StringEncoder;
H A DSoundex.java17 package org.apache.commons.codec.language;
19 import org.apache.commons.codec.EncoderException;
20 import org.apache.commons.codec.StringEncoder;
/external/apache-http/src/org/apache/commons/codec/net/
H A DURLCodec.java17 package org.apache.commons.codec.net;
23 import org.apache.commons.codec.BinaryDecoder;
24 import org.apache.commons.codec.BinaryEncoder;
25 import org.apache.commons.codec.DecoderException;
26 import org.apache.commons.codec.EncoderException;
27 import org.apache.commons.codec.StringDecoder;
28 import org.apache.commons.codec.StringEncoder;
40 * This codec is meant to be a replacement for standard Java classes
H A DQCodec.java17 package org.apache.commons.codec.net;
22 import org.apache.commons.codec.DecoderException;
23 import org.apache.commons.codec.EncoderException;
24 import org.apache.commons.codec.StringDecoder;
25 import org.apache.commons.codec.StringEncoder;
259 + " cannot be encoded using Q codec");
283 + " cannot be decoded using Q codec");
H A DQuotedPrintableCodec.java17 package org.apache.commons.codec.net;
22 import org.apache.commons.codec.BinaryDecoder;
23 import org.apache.commons.codec.BinaryEncoder;
24 import org.apache.commons.codec.DecoderException;
25 import org.apache.commons.codec.EncoderException;
26 import org.apache.commons.codec.StringDecoder;
27 import org.apache.commons.codec.StringEncoder;
47 * does not lend itself well into the byte[] oriented codec framework. Complete the codec once the steamable codec
[all...]
/external/libvpx/libvpx/examples/
H A Ddecode_with_drops.c16 // features of the codec.
76 vpx_codec_ctx_t codec; local
104 if (!decoder) die("Unknown input codec.");
108 if (vpx_codec_dec_init(&codec, decoder->codec_interface(), NULL, 0))
109 die_codec(&codec, "Failed to initialize decoder.");
118 if (vpx_codec_decode(&codec, frame, (unsigned int)frame_size, NULL, 0))
119 die_codec(&codec, "Failed to decode frame.");
129 while ((img = vpx_codec_get_frame(&codec, &iter)) != NULL)
139 if (vpx_codec_destroy(&codec)) die_codec(&codec, "Faile
[all...]
H A Dpostproc.c18 // 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
63 vpx_codec_ctx_t codec; local
82 if (!decoder) die("Unknown input codec.");
86 res = vpx_codec_dec_init(&codec, decoder->codec_interface(), NULL,
89 die_codec(&codec, "Postpro
[all...]
H A Ddecode_to_md5.c81 vpx_codec_ctx_t codec; local
99 if (!decoder) die("Unknown input codec.");
103 if (vpx_codec_dec_init(&codec, decoder->codec_interface(), NULL, 0))
104 die_codec(&codec, "Failed to initialize decoder");
112 if (vpx_codec_decode(&codec, frame, (unsigned int)frame_size, NULL, 0))
113 die_codec(&codec, "Failed to decode frame");
115 while ((img = vpx_codec_get_frame(&codec, &iter)) != NULL) {
126 if (vpx_codec_destroy(&codec)) die_codec(&codec, "Failed to destroy codec
[all...]
H A Dvp8cx_set_ref.c67 static int encode_frame(vpx_codec_ctx_t *codec, vpx_image_t *img, argument
73 vpx_codec_encode(codec, img, frame_index, 1, 0, VPX_DL_GOOD_QUALITY);
74 if (res != VPX_CODEC_OK) die_codec(codec, "Failed to encode frame");
76 while ((pkt = vpx_codec_get_cx_data(codec, &iter)) != NULL) {
84 die_codec(codec, "Failed to write compressed frame");
97 vpx_codec_ctx_t codec; local
109 vp8_zero(codec);
119 if (!encoder) die("Unsupported codec.");
143 if (res) die_codec(&codec, "Failed to get default codec confi
[all...]
H A Dvp9_lossless_encoder.c32 static int encode_frame(vpx_codec_ctx_t *codec, vpx_image_t *img, argument
38 vpx_codec_encode(codec, img, frame_index, 1, flags, VPX_DL_GOOD_QUALITY);
39 if (res != VPX_CODEC_OK) die_codec(codec, "Failed to encode frame");
41 while ((pkt = vpx_codec_get_cx_data(codec, &iter)) != NULL) {
49 die_codec(codec, "Failed to write compressed frame");
61 vpx_codec_ctx_t codec; local
78 if (!encoder) die("Unsupported codec.");
99 if (res) die_codec(&codec, "Failed to get default codec config.");
112 if (vpx_codec_enc_init(&codec, encode
[all...]
/external/protobuf/csharp/src/Google.Protobuf.Test/
H A DFieldCodecTest.cs68 public void RoundTripWithTag(ICodecTestData codec) argument
70 codec.TestRoundTripWithTag();
74 public void RoundTripRaw(ICodecTestData codec) argument
76 codec.TestRoundTripRaw();
80 public void CalculateSize(ICodecTestData codec) argument
82 codec.TestCalculateSizeWithTag();
86 public void DefaultValue(ICodecTestData codec) argument
88 codec.TestDefaultValue();
92 public void FixedSize(ICodecTestData codec) argument
94 codec
111 private readonly FieldCodec<T> codec; field in class:Google.Protobuf.FieldCodecTest.FieldCodecTestData
115 FieldCodecTestData(FieldCodec<T> codec, T sampleValue, string name) argument
[all...]
/external/skia/bench/
H A DCodecBench.cpp29 std::unique_ptr<SkCodec> codec(SkCodec::NewFromData(fData));
30 SkASSERT(codec);
43 std::unique_ptr<SkCodec> codec(SkCodec::NewFromData(fData));
45 fInfo = codec->getInfo().makeColorType(fColorType)
53 std::unique_ptr<SkCodec> codec; local
62 codec.reset(SkCodec::NewFromData(fData));
66 codec->getPixels(fInfo, fPixelStorage.get(), fInfo.minRowBytes(),
/external/skia/src/codec/
H A DSkCodecImageGenerator.cpp12 SkCodec* codec = SkCodec::NewFromData(data); local
13 if (nullptr == codec) {
17 return std::unique_ptr<SkImageGenerator>(new SkCodecImageGenerator(codec, data));
28 SkCodecImageGenerator::SkCodecImageGenerator(SkCodec* codec, sk_sp<SkData> data) argument
29 : INHERITED(make_premul(codec->getInfo()))
30 , fCodec(codec)
/external/webrtc/webrtc/modules/audio_coding/neteq/tools/
H A Dneteq_external_decoder_test.cc20 NetEqExternalDecoderTest::NetEqExternalDecoderTest(NetEqDecoder codec, argument
22 : codec_(codec),
/external/webrtc/webrtc/modules/media_file/
H A Dmedia_file_unittest.cc64 webrtc::CodecInst codec = { local
70 outfile.c_str(), webrtc::kFileFormatWavFile, codec));
/external/webrtc/webrtc/modules/video_coding/
H A Dpacket.h44 VideoCodecType codec; member in class:webrtc::VCMPacket
/external/webrtc/webrtc/tools/e2e_quality/audio/
H A Daudio_e2e_harness.cc27 DEFINE_string(codec, "ISAC", "codec name");
28 DEFINE_int32(rate, 16000, "codec sample rate in Hz");
40 VoECodec* codec = VoECodec::GetInterface(voe); local
41 ASSERT_TRUE(codec != NULL);
59 for (int i = 0; i < codec->NumOfCodecs(); i++) {
60 ASSERT_EQ(0, codec->GetCodec(i, codec_params));
68 ASSERT_EQ(0, codec->SetSendCodec(channel, codec_params));
/external/webrtc/webrtc/video/
H A Dvideo_decoder_unittest.cc73 VideoCodec codec = {}; local
74 fallback_wrapper_.InitDecode(&codec, 2);
80 VideoCodec codec = {}; local
81 fallback_wrapper_.InitDecode(&codec, 2);
108 VideoCodec codec = {}; local
109 fallback_wrapper_.InitDecode(&codec, 2);
123 VideoCodec codec = {}; local
124 fallback_wrapper_.InitDecode(&codec, 2);
138 VideoCodec codec = {}; local
139 fallback_wrapper_.InitDecode(&codec,
164 VideoCodec codec = {}; local
178 VideoCodec codec = {}; local
[all...]
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.apache.commons.codec_1.3.0.v20100518-1140.jar ... about_files/ org/ org/apache/ org/apache/commons/ org/apache/commons/codec/ org/apache/commons/codec/binary/ org/apache/commons/codec/digest
/external/robolectric/v1/lib/main/
H A Dcommons-codec-1.6.jar ... MF org/ org/apache/ org/apache/commons/ org/apache/commons/codec/ org/apache/commons/codec/binary/ org/apache/commons/codec/digest ...

Completed in 499 milliseconds

123456