HomeSort by relevance Sort by last modified time
    Searched refs:Codec (Results 251 - 275 of 300) sorted by null

<<1112

  /external/flac/libFLAC/ia32/
nasm.h 1 ; libFLAC - Free Lossless Audio Codec library
  /external/chromium_org/third_party/webrtc/modules/audio_coding/main/test/
TestRedFec.cc 50 EXPECT_EQ(0, _acmB->Codec(n, &myCodecParam));
215 // Codec FEC and RED are mutually exclusive.
221 // Codec FEC and RED are mutually exclusive.
286 EXPECT_GT(AudioCodingModule::Codec(codecName, &myCodecParam,
TestVADDTX.cc 48 EXPECT_EQ(0, _acmB->Codec(n, &myCodecParam));
69 // Register iSAC WB as send codec
82 // Register iSAC SWB as send codec
95 // Register iLBC as send codec
110 // Register Opus as send codec
216 EXPECT_EQ(0, myACM->Codec((uint8_t) codecCntr, &myCodecParam));
TestStereo.cc 170 EXPECT_EQ(0, acm_b_->Codec(n, &my_codec_param));
176 EXPECT_EQ(0, acm_b_->Codec(n, &my_codec_param));
182 EXPECT_EQ(0, acm_b_->Codec(n, &my_codec_param));
192 // Continue with setting a stereo codec as send codec and verify that
561 // Run stereo audio and mono codec.
659 EXPECT_EQ(0, acm_b_->Codec(n, &opus_codec_param));
680 // Print out codec and settings
690 // Print out codec and settings
702 // Print out codec and setting
    [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...]
TestAllCodecs.cc 136 acm_b_->Codec(n, &my_codec_param);
680 // Register Codec to use in the test
683 // codec_name - name to use when register the codec
689 // set to -1 if the codec is a variable rate codec
694 // Print out codec and settings.
695 printf("codec: %s Freq: %d Rate: %d PackSize: %d\n", codec_name,
713 // packet. If variable rate codec (extra_byte == -1), set to -1 (65535).
724 // Set pointer to the ACM where to register the codec.
741 // Get all codec parameters before registerin
    [all...]
dual_stream_unittest.cc 114 // Invalid values. To check later on if the codec are found in the database.
120 AudioCodingModule::Codec(n, &my_codec);
184 // Unregister secondary codec and feed only the primary
494 // Not allowed to register secondary codec if primary is not registered yet.
518 // Test if VAD get disabled after registering secondary codec.
iSACTest.cc 102 EXPECT_EQ(0, AudioCodingModule::Codec(codecCntr, &codecParam));
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
codecs.py 1 """ codecs -- Python Codec Registry, API and helpers.
12 ### Registry and builtin stateless codec functions
73 ### Codec base classes (defining the API)
92 class Codec:
122 The method may not store state in the Codec instance. Use
145 The method may not store state in the Codec instance. Use
320 class StreamWriter(Codec):
363 """ Flushes and resets the codec buffers used for keeping state.
393 class StreamReader(Codec):
581 Line breaks are implemented using the codec's decode
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
codecs.py 1 """ codecs -- Python Codec Registry, API and helpers.
12 ### Registry and builtin stateless codec functions
73 ### Codec base classes (defining the API)
92 class Codec:
122 The method may not store state in the Codec instance. Use
145 The method may not store state in the Codec instance. Use
320 class StreamWriter(Codec):
363 """ Flushes and resets the codec buffers used for keeping state.
393 class StreamReader(Codec):
581 Line breaks are implemented using the codec's decode
    [all...]
  /external/chromium_org/third_party/webrtc/modules/audio_coding/main/acm2/
audio_coding_module_unittest.cc 141 AudioCodingModule::Codec("L16", &codec_, kSampleRateHz, 1);
144 // Register L16 codec in ACM.
274 // codec, while the derive class AcmIsacMtTest is using iSAC.
457 AudioCodingModule::Codec("ISAC", &codec_, kSampleRateHz, 1);
460 // Register iSAC codec in ACM, effectively unregistering the PCM16B codec
acm_codec_database.cc 202 // Create database with all codec settings at compile time.
387 // Get codec information from database.
389 int ACMCodecDB::Codec(int codec_id, CodecInst* codec_inst) {
395 // Copy database information for the codec to the output.
401 // Enumerator for error codes when asking for codec database id.
409 // Gets the codec id number from the database. If there is some mismatch in
410 // the codec settings, the function will return an error code.
413 // Look for a matching codec in the database.
416 // Checks if we found a matching codec.
501 // codec list. Need to check all three since some codecs have several code
    [all...]
  /external/chromium_org/third_party/webrtc/modules/video_coding/main/source/
video_sender_unittest.cc 143 EXPECT_EQ(kRtpVideoVp8, frame_data_[i].rtp_video_header.codec);
155 EXPECT_EQ(kRtpVideoVp8, frame_data_[i].rtp_video_header.codec);
208 EXPECT_EQ(0, VideoCodingModule::Codec(kVideoCodecVP8, &settings_));
336 VideoCodec codec;
337 memset(&codec, 0, sizeof(codec));
338 EXPECT_EQ(0, VideoCodingModule::Codec(kVideoCodecVP8, &codec));
339 codec.width = width;
340 codec.height = height
    [all...]
video_receiver_unittest.cc 46 EXPECT_EQ(0, VideoCodingModule::Codec(kVideoCodecVP8, &settings_));
100 header.type.Video.codec = kRtpVideoVp8;
124 header.type.Video.codec = kRtpVideoVp8;
176 header.type.Video.codec = kRtpVideoVp8;
video_coding_robustness_unittest.cc 46 ASSERT_EQ(VCM_OK, vcm_->Codec(kVideoCodecVP8, &video_codec_));
70 rtp_info.type.Video.codec = kRtpVideoVp8;
  /external/libvorbis/
libvorbis.spec 4 Summary: The Vorbis General Audio Compression Codec.
77 %{_includedir}/vorbis/codec.h
  /external/okhttp/okhttp/src/main/java/com/squareup/okhttp/internal/spdy/
Huffman.java 33 enum Codec {
45 Codec(int[] codes, byte[] lengths) {
  /external/chromium_org/content/browser/speech/
google_one_shot_remote_engine.cc 37 const AudioEncoder::Codec kDefaultAudioCodec = AudioEncoder::CODEC_FLAC;
  /external/chromium_org/remoting/protocol/
content_description.cc 36 const char kCodecAttr[] = "codec";
47 const NameMapElement<ChannelConfig::Codec> kCodecs[] = {
58 // <video transport="stream" version="1" codec="vp8" />
71 if (config.codec != ChannelConfig::CODEC_UNDEFINED) {
73 ValueToName(kCodecs, config.codec));
96 // Codec is not required when transport="none".
99 &config->codec)) {
103 config->codec = ChannelConfig::CODEC_UNDEFINED;
107 config->codec = ChannelConfig::CODEC_UNDEFINED;
137 // <video transport="stream" codec="vp8" version="1" /
    [all...]
  /external/chromium_org/third_party/webrtc/modules/video_coding/main/test/
vcm_payload_sink_factory.cc 155 VideoCodec codec; local
156 if (VideoCodingModule::Codec(it->codec_type(), &codec) < 0) {
159 codec.plType = it->payload_type();
160 if (vcm->RegisterReceiveCodec(&codec, 1) < 0) {
mt_rx_tx_test.cc 216 if (vcm->Codec(args.codecType, &sendCodec) != 0)
218 // desired codec unavailable
219 printf("Codec not registered\n");
222 // register codec
media_opt_test.cc 259 if (_vcm->Codec(_sendCodecType, &sendCodec) != 0)
261 printf("Unknown codec\n");
264 // register codec
398 _codecName = "VP8"; // for now just this one - later iterate over all codec types
  /external/chromium_org/third_party/webrtc/video_engine/
vie_encoder.cc 199 if (vcm_.Codec(webrtc::kVideoCodecVP8, &video_codec) != VCM_OK) {
215 if (vcm_.Codec(webrtc::kVideoCodecI420, &video_codec) == VCM_OK) {
284 if (vcm_.Codec(list_index, video_codec) != 0) {
317 // If the external encoder is the current send codec, use vcm internal
652 // The send codec must be registered to set correct MTU.
653 webrtc::VideoCodec codec; local
654 if (vcm_.SendCodec(&codec) == 0) {
662 codec.startBitrate = (current_bitrate_bps + 500) / 1000;
663 if (vcm_.RegisterSendCodec(&codec, number_of_cores_, max_pay_load) != 0) {
810 VideoCodec codec; local
    [all...]
  /external/chromium_org/remoting/client/
software_video_renderer.cc 17 #include "remoting/codec/video_decoder.h"
18 #include "remoting/codec/video_decoder_verbatim.h"
19 #include "remoting/codec/video_decoder_vpx.h"
146 // Initialize decoder based on the selected codec.
147 ChannelConfig::Codec codec = config.video_config().codec; local
148 if (codec == ChannelConfig::CODEC_VERBATIM) {
150 } else if (codec == ChannelConfig::CODEC_VP8) {
152 } else if (codec == ChannelConfig::CODEC_VP9)
    [all...]
  /external/chromium_org/third_party/webrtc/modules/video_coding/codecs/tools/
video_quality_measurement.cc 70 "(VP8 specific codec setting). Must be 0-4.");
172 // Get codec specific configuration.
173 webrtc::VideoCodingModule::Codec(webrtc::kVideoCodecVP8,
447 // Create TestConfig and codec settings struct.

Completed in 730 milliseconds

<<1112