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

1 2 3 4 5 6 7 891011>>

  /development/samples/browseable/MediaRecorder/src/com.example.android.common.media/
MediaCodecWrapper.java 59 // References to the internal buffers managed by the codec. The codec
66 // consume these in the order they were dequeued from the codec.
70 // they were produced by the codec.
80 private MediaCodecWrapper(MediaCodec codec) {
81 mDecoder = codec;
82 codec.start();
83 mInputBuffers = codec.getInputBuffers();
84 mOutputBuffers = codec.getOutputBuffers();
131 * Constructs the {@link MediaCodecWrapper} wrapper object around the video codec
    [all...]
  /device/lge/hammerhead/kernel-headers/sound/
compress_offload.h 35 struct snd_codec codec; member in struct:snd_compr_params
72 __u32 codec; member in struct:snd_compr_codec_caps
  /device/lge/hammerhead/original-kernel-headers/sound/
compress_offload.h 47 * @codec: codec parameters
52 struct snd_codec codec; member in struct:snd_compr_params
114 * struct snd_compr_codec_caps: query capability of codec
115 * @codec: codec for which capability is queried
116 * @num_descriptors: number of codec descriptors
117 * @descriptor: array of codec capability descriptor
120 __u32 codec; member in struct:snd_compr_codec_caps
159 * SNDRV_COMPRESS_GET_CODEC_CAPS: Query capability of a codec
    [all...]
  /external/apache-http/src/org/apache/commons/codec/binary/
Base64.java 17 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;
  /external/apache-http/src/org/apache/commons/codec/language/
DoubleMetaphone.java 17 package org.apache.commons.codec.language;
19 import org.apache.commons.codec.EncoderException;
20 import org.apache.commons.codec.StringEncoder;
    [all...]
  /external/chromium_org/content/renderer/media/crypto/
key_systems.cc 39 // Only audio codec can belong to a "audio/*" container. Both audio and video
50 // Mapping between codec types and their masks.
108 void AddCodecMask(const std::string& codec, uint32 mask);
191 // Build container and codec masks for quick look up.
334 // A container is supported iif at least one codec in that container is
353 const std::string& codec = codecs[i]; local
354 if (codec.empty())
356 CodecMaskMap::const_iterator codec_iter = codec_masks_.find(codec);
357 if (codec_iter == codec_masks_.end()) // Unrecognized codec.
361 if (!(codec_mask & key_system_supported_codecs)) // Unsupported codec
    [all...]
  /external/chromium_org/content/renderer/pepper/
video_decoder_shim.cc 135 if (config.codec() == media::kCodecVP9) {
338 media::VideoCodec codec = media::kUnknownVideoCodec; local
340 codec = media::kCodecH264;
342 codec = media::kCodecVP8;
344 codec = media::kCodecVP9;
345 DCHECK_NE(codec, media::kUnknownVideoCodec);
348 codec,
  /external/chromium_org/media/base/
audio_decoder_config.h 21 // values. When deleting a codec replace it with a dummy value; when adding a
22 // codec, do so at the bottom before kAudioCodecMax, and update the value of
23 // kAudioCodecMax to equal the new codec.
41 // The only acceptable time to add a new codec is if there is production code
42 // that uses said codec in the same CL.
59 AudioDecoderConfig(AudioCodec codec, SampleFormat sample_format,
67 void Initialize(AudioCodec codec, SampleFormat sample_format,
86 AudioCodec codec() const { return codec_; } function in class:media::AudioDecoderConfig
  /external/chromium_org/media/ffmpeg/
ffmpeg_common.cc 63 // Converts an FFmpeg audio codec ID into its corresponding supported codec id.
148 // Converts an FFmpeg video codec ID into its corresponding supported codec id.
280 AudioCodec codec = CodecIDToAudioCodec(codec_context->codec_id); local
289 if (codec == kCodecOpus) {
309 config->Initialize(codec,
319 if (codec != kCodecOpus) {
334 stream->codec, is_encrypted, config, record_stats);
340 codec_context->codec_id = AudioCodecToCodecID(config.codec(),
381 VideoCodec codec = CodecIDToVideoCodec(stream->codec->codec_id); local
    [all...]
  /external/chromium_org/media/formats/mp4/
mp4_stream_parser.cc 193 // TODO(strobe): When codec reconfigurations are supported, detect and send
194 // a codec reconfiguration for fragments using a sample description index
234 AudioCodec codec = kUnknownAudioCodec; local
241 codec = kCodecAAC;
268 codec, sample_format, channel_layout, sample_per_second,
  /external/chromium_org/remoting/client/
software_video_renderer.cc 17 #include "remoting/codec/video_decoder.h"
18 #include "remoting/codec/video_decoder_verbatim.h"
20 #include "remoting/codec/video_decoder_vpx.h"
148 // Initialize decoder based on the selected codec.
149 ChannelConfig::Codec codec = config.video_config().codec; local
150 if (codec == ChannelConfig::CODEC_VERBATIM) {
153 } else if (codec == ChannelConfig::CODEC_VP8) {
155 } else if (codec == ChannelConfig::CODEC_VP9)
    [all...]
  /external/chromium_org/remoting/protocol/
session_config.h 30 enum Codec {
48 ChannelConfig(TransportType transport, int version, Codec codec);
56 Codec codec; member in struct:remoting::protocol::ChannelConfig
160 void EnableVideoCodec(ChannelConfig::Codec codec);
  /external/chromium_org/third_party/libjingle/source/talk/media/base/
rtpdataengine_unittest.cc 263 // Unknown codec;
268 cricket::DataCodec codec; local
269 codec.id = 103;
270 codec.name = cricket::kGoogleRtpDataCodecName;
272 codecs.push_back(codec);
332 cricket::DataCodec codec; local
333 codec.id = 103;
334 codec.name = cricket::kGoogleRtpDataCodecName;
336 codecs.push_back(codec);
379 cricket::DataCodec codec; local
444 cricket::DataCodec codec; local
    [all...]
  /external/chromium_org/third_party/libjingle/source/talk/media/webrtc/
webrtcvideoengine2.h 115 const VideoCodec& codec,
120 const VideoCodec& codec,
123 virtual void* CreateVideoEncoderSettings(const VideoCodec& codec,
126 virtual void DestroyVideoEncoderSettings(const VideoCodec& codec,
129 virtual bool SupportsCodec(const cricket::VideoCodec& codec);
284 VideoCodec codec; member in struct:cricket::WebRtcVideoChannel2::VideoCodecSettings
303 void SetCodec(const VideoCodecSettings& codec);
337 void SetCodecAndOptions(const VideoCodecSettings& codec,
341 // When |override_max| is false constrain width/height to codec dimensions.
webrtcvoe.h 105 webrtc::VoECodec* codec,
118 codec_(codec),
133 webrtc::VoECodec* codec() const { return codec_.get(); } function in class:cricket::VoEWrapper
  /external/chromium_org/third_party/libvpx/source/libvpx/examples/
vpx_temporal_svc_encoder.c 442 vpx_codec_ctx_t codec; local
475 die("Unsupported codec.");
578 // Initialize codec.
579 if (vpx_codec_enc_init(&codec, encoder->codec_interface(), &cfg, 0))
580 die_codec(&codec, "Failed to initialize encoder");
583 vpx_codec_control(&codec, VP8E_SET_CPUUSED, -speed);
584 vpx_codec_control(&codec, VP8E_SET_NOISE_SENSITIVITY, kDenoiserOnYOnly);
586 vpx_codec_control(&codec, VP8E_SET_CPUUSED, speed);
587 vpx_codec_control(&codec, VP9E_SET_AQ_MODE, 3);
588 vpx_codec_control(&codec, VP9E_SET_FRAME_PERIODIC_BOOST, 0)
    [all...]
  /external/chromium_org/third_party/webrtc/examples/android/media_demo/jni/
voice_engine_jni.cc 58 codec(webrtc::VoECodec::GetInterface(ve)),
67 CHECK(codec != NULL, "Failed to acquire codec interface");
81 ReleaseSubApi(codec);
119 webrtc::VoECodec* const codec; member in class:__anon20359::VoiceEngineData::webrtc
317 return voe_data->codec->NumOfCodecs();
322 webrtc::CodecInst* codec = new webrtc::CodecInst(); local
323 CHECK(voe_data->codec->GetCodec(index, *codec) == 0,
328 jni->NewObject(j_codec_class, j_codec_ctor, jlongFromPointer(codec));
    [all...]
  /external/chromium_org/third_party/webrtc/modules/audio_coding/main/test/
delay_test.cc 31 DEFINE_string(codec, "isac", "Codec Name");
57 CodecSettings codec; member in struct:webrtc::__anon20462::TestSettings
105 EXPECT_EQ(0, acm_b_->Codec(n, &my_codec_param)) <<
106 "Failed to get codec.";
117 "Couldn't register receive codec.\n";
138 "Codec: %s, %d kHz, %d channel(s)\n"
141 ++test_cntr_, config.codec.name, config.codec.sample_rate_hz,
142 config.codec.num_channels, config.acm.dtx ? "on" : "off"
    [all...]
insert_packet_with_timing.cc 24 // Codec.
25 DEFINE_string(codec, "opus", "Codec Name");
27 DEFINE_int32(codec_channels, 1, "Number of channels of the codec.");
91 CodecInst codec; local
92 ASSERT_EQ(0, AudioCodingModule::Codec(FLAGS_codec.c_str(), &codec,
96 ASSERT_EQ(0, send_acm_->RegisterSendCodec(codec));
97 ASSERT_EQ(0, receive_acm_->RegisterReceiveCodec(codec));
99 // Set codec-dependent parameters
    [all...]
  /external/chromium_org/third_party/webrtc/modules/video_coding/main/test/
quality_modes_test.cc 191 VideoCodec codec;//both send and receive local
197 _vcm->Codec(i, &codec);
198 if(strncmp(codec.plName,"VP8" , 5) == 0)
200 codec.startBitrate = (int)_bitRate;
201 codec.maxFramerate = (uint8_t) _frameRate;
202 codec.width = (uint16_t)_width;
203 codec.height = (uint16_t)_height;
204 codec.codecSpecific.VP8.frameDroppingOn = false;
206 // Will also set and init the desired codec
    [all...]
  /external/chromium_org/third_party/webrtc/test/
call_test.cc 103 VideoCodec codec = local
105 config.codecs.push_back(codec);
  /external/chromium_org/third_party/webrtc/video/
bitrate_estimator_tests.cc 155 VideoCodec codec = local
157 receive_config_.codecs.push_back(codec);
replay.cc 122 // Flag for video codec.
123 DEFINE_string(codec, "VP8", "Video codec");
124 static std::string Codec() { return static_cast<std::string>(FLAGS_codec); }
213 encoder_settings.payload_name = flags::Codec();
215 VideoCodec codec = test::CreateDecoderVideoCodec(encoder_settings); local
216 receive_config.codecs.push_back(codec);
  /external/kernel-headers/original/uapi/sound/
compress_offload.h 47 * @codec: codec parameters
52 struct snd_codec codec; member in struct:snd_compr_params
113 * struct snd_compr_codec_caps: query capability of codec
114 * @codec: codec for which capability is queried
115 * @num_descriptors: number of codec descriptors
116 * @descriptor: array of codec capability descriptor
119 __u32 codec; member in struct:snd_compr_codec_caps
148 * SNDRV_COMPRESS_GET_CODEC_CAPS: Query capability of a codec
    [all...]
  /external/libvpx/libvpx/examples/
decode_with_partial_drops.c 16 // error recovery features of the codec.
197 vpx_codec_ctx_t codec; local
243 /* Initialize codec */
245 res = vpx_codec_dec_init(&codec, interface, &dec_cfg, flags);
247 die_codec(&codec, "Failed to initialize decoder");
303 if(vpx_codec_decode(&codec, frame, frame_sz, NULL, 0))
304 die_codec(&codec, "Failed to decode frame");
307 while((img = vpx_codec_get_frame(&codec, &iter))) {
322 if(vpx_codec_destroy(&codec))
323 die_codec(&codec, "Failed to destroy codec")
    [all...]

Completed in 1459 milliseconds

1 2 3 4 5 6 7 891011>>