/external/chromium_org/third_party/webrtc/modules/video_coding/main/test/ |
normal_test.cc | 97 rtpInfo.type.Video.codec = kRtpVideoVp8; 249 TEST(VideoCodingModule::Codec(_videoType, &_sendCodec) == VCM_OK); 255 // will also set and init the desired codec 257 // register a decoder (same codec for decoder and encoder )
|
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/video_engine/ |
vie_encoder.cc | 196 if (vcm_.Codec(codec_type, &video_codec) != VCM_OK) { 266 if (vcm_.Codec(list_index, video_codec) != 0) { 299 // If the external encoder is the current send codec, use vcm internal 645 // The send codec must be registered to set correct MTU. 646 webrtc::VideoCodec codec; local 647 if (vcm_.SendCodec(&codec) == 0) { 655 codec.startBitrate = (current_bitrate_bps + 500) / 1000; 656 if (vcm_.RegisterSendCodec(&codec, number_of_cores_, max_pay_load) != 0) { 805 VideoCodec codec; local 806 if (vcm_.SendCodec(&codec) != 0 [all...] |
vie_codec_impl.cc | 30 static void LogCodec(const VideoCodec& codec) { 31 LOG(LS_INFO) << "CodecType " << codec.codecType 32 << ", pl_type " << static_cast<int>(codec.plType) 33 << ", resolution " << codec.width 34 << " x " << codec.height 35 << ", start br " << codec.startBitrate 36 << ", min br " << codec.minBitrate 37 << ", max br " << codec.maxBitrate 38 << ", max fps " << static_cast<int>(codec.maxFramerate) 39 << ", max qp " << codec.qpMa [all...] |
vie_channel.cc | 207 if (vcm_->Codec(kVideoCodecVP8, &video_codec) == VCM_OK) { 256 LOG_F(LS_ERROR) << "Not a valid send codec " << video_codec.codecType; 441 // Register codec type with VCM, but do not register RED or ULPFEC. [all...] |
/external/chromium_org/content/browser/speech/ |
google_streaming_remote_engine.cc | 37 const AudioEncoder::Codec kDefaultAudioCodec = AudioEncoder::CODEC_FLAC;
|
/external/chromium_org/third_party/libjingle/source/talk/media/sctp/ |
sctpdataengine.cc | 35 #include "talk/media/base/codec.h" 274 cricket::DataCodec codec(kGoogleSctpDataCodecId, kGoogleSctpDataCodecName, 0); 275 codec.SetParam(kCodecParamPort, kSctpDefaultPort); 276 codecs_.push_back(codec); 859 // Puts the specified |param| from the codec identified by |id| into |dest| 866 Codec match_pattern; [all...] |
/external/chromium_org/third_party/webrtc/modules/audio_coding/main/acm2/ |
acm_generic_codec.cc | 39 // to initialize to a default codec that we are sure is always included. 110 // The codec expects to get data in correct sampling rate. Get the sampling 111 // frequency of the codec. 119 // This is not 10 ms of audio, given the sampling frequency of the codec. 285 // This codec can handle all allowed frame sizes as basic coding block. 296 // A basic-coding-block for this codec is defined so we loop over the 374 // Codec parameters are valid only if the encoder is initialized. 454 // Check if the parameters are for this codec. 457 // The current codec is not the same as the one given by codec_params. 459 "InitEncoderSafe: current codec is not the same as the one [all...] |
acm_isac.cc | 275 // Create codec instance. 305 // in a one-way communication we may never register send-codec. 331 // However, due to a mistake in the codec the frame-size might change 458 // codec with shared instance cannot delete. 805 ACMCodecDB::Codec(codec_id, &codec_params.codec_inst);
|
audio_coding_module_impl.cc | 61 bool IsCodecRED(const CodecInst* codec) { 62 return (STR_CASE_CMP(codec->plname, "RED") == 0); 69 bool IsCodecCN(const CodecInst* codec) { 70 return (STR_CASE_CMP(codec->plname, "CN") == 0); 151 // Nullify send codec memory, set payload type and set codec name to 216 // Mirror index holds the address of the codec memory. 573 // codec for which GetRedPayload has a non-empty implementation. 654 // The codec was not iSAC => use current encoder output as redundant 702 // Initialize send codec 2062 webrtc::CodecInst codec; local 2107 webrtc::CodecInst codec; local [all...] |
/external/chromium_org/third_party/webrtc/modules/video_coding/codecs/test/ |
videoprocessor_integrationtest.cc | 38 // Codec and network settings. 138 // Codec and network settings. 172 // Get a codec configuration struct and configure it. 173 VideoCodingModule::Codec(kVideoCodecVP8, &codec_settings_); 407 // Codec/config settings. 417 // Update the layers and the codec with the initial rates. 444 // update layers and codec with new rates. 455 // Update layer rates and the codec with new rates. 572 // Codec/network settings. 595 // Codec/network settings [all...] |
/external/chromium_org/third_party/webrtc/voice_engine/ |
voe_codec_impl.cc | 66 int VoECodecImpl::GetCodec(int index, CodecInst& codec) 69 "GetCodec(index=%d, codec=?)", index); 71 if (AudioCodingModule::Codec(index, &acmCodec) 78 ACMToExternalCodecRepresentation(codec, acmCodec); 82 "channels=%d, rate=%d", codec.plname, codec.pacsize, 83 codec.plfreq, codec.pltype, codec.channels, codec.rate) [all...] |
channel.cc | 381 audio_coding_->Codec(payloadName, &dummyCodec, frequency, channels); 384 // Register the new codec to the ACM 389 "Channel::OnInitializeDecoder() invalid codec (" 742 // This is not needed on sending side, since the codec will 1128 CodecInst codec; local 1656 CodecInst codec; local 2662 CodecInst codec = {}; local 3673 CodecInst codec; local 4329 CodecInst codec; local 4410 CodecInst codec; local [all...] |
/external/chromium_org/media/cast/test/ |
end2end_unittest.cc | 324 // We need to "decode" the encoded audio frame. The codec is simply to 471 void Configure(Codec video_codec, 472 Codec audio_codec, 484 audio_sender_config_.codec = audio_codec; 495 audio_receiver_config_.codec = audio_sender_config_.codec; 516 video_sender_config_.codec = video_codec; 527 video_receiver_config_.codec = video_sender_config_.codec; [all...] |
/external/chromium_org/third_party/libjingle/source/talk/app/webrtc/ |
webrtcsdp.cc | 38 #include "talk/media/base/codec.h" 240 static void AddFmtpLine(const T& codec, std::string* message); 2427 cricket::VideoCodec& codec = *iter; local 2861 cricket::AudioCodec codec = GetCodec(audio_desc->codecs(), payload_type); local 2878 cricket::VideoCodec codec = GetCodec(video_desc->codecs(), payload_type); local [all...] |
/external/chromium_org/third_party/libjingle/source/talk/session/media/ |
mediasession.cc | 317 // Filter RTP codec for SCTP and vice versa. 398 class UsedPayloadTypes : public UsedIds<Codec> { 401 : UsedIds<Codec>(kDynamicPayloadTypeMin, kDynamicPayloadTypeMax) { 697 static bool IsRtxCodec(const C& codec) { 698 return stricmp(codec.name.c_str(), kRtxCodecName) == 0; 834 C codec = *it; local 835 int original_payload_id = codec.id; 836 used_pltypes->FindAndSetIdUsed(&codec); 837 offered_codecs->push_back(codec); 839 // If this codec is referenced by a new RTX codec, update the referenc [all...] |
channel_unittest.cc | 88 typedef CodecT Codec; 470 // kPcmuCodec is used as audio codec and kH264Codec is used as video codec. 514 bool CodecMatches(const typename T::Codec& c1, const typename T::Codec& c2) { [all...] |
mediasessionclient_unittest.cc | 47 using cricket::Codec; 1253 AudioCodec codec = AudioCodec(id, name, clockrate, bitrate, channels, 0); local 1284 VideoCodec codec = VideoCodec(id, name, width, height, framerate, 0); local 1299 DataCodec codec = DataCodec(id, name, 0); local 1654 cricket::DataCodec codec = DataCodecFromPayloadType(e); local 1894 cricket::AudioCodec codec = AudioCodecFromPayloadType(e); local 2043 VideoCodec codec = VideoCodecFromPayloadType(e); local 2068 cricket::AudioCodec codec = AudioCodecFromPayloadType(e); local 2229 cricket::AudioCodec codec = AudioCodecFromPayloadType(payload_type); local 2253 cricket::AudioCodec codec = AudioCodecFromPayloadType(e); local 2293 cricket::AudioCodec codec = AudioCodecFromPayloadType(e); local 2307 cricket::AudioCodec codec = AudioCodecFromPayloadType(e); local 2327 cricket::AudioCodec codec = AudioCodecFromPayloadType(e); local [all...] |
/external/flac/libFLAC/ppc/as/ |
lpc_asm.s | 1 ; libFLAC - Free Lossless Audio Codec library
|
/external/flac/libFLAC/ppc/gas/ |
lpc_asm.s | 1 # libFLAC - Free Lossless Audio Codec library
|
/external/libvorbis/doc/ |
01-introduction.tex | 8 This document provides a high level description of the Vorbis codec's 10 \xref{vorbis:spec:codec}. 16 Vorbis is a general purpose perceptual audio CODEC intended to allow 30 Vorbis I is a forward-adaptive monolithic transform CODEC based on the 31 Modified Discrete Cosine Transform. The codec is structured to allow 39 The Vorbis CODEC design assumes a complex, psychoacoustically-aware 56 audio stream. Vorbis is a free-form variable bit rate (VBR) codec and packets have no 77 \subsubsection{Codec Setup and Probability Model} 79 Vorbis' heritage is as a research CODEC and its current design 81 improvement before running out of room within the codec specification [all...] |
04-codec.tex | 5 \section{Codec Setup and Packet Decode} \label{vorbis:spec:codec} 92 Vorbis codec setup is configurable to an extreme degree: 100 The setup header contains the bulk of the codec setup information
|