Searched defs:codec (Results 151 - 175 of 229) sorted by relevance

12345678910

/external/apache-http/src/org/apache/commons/codec/language/
H A DDoubleMetaphone.java17 package org.apache.commons.codec.language;
19 import org.apache.commons.codec.EncoderException;
20 import org.apache.commons.codec.StringEncoder;
/external/bluetooth/bluedroid/main/
H A Dbte_main.c536 ** Parameters handle: codec related handle for SCO: sco cb idx, unused for
537 ** codec: BTA_AG_CODEC_MSBC, BTA_AG_CODEC_CSVD or FM codec
538 ** state: codec state, eg. BTA_AG_CO_AUD_STATE_SETUP
544 int set_audio_state(UINT16 handle, UINT16 codec, UINT8 state, void *param) argument
549 APPL_TRACE_API("set_audio_state(handle: %d, codec: 0x%x, state: %d)", handle,
550 codec, state);
557 p_msg->audio.peer_codec = codec;
/external/chromium_org/components/bookmarks/browser/
H A Dbookmark_codec_unittest.cc162 bool Decode(BookmarkCodec* codec, argument
166 bool result = codec->Decode(AsMutable(model->bookmark_bar_node()),
172 AsMutable(model->root_node())->SetMetaInfoMap(codec->model_meta_info_map());
174 ->set_sync_transaction_version(codec->model_sync_transaction_version());
441 // Verifies that we can still decode the old codec format after changing the
/external/chromium_org/content/renderer/media/crypto/
H A Dkey_systems.cc39 // 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
459 AddCodecMask(const std::string& codec, uint32 mask) argument
530 AddCodecMask(const std::string& codec, uint32 mask) argument
[all...]
/external/chromium_org/content/renderer/pepper/
H A Dvideo_decoder_shim.cc135 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/formats/mp4/
H A Dmp4_stream_parser.cc193 // 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/third_party/libjingle/source/talk/media/base/
H A Drtpdataengine_unittest.cc263 // 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/libvpx/source/libvpx/examples/
H A Dvp9_spatial_svc_encoder.c275 vpx_codec_ctx_t codec; local
300 // Initialize codec
301 if (vpx_svc_init(&svc_ctx, &codec, vpx_codec_vp9_cx(), &enc_cfg) !=
331 res = vpx_svc_encode(&svc_ctx, &codec, (end_of_stream ? NULL : &raw),
335 die_codec(&codec, "Failed to encode frame");
338 while ((cx_pkt = vpx_codec_get_cx_data(&codec, &iter)) != NULL) {
374 if (vpx_codec_destroy(&codec)) die_codec(&codec, "Failed to destroy codec");
/external/chromium_org/third_party/libvpx/source/libvpx/test/
H A Dencode_test_driver.h176 explicit EncoderTest(const CodecFactory *codec) argument
177 : codec_(codec), abort_(false), init_flags_(0), frame_flags_(0),
/external/chromium_org/third_party/skia/src/ports/
H A DSkImageDecoder_WIC.cpp457 SkImageDecoder_WIC codec; local
458 if (!codec.decodeStream(stream, NULL, SkImageDecoder_WIC::kDecodeFormat_WICMode, &format)) {
/external/chromium_org/third_party/webrtc/examples/android/media_demo/src/org/webrtc/webrtcdemo/
H A DVoiceEngine.java87 public native int setSendCodec(int channel, CodecInst codec); argument
/external/chromium_org/third_party/webrtc/modules/video_coding/main/interface/
H A Dvideo_coding_defines.h91 // Called when the current receive codec changes.
92 virtual void IncomingCodecChanged(const VideoCodec& codec) {} argument
/external/chromium_org/third_party/webrtc/modules/video_coding/main/test/
H A Dquality_modes_test.cc191 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
207 TEST(_vcm->RegisterSendCodec(&codec,
[all...]
/external/chromium_org/third_party/webrtc/voice_engine/test/cmd_test/
H A Dvoe_cmd_test.cc56 VoECodec* codec = NULL; variable
111 for (int i = 0; i < codec->NumOfCodecs(); ++i) {
112 int res = codec->GetCodec(i, codec_params);
129 codec = VoECodec::GetInterface(m_voe);
185 if (codec)
186 codec->Release();
300 printf("Select send codec: ");
303 codec->GetCodec(codec_selection, cinst);
305 printf("Set primary codec\n");
307 res = codec
[all...]
/external/libvpx/libvpx/examples/
H A Dvp9_spatial_scalable_encoder.c287 vpx_codec_ctx_t codec; local
311 // Initialize codec
312 if (vpx_svc_init(&svc_ctx, &codec, vpx_codec_vp9_cx(), &enc_cfg) !=
346 res = vpx_svc_encode(&svc_ctx, &codec, (end_of_stream ? NULL : &raw),
350 die_codec(&codec, "Failed to encode frame");
374 if (vpx_codec_destroy(&codec)) die_codec(&codec, "Failed to destroy codec");
/external/libvpx/libvpx/test/
H A Dencode_test_driver.h176 explicit EncoderTest(const CodecFactory *codec) argument
177 : codec_(codec), abort_(false), init_flags_(0), frame_flags_(0),
/external/skia/src/ports/
H A DSkImageDecoder_WIC.cpp457 SkImageDecoder_WIC codec; local
458 if (!codec.decodeStream(stream, NULL, SkImageDecoder_WIC::kDecodeFormat_WICMode, &format)) {
/external/tinycompress/
H A Dcompress.c145 bool codec = false; local
149 if (caps->codecs[i] == config->codec->id) {
150 /* found the codec */
151 codec = true;
155 if (codec == false) {
156 oops(compress, ENXIO, "this codec is not supported");
181 /* TODO: match the codec properties */
185 static bool _is_codec_type_supported(int fd, struct snd_codec *codec) argument
197 if (caps.codecs[i] == codec->id) {
198 /* found the codec */
575 is_codec_supported(unsigned int card, unsigned int device, unsigned int flags, struct snd_codec *codec) argument
[all...]
/external/chromium_org/chrome/browser/bookmarks/
H A Dbookmark_html_writer.cc235 // Converts a time string written to the JSON codec into a time_t string
438 BookmarkCodec codec; local
442 new Writer(codec.Encode(BookmarkModelFactory::GetForProfile(
/external/chromium_org/media/filters/
H A Daudio_decoder_unittest.cc34 // The next two bytes represent the codec delay.
50 const AudioCodec codec; member in struct:media::DecoderTestData
156 EXPECT_EQ(GetParam().codec, config.codec());
191 // based on the codec delay in the AudioDecoderConfig.
402 // Use a different codec delay than in the extradata.
/external/chromium_org/ppapi/c/private/
H A Dpp_content_decryptor.h306 * <code>PP_AudioCodec</code> contains audio codec type constants.
326 * status response. Note: When <code>codec</code> requires extra data for
332 * The audio codec to initialize.
334 PP_AudioCodec codec; member in struct:PP_AudioDecoderConfig
364 * <code>PP_VideoCodec</code> contains video codec type constants.
375 * <code>PP_VideoCodecProfile</code> contains video codec profile type
403 * status response. Note: When <code>codec</code> requires extra data for
409 * The video codec to initialize.
411 PP_VideoCodec codec; member in struct:PP_VideoDecoderConfig
413 * Profile to use when initializing the video codec
[all...]
/external/chromium_org/third_party/libjingle/source/talk/media/other/
H A Dlinphonemediaengine.h40 #include "talk/media/base/codec.h"
91 virtual bool FindAudioCodec(const AudioCodec& codec);
92 virtual bool FindVideoCodec(const VideoCodec& codec) { return true; } argument
/external/chromium_org/third_party/libjingle/source/talk/media/webrtc/
H A Dwebrtcvideoengine_unittest.cc76 engine, // codec
213 void VerifyCodecFeedbackParams(const cricket::VideoCodec& codec) { argument
214 EXPECT_TRUE(codec.HasFeedbackParam(
217 EXPECT_TRUE(codec.HasFeedbackParam(
220 EXPECT_TRUE(codec.HasFeedbackParam(
223 EXPECT_TRUE(codec.HasFeedbackParam(
240 // Video codec properties.
382 // Test that ViE Channel doesn't call SetSendCodec again if same codec is tried
395 // Since it's exact same codec which is already set, media channel shouldn't
396 // send the codec t
411 cricket::VideoCodec codec; local
432 cricket::VideoCodec codec; local
449 cricket::VideoCodec codec; local
494 cricket::VideoCodec codec; local
[all...]
/external/chromium_org/third_party/skia/tools/
H A Dskimage_main.cpp427 * same image as if it did report to have a length. Assumes that codec was used to
430 * @param codec The SkImageDecoder originally used to decode srcPath, which will be used
435 static void test_stream_without_length(const char srcPath[], SkImageDecoder* codec, argument
442 SkASSERT(codec);
448 if (!codec->decode(&stream, &bm, gPrefColorType, SkImageDecoder::kDecodePixels_Mode)) {
492 SkImageDecoder* codec = SkImageDecoder::Factory(&stream); local
493 if (NULL == codec) {
498 SkAutoTDelete<SkImageDecoder> ad(codec);
500 codec->setSkipWritingZeroes(FLAGS_skip);
501 codec
[all...]
/external/chromium_org/third_party/webrtc/examples/android/media_demo/jni/
H A Dvideo_engine_jni.cc111 webrtc::VideoCodec* codec = new webrtc::VideoCodec(video_codec); local
116 jni->NewObject(j_codec_class, j_codec_ctor, jlongFromPointer(codec));
157 codec(webrtc::ViECodec::GetInterface(vie)),
165 CHECK(codec != NULL, "Failed to acquire codec interface");
185 ReleaseSubApi(codec);
218 int ret_val = codec->RegisterDecoderObserver(channel, *observers_[channel]);
219 ret_val |= codec->RegisterEncoderObserver(channel, *observers_[channel]);
228 int ret_val = codec->DeregisterDecoderObserver(channel);
229 ret_val |= codec
258 webrtc::ViECodec* const codec; member in class:__anon15740::VideoEngineData::webrtc
433 webrtc::VideoCodec* codec = GetCodecInst(jni, j_codec); local
440 webrtc::VideoCodec* codec = GetCodecInst(jni, j_codec); local
451 webrtc::VideoCodec* codec = new webrtc::VideoCodec(); local
[all...]

Completed in 575 milliseconds

12345678910