HomeSort by relevance Sort by last modified time
    Searched defs:codec (Results 151 - 175 of 406) sorted by null

1 2 3 4 5 67 8 91011>>

  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/
vpxenc.h 29 const struct VpxInterface *codec; member in struct:VpxEncoderConfig
  /external/owasp/sanitizer/lib/commons-codec-1.4/
commons-codec-1.4.jar 
  /prebuilts/devtools/tools/lib/
commons-codec-1.4.jar 
  /prebuilts/eclipse/mavenplugins/tycho/tycho-dependencies-m2repo/org/eclipse/tycho/tycho-bundles-external/0.20.0/eclipse/plugins/
org.apache.commons.codec_1.4.0.v201209201156.jar 
  /prebuilts/tools/common/http-client/
commons-codec-1.4.jar 
  /prebuilts/tools/common/m2/repository/commons-codec/commons-codec/1.4/
commons-codec-1.4.jar 
  /prebuilts/tools/common/m2/repository/org/eclipse/tycho/tycho-bundles-external/0.18.1/eclipse/plugins/
org.apache.commons.codec_1.4.0.v201209201156.jar 
  /development/samples/ApiDemos/src/com/example/android/apis/graphics/
CreateBitmap.java 59 private static Bitmap codec(Bitmap src, Bitmap.CompressFormat format, method in class:CreateBitmap.SampleView
102 mJPEG[i] = codec(mBitmaps[i], Bitmap.CompressFormat.JPEG, 80);
103 mPNG[i] = codec(mBitmaps[i], Bitmap.CompressFormat.PNG, 0);
  /external/apache-http/src/org/apache/commons/codec/language/
Metaphone.java 17 package org.apache.commons.codec.language;
19 import org.apache.commons.codec.EncoderException;
20 import org.apache.commons.codec.StringEncoder;
Soundex.java 17 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/
QuotedPrintableCodec.java 17 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;
31 * Codec for the Quoted-Printable section of <a href="http://www.ietf.org/rfc/rfc1521.txt">RFC 1521 </a>.
47 * does not lend itself well into the byte[] oriented codec framework. Complete the codec once the steamable code
    [all...]
  /external/chromium_org/media/cast/
cast_config.h 56 Codec codec; member in struct:media::cast::AudioSenderConfig
100 int max_number_of_video_buffers_used; // Max value depend on codec.
101 Codec codec; member in struct:media::cast::VideoSenderConfig
150 // Codec used for the compression of signal data.
153 Codec codec; member in struct:media::cast::FrameReceiverConfig
  /external/chromium_org/media/cast/receiver/
audio_decoder_unittest.cc 23 Codec codec; member in struct:media::cast::__anon13240::TestScenario
27 TestScenario(Codec c, int n, int s)
28 : codec(c), num_channels(n), sampling_rate(s) {}
48 GetParam().codec));
59 if (GetParam().codec == CODEC_AUDIO_OPUS) {
96 if (GetParam().codec == CODEC_AUDIO_PCM16) {
102 } else if (GetParam().codec == CODEC_AUDIO_OPUS) {
162 if (GetParam().codec == CODEC_AUDIO_OPUS) {
  /external/chromium_org/media/cdm/ppapi/external_clear_key/
ffmpeg_cdm_audio_decoder.cc 48 codec_context->codec_id = CdmAudioCodecToCodecID(config.codec);
168 AVCodec* codec = avcodec_find_decoder(codec_context_->codec_id); local
169 if (!codec || avcodec_open2(codec_context_.get(), codec, NULL) < 0) {
213 return config.codec != cdm::AudioDecoderConfig::kUnknownAudioCodec &&
304 // Currently Vorbis is the only codec that causes us to drop samples.
ffmpeg_cdm_video_decoder.cc 95 codec_context->codec_id = CdmVideoCodecToCodecID(config.codec);
169 AVCodec* codec = avcodec_find_decoder(codec_context_->codec_id); local
170 if (!codec) {
176 if ((status = avcodec_open2(codec_context_.get(), codec, NULL)) < 0) {
  /external/chromium_org/media/filters/
audio_file_reader.cc 47 // Get the codec context.
50 AVCodecContext* c = format_context->streams[i]->codec;
58 // Get the codec.
80 AVCodec* codec = avcodec_find_decoder(codec_context_->codec_id); local
81 if (codec) {
86 const int result = avcodec_open2(codec_context_, codec, NULL);
88 DLOG(WARNING) << "AudioFileReader::Open() : could not open codec -"
101 DLOG(WARNING) << "AudioFileReader::Open() : could not find codec.";
ffmpeg_audio_decoder.cc 54 DCHECK(s->codec->capabilities & CODEC_CAP_DR1);
294 if (config_.codec() == kCodecAAC &&
340 << " codec: " << config_.codec()
363 AVCodec* codec = avcodec_find_decoder(codec_context_->codec_id); local
364 if (!codec || avcodec_open2(codec_context_.get(), codec, NULL) < 0) {
ffmpeg_video_decoder.cc 217 // When EOS buffer is received and the codec has been flushed.
344 AVCodec* codec = avcodec_find_decoder(codec_context_->codec_id); local
345 if (!codec || avcodec_open2(codec_context_.get(), codec, NULL) < 0) {
  /external/chromium_org/third_party/libjingle/source/talk/media/base/
rtpdataengine.cc 30 #include "talk/media/base/codec.h"
151 LOG(LS_WARNING) << "Failed to SetRecvCodecs because of unknown codec: "
164 "Failed to SetSendCodecs because there is no known codec.";
261 DataCodec codec; local
262 if (!FindCodecById(recv_codecs_, header.payload_type, &codec)) {
330 LOG(LS_WARNING) << "Not sending data because codec is unknown: "
  /external/chromium_org/third_party/libjingle/source/talk/media/webrtc/
webrtcvie.h 93 ViEWrapper(webrtc::ViEBase* base, webrtc::ViECodec* codec,
100 codec_(codec),
112 webrtc::ViECodec* codec() { return codec_.get(); } function in class:cricket::ViEWrapper
  /external/chromium_org/third_party/libvpx/source/libvpx/examples/
twopass_encoder.c 62 fprintf(stderr, "Usage: %s <codec> <width> <height> <infile> <outfile>\n",
133 vpx_codec_ctx_t codec; local
137 if (vpx_codec_enc_init(&codec, encoder->codec_interface(), cfg, 0))
138 die_codec(&codec, "Failed to initialize encoder");
143 get_frame_stats(&codec, raw, frame_count, 1, 0, VPX_DL_GOOD_QUALITY,
148 while (get_frame_stats(&codec, NULL, frame_count, 1, 0,
152 if (vpx_codec_destroy(&codec))
153 die_codec(&codec, "Failed to destroy codec.");
170 vpx_codec_ctx_t codec; local
202 vpx_codec_ctx_t codec; local
    [all...]
vp8_multi_resolution_encoder.c 54 vpx_codec_ctx_t codec[kNumEncoders]; local
91 die("Unsupported codec.");
189 if (vpx_codec_enc_init_multi(&codec[0], encoder->codec_interface(), &cfg[0],
192 die_codec(&codec[0], "Failed to initialize encoder");
197 if (vpx_codec_control(&codec[i], VP8E_SET_CPUUSED, -6))
198 die_codec(&codec[i], "Failed to set cpu_used");
201 if (vpx_codec_control(&codec[i], VP8E_SET_STATIC_THRESHOLD, 1))
202 die_codec(&codec[i], "Failed to set static threshold");
206 if (vpx_codec_control(&codec[0], VP8E_SET_NOISE_SENSITIVITY, i == 0))
207 die_codec(&codec[0], "Failed to set noise_sensitivity")
    [all...]
  /external/chromium_org/third_party/libvpx/source/libvpx/
vpxenc.h 36 const struct VpxInterface *codec; member in struct:VpxEncoderConfig
  /external/chromium_org/third_party/skia/src/images/
SkImageDecoder.cpp 272 SkImageDecoder* codec = SkImageDecoder::Factory(stream); local
274 if (codec) {
275 success = codec->decode(stream, bm, pref, mode);
277 *format = codec->getFormat();
284 delete codec;
  /external/chromium_org/third_party/webrtc/modules/audio_coding/main/acm2/
acm_receiver_unittest.cc 62 ASSERT_EQ(0, ACMCodecDB::Codec(n, &codecs_[n]));
79 CodecInst codec; local
80 ACMCodecDB::Codec(codec_id, &codec);
82 ASSERT_TRUE(acm_->RegisterSendCodec(codec_id, codec.pltype));
86 if (!CodecsEqual(codec, *current_codec))
87 ASSERT_TRUE(acm_->RegisterSendCodec(codec_id, codec.pltype));
90 // Frame setup according to the codec.
91 frame.sample_rate_hz_ = codec.plfreq;
92 frame.samples_per_channel_ = codec.plfreq / 100; // 10 ms
206 CodecInst codec; local
310 CodecInst codec; local
    [all...]

Completed in 1828 milliseconds

1 2 3 4 5 67 8 91011>>