Searched refs:codec (Results 1 - 25 of 439) sorted by relevance

1234567891011>>

/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;
H A Dscoped_vpx_codec.h17 void operator()(vpx_codec_ctx_t* codec);
/external/chromium_org/third_party/webrtc/modules/audio_coding/main/test/
H A Dinitial_delay_unittest.cc68 CodecInst codec; local
73 AudioCodingModule::Codec("L16", &codec, kFsHz[n], kChannels[k]);
74 acm_b_->RegisterReceiveCodec(codec);
85 CodecInst codec; local
86 AudioCodingModule::Codec("L16", &codec, 8000, 1);
87 codec.pacsize = codec.plfreq * 30 / 1000; // 30 ms packets.
88 Run(codec, 1000);
92 CodecInst codec; local
93 AudioCodingModule::Codec("L16", &codec, 1600
99 CodecInst codec; local
106 CodecInst codec; local
113 CodecInst codec; local
120 CodecInst codec; local
127 Run(CodecInst codec, int initial_delay_ms) argument
[all...]
/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/libvorbis/include/vorbis/
H A DMakefile.am5 vorbisinclude_HEADERS = codec.h vorbisfile.h vorbisenc.h
/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;
/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;
/external/chromium_org/third_party/webrtc/modules/audio_coding/main/acm2/
H A Daudio_coding_module.cc38 // Get supported codec parameters with id
39 int AudioCodingModule::Codec(int list_id, CodecInst* codec) { argument
40 // Get the codec settings for the codec with the given list ID
41 return acm2::ACMCodecDB::Codec(list_id, codec);
44 // Get supported codec parameters with name, frequency and number of channels.
46 CodecInst* codec,
51 // Get the id of the codec from the database.
55 // We couldn't find a matching codec, set the parameters to unacceptable
57 codec
45 Codec(const char* payload_name, CodecInst* codec, int sampling_freq_hz, int channels) argument
83 IsCodecValid(const CodecInst& codec) argument
[all...]
/external/skia/src/images/
H A DSkImageEncoder_Factory.cpp14 SkImageEncoder* codec = NULL; local
17 if ((codec = curr->factory()(t)) != NULL) {
18 return codec;
/external/lzma/CPP/7zip/Compress/
H A DCodecExports.cpp56 const CCodecInfo &codec = *g_Codecs[i]; local
57 if (id != codec.Id || encode && !codec.CreateEncoder || !encode && !codec.CreateDecoder)
59 if (!isFilter && codec.IsFilter || isFilter && !codec.IsFilter ||
60 codec.NumInStreams != 1 && !isCoder2 || codec.NumInStreams == 1 && isCoder2)
75 const CCodecInfo &codec = *g_Codecs[index]; local
76 if (!isFilter && codec
122 const CCodecInfo &codec = *g_Codecs[codecIndex]; local
[all...]
/external/chromium_org/third_party/libvpx/source/libvpx/examples/
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
85 die("Unknown input codec.");
89 res = vpx_codec_dec_init(&codec, decoder->codec_interface(), NULL,
92 die_codec(&codec, "Postpro
[all...]
/external/libvpx/libvpx/examples/
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
65 vpx_codec_ctx_t codec; local
87 die("Unknown input codec.");
91 res = vpx_codec_dec_init(&codec, decoder->interface(), NULL,
94 die_codec(&codec, "Postpro
[all...]
/external/chromium_org/third_party/libvpx/source/libvpx/test/
H A Dset_maps.sh31 # Runs set_maps using the codec specified by $1.
34 local codec="$1"
35 local output_file="${VPX_TEST_OUTPUT_DIR}/set_maps_${codec}.ivf"
37 eval "${VPX_TEST_PREFIX}" "${encoder}" "${codec}" "${YUV_RAW_INPUT_WIDTH}" \
H A Dsimple_encoder.sh26 # Runs simple_encoder using the codec specified by $1.
29 local codec="$1"
30 local output_file="${VPX_TEST_OUTPUT_DIR}/simple_encoder_${codec}.ivf"
37 eval "${VPX_TEST_PREFIX}" "${encoder}" "${codec}" "${YUV_RAW_INPUT_WIDTH}" \
H A Dtwopass_encoder.sh26 # Runs twopass_encoder using the codec specified by $1.
29 local codec="$1"
30 local output_file="${VPX_TEST_OUTPUT_DIR}/twopass_encoder_${codec}.ivf"
37 eval "${VPX_TEST_PREFIX}" "${encoder}" "${codec}" "${YUV_RAW_INPUT_WIDTH}" \
/external/apache-http/src/org/apache/commons/codec/net/
H A DStringEncodings.java17 package org.apache.commons.codec.net;
/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/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

Completed in 2902 milliseconds

1234567891011>>