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

<<1112

  /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/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 39 #include "talk/media/base/codec.h"
274 cricket::DataCodec codec(kGoogleSctpDataCodecId, kGoogleSctpDataCodecName, 0);
275 codec.SetParam(kCodecParamPort, kSctpDefaultPort);
276 codecs_.push_back(codec);
847 // Puts the specified |param| from the codec identified by |id| into |dest|
854 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.
111 // The codec expects to get data in correct sampling rate. Get the sampling
112 // frequency of the codec.
120 // This is not 10 ms of audio, given the sampling frequency of the codec.
287 // This codec can handle all allowed frame sizes as basic coding block.
298 // A basic-coding-block for this codec is defined so we loop over the
376 // Codec parameters are valid only if the encoder is initialized.
458 // Check if the parameters are for this codec.
461 // The current codec is not the same as the one given by codec_params.
463 "InitEncoderSafe: current codec is not the same as the one
    [all...]
acm_isac.cc 277 // Create codec instance.
307 // in a one-way communication we may never register send-codec.
333 // However, due to a mistake in the codec the frame-size might change
459 // codec with shared instance cannot delete.
809 ACMCodecDB::Codec(codec_id, &codec_params.codec_inst);
  /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/video_engine/
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 160 if (vcm_->Codec(kVideoCodecVP8, &video_codec) == VCM_OK) {
209 LOG_F(LS_ERROR) << "Not a valid send codec " << video_codec.codecType;
410 // Register codec type with VCM, but do not register RED or ULPFEC.
    [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 382 audio_coding_->Codec(payloadName, &dummyCodec, frequency, channels);
385 // Register the new codec to the ACM
390 "Channel::OnInitializeDecoder() invalid codec ("
740 // This is not needed on sending side, since the codec will
1125 CodecInst codec; local
1703 CodecInst codec; local
2693 CodecInst codec = {}; local
3756 CodecInst codec; local
4416 CodecInst codec; local
4497 CodecInst codec; local
    [all...]
  /external/chromium_org/third_party/libjingle/source/talk/app/webrtc/
webrtcsdp.cc 42 #include "talk/media/base/codec.h"
239 static void AddFmtpLine(const T& codec, std::string* message);
2383 cricket::VideoCodec& codec = *iter; local
2808 cricket::AudioCodec codec = GetCodec(audio_desc->codecs(), payload_type); local
2825 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;
829 C codec = *it; local
830 int original_payload_id = codec.id;
831 used_pltypes->FindAndSetIdUsed(&codec);
832 offered_codecs->push_back(codec);
834 // If this codec is referenced by a new RTX codec, update the referenc
    [all...]
channel_unittest.cc 87 typedef CodecT Codec;
512 // kPcmuCodec is used as audio codec and kH264Codec is used as video codec.
556 bool CodecMatches(const typename T::Codec& c1, const typename T::Codec& c2) {
    [all...]
mediasessionclient_unittest.cc 46 using cricket::Codec;
1346 AudioCodec codec = AudioCodec(id, name, clockrate, bitrate, channels, 0); local
1377 VideoCodec codec = VideoCodec(id, name, width, height, framerate, 0); local
1392 DataCodec codec = DataCodec(id, name, 0); local
1747 cricket::DataCodec codec = DataCodecFromPayloadType(e); local
1987 cricket::AudioCodec codec = AudioCodecFromPayloadType(e); local
2136 VideoCodec codec = VideoCodecFromPayloadType(e); local
2161 cricket::AudioCodec codec = AudioCodecFromPayloadType(e); local
2322 cricket::AudioCodec codec = AudioCodecFromPayloadType(payload_type); local
2346 cricket::AudioCodec codec = AudioCodecFromPayloadType(e); local
2386 cricket::AudioCodec codec = AudioCodecFromPayloadType(e); local
2400 cricket::AudioCodec codec = AudioCodecFromPayloadType(e); local
2420 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
  /hardware/qcom/media/mm-video-legacy/vidc/venc/src/
video_encoder_device.cpp 199 bool venc_dev::venc_open(OMX_U32 codec)
251 if(codec == OMX_VIDEO_CodingMPEG4)
260 else if(codec == OMX_VIDEO_CodingH263)
269 if(codec == OMX_VIDEO_CodingAVC)
    [all...]
video_encoder_device_copper.cpp 237 bool venc_dev::venc_open(OMX_U32 codec)
278 if(codec == OMX_VIDEO_CodingMPEG4)
287 else if(codec == OMX_VIDEO_CodingH263)
296 if(codec == OMX_VIDEO_CodingAVC)
    [all...]
  /hardware/qcom/media/mm-video-v4l2/vidc/venc/src/
video_encoder_device.cpp 308 bool venc_dev::venc_open(OMX_U32 codec)
357 if (codec == OMX_VIDEO_CodingAVC)
362 if (codec == OMX_VIDEO_CodingMPEG4) {
366 } else if (codec == OMX_VIDEO_CodingH263) {
372 if (codec == OMX_VIDEO_CodingAVC) {
715 DEBUG_PRINT_HIGH("WxH (%dx%d), codec (%d), fps(nr/dr) (%d/%d), bitrate (%d), "
    [all...]
video_encoder_device_v4l2.cpp 752 bool venc_dev::venc_open(OMX_U32 codec)
    [all...]
  /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
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/pydoc_data/
topics.py     [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/pydoc_data/
topics.py     [all...]

Completed in 1036 milliseconds

<<1112