Searched defs:codec (Results 1 - 25 of 229) sorted by relevance

12345678910

/external/chromium_org/remoting/codec/
H A Dscoped_vpx_codec.cc5 #include "remoting/codec/scoped_vpx_codec.h"
15 void VpxCodecDeleter::operator()(vpx_codec_ctx_t* codec) { argument
16 if (codec) {
17 vpx_codec_err_t ret = vpx_codec_destroy(codec);
18 CHECK_EQ(ret, VPX_CODEC_OK) << "Failed to destroy codec";
19 delete codec;
/external/chromium_org/third_party/skia/src/images/
H A DSkImageEncoder_Factory.cpp14 SkImageEncoder* codec = NULL; local
17 if ((codec = curr->factory()(t)) != NULL) {
18 return codec;
H A DSkImageDecoder_FactoryRegistrar.cpp22 SkImageDecoder* codec = NULL; local
25 codec = curr->factory()(stream);
34 SkDELETE(codec);
38 if (codec) {
39 return codec;
/external/skia/src/images/
H A DSkImageEncoder_Factory.cpp14 SkImageEncoder* codec = NULL; local
17 if ((codec = curr->factory()(t)) != NULL) {
18 return codec;
H A DSkImageDecoder_FactoryRegistrar.cpp22 SkImageDecoder* codec = NULL; local
25 codec = curr->factory()(stream);
34 SkDELETE(codec);
38 if (codec) {
39 return codec;
/external/apache-http/src/org/apache/commons/codec/
H A DBinaryDecoder.java17 package org.apache.commons.codec;
H A DBinaryEncoder.java17 package org.apache.commons.codec;
H A DDecoder.java17 package org.apache.commons.codec;
25 * implementation in the codec package.</p>
27 * <p>One of the two interfaces at the center of the codec package.</p>
H A DDecoderException.java17 package org.apache.commons.codec;
H A DEncoder.java17 package org.apache.commons.codec;
23 * generic Object to any Encoder implementation in the codec package.</p>
H A DEncoderException.java17 package org.apache.commons.codec;
H A DStringDecoder.java17 package org.apache.commons.codec;
H A DStringEncoder.java17 package org.apache.commons.codec;
H A DStringEncoderComparator.java17 package org.apache.commons.codec;
/external/apache-http/src/org/apache/commons/codec/net/
H A DStringEncodings.java17 package org.apache.commons.codec.net;
H A DBCodec.java17 package org.apache.commons.codec.net;
20 import org.apache.commons.codec.DecoderException;
21 import org.apache.commons.codec.EncoderException;
22 import org.apache.commons.codec.StringDecoder;
23 import org.apache.commons.codec.StringEncoder;
24 import org.apache.commons.codec.binary.Base64;
H A DRFC1522Codec.java17 package org.apache.commons.codec.net;
21 import org.apache.commons.codec.DecoderException;
22 import org.apache.commons.codec.EncoderException;
126 throw new DecoderException("This codec cannot decode " +
137 * Returns the codec name (referred to as encoding in the RFC 1522)
139 * @return name of the codec
/external/chromium_org/third_party/webrtc/test/
H A Dencoder_settings.cc58 VideoCodec codec; local
59 memset(&codec, 0, sizeof(codec));
61 codec.plType = encoder_settings.payload_type;
62 strcpy(codec.plName, encoder_settings.payload_name.c_str());
64 codec.codecType = kVideoCodecVP8;
66 codec.codecType = kVideoCodecH264;
68 codec.codecType = kVideoCodecGeneric;
71 if (codec.codecType == kVideoCodecVP8) {
72 codec
[all...]
/external/chromium_org/third_party/webrtc/voice_engine/test/auto_test/fixtures/
H A Dbefore_streaming_fixture.cc63 webrtc::CodecInst codec; local
64 codec.channels = 1;
65 codec.pacsize = 160;
66 codec.plfreq = 8000;
67 codec.pltype = 0;
68 codec.rate = 64000;
70 _snprintf(codec.plname, RTP_PAYLOAD_NAME_SIZE - 1, "PCMU");
72 snprintf(codec.plname, RTP_PAYLOAD_NAME_SIZE, "PCMU");
74 voe_codec_->SetSendCodec(channel_, codec);
/external/chromium_org/tools/relocation_packer/src/
H A Ddelta_encoder_unittest.cc41 RelocationDeltaCodec codec; local
44 codec.Encode(relocations, &packed);
52 codec.Encode(relocations, &packed);
65 codec.Encode(relocations, &packed);
86 codec.Encode(relocations, &packed);
112 RelocationDeltaCodec codec; local
113 codec.Decode(packed, &relocations);
136 codec.Decode(packed, &relocations);
H A Dpacker.cc25 RelocationRunLengthCodec codec; local
26 codec.Encode(relocations, &packed_words);
64 RelocationRunLengthCodec codec; local
65 codec.Decode(packed_words, relocations);
75 RelocationDeltaCodec codec; local
76 codec.Encode(relocations, &packed_words);
120 RelocationDeltaCodec codec; local
121 codec.Decode(packed_words, relocations);
H A Drun_length_encoder_unittest.cc35 RelocationRunLengthCodec codec; local
38 codec.Encode(relocations, &packed);
46 codec.Encode(relocations, &packed);
54 codec.Encode(relocations, &packed);
74 codec.Encode(relocations, &packed);
93 RelocationRunLengthCodec codec; local
94 codec.Decode(packed, &relocations);
110 codec.Decode(packed, &relocations);
/external/okhttp/okhttp-tests/src/test/java/com/squareup/okhttp/internal/spdy/
H A DHuffmanTest.java50 private static void assertRoundTrip(Huffman.Codec codec, byte[] buf) throws IOException { argument
54 codec.encode(buf, dos);
55 assertEquals(baos.size(), codec.encodedLength(buf));
57 byte[] decodedBytes = codec.decode(baos.toByteArray());
/external/apache-http/src/org/apache/commons/codec/language/
H A DSoundexUtils.java17 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/
H A Daudio_decoder_config_marshaller.cc22 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,

Completed in 2023 milliseconds

12345678910