/external/chromium_org/content/browser/speech/ |
audio_encoder.cc | 173 AudioEncoder* AudioEncoder::Create(Codec codec, 176 if (codec == CODEC_FLAC)
|
google_one_shot_remote_engine.cc | 36 const AudioEncoder::Codec kDefaultAudioCodec = AudioEncoder::CODEC_FLAC;
|
google_streaming_remote_engine.cc | 38 const AudioEncoder::Codec kDefaultAudioCodec = AudioEncoder::CODEC_FLAC;
|
/external/flac/libFLAC/ia32/ |
nasm.h | 1 ; libFLAC - Free Lossless Audio Codec library
|
/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/libvorbis/ |
libvorbis.spec | 4 Summary: The Vorbis General Audio Compression Codec. 77 %{_includedir}/vorbis/codec.h
|
/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/remoting/client/ |
rectangle_update_decoder.cc | 15 #include "remoting/codec/video_decoder.h" 16 #include "remoting/codec/video_decoder_verbatim.h" 17 #include "remoting/codec/video_decoder_vpx.h" 99 // Initialize decoder based on the selected codec. 100 ChannelConfig::Codec codec = config.video_config().codec; local 101 if (codec == ChannelConfig::CODEC_VERBATIM) { 103 } else if (codec == ChannelConfig::CODEC_VP8) { 105 } else if (codec == ChannelConfig::CODEC_VP9) [all...] |
/external/chromium_org/third_party/libjingle/source/talk/media/sctp/ |
sctpdataengine.cc | 38 #include "talk/media/base/codec.h" 217 // We don't put in a codec because we don't want one offered when we 705 // Puts the specified |param| from the codec identified by |id| into |dest| 712 Codec match_pattern;
|
/external/chromium_org/third_party/libjingle/source/talk/session/media/ |
mediasession.cc | 380 class UsedPayloadTypes : public UsedIds<Codec> { 383 : UsedIds<Codec>(kDynamicPayloadTypeMin, kDynamicPayloadTypeMax) { 679 static bool IsRtxCodec(const C& codec) { 680 return stricmp(codec.name.c_str(), kRtxCodecName) == 0; 809 C codec = *it; local 810 int original_payload_id = codec.id; 811 used_pltypes->FindAndSetIdUsed(&codec); 812 offered_codecs->push_back(codec); 814 // If this codec is referenced by a new RTX codec, update the referenc [all...] |
channel_unittest.cc | 86 typedef CodecT Codec; 500 // kPcmuCodec is used as audio codec and kH264Codec is used as video codec. 544 bool CodecMatches(const typename T::Codec& c1, const typename T::Codec& c2) { [all...] |
mediasessionclient_unittest.cc | 46 using cricket::Codec; 1347 AudioCodec codec = AudioCodec(id, name, clockrate, bitrate, channels, 0); local 1378 VideoCodec codec = VideoCodec(id, name, width, height, framerate, 0); local 1393 DataCodec codec = DataCodec(id, name, 0); local 1748 cricket::DataCodec codec = DataCodecFromPayloadType(e); local 1988 cricket::AudioCodec codec = AudioCodecFromPayloadType(e); local 2137 VideoCodec codec = VideoCodecFromPayloadType(e); local 2162 cricket::AudioCodec codec = AudioCodecFromPayloadType(e); local 2323 cricket::AudioCodec codec = AudioCodecFromPayloadType(payload_type); local 2347 cricket::AudioCodec codec = AudioCodecFromPayloadType(e); local 2387 cricket::AudioCodec codec = AudioCodecFromPayloadType(e); local 2401 cricket::AudioCodec codec = AudioCodecFromPayloadType(e); local 2421 cricket::AudioCodec codec = AudioCodecFromPayloadType(e); local [all...] |
/external/chromium_org/third_party/libjingle/source/talk/app/webrtc/ |
webrtcsdp.cc | 42 #include "talk/media/base/codec.h" 241 static void AddFmtpLine(const T& codec, std::string* message); 2335 cricket::VideoCodec& codec = *iter; local 2754 cricket::AudioCodec codec = GetCodec(audio_desc->codecs(), payload_type); local 2771 cricket::VideoCodec codec = GetCodec(video_desc->codecs(), payload_type); 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 | 201 bool venc_dev::venc_open(OMX_U32 codec) 253 if(codec == OMX_VIDEO_CodingMPEG4) 262 else if(codec == OMX_VIDEO_CodingH263) 271 if(codec == OMX_VIDEO_CodingAVC) [all...] |
video_encoder_device_copper.cpp | 239 bool venc_dev::venc_open(OMX_U32 codec) 280 if(codec == OMX_VIDEO_CodingMPEG4) 289 else if(codec == OMX_VIDEO_CodingH263) 298 if(codec == OMX_VIDEO_CodingAVC) [all...] |
/hardware/qcom/media/mm-video-v4l2/vidc/venc/src/ |
video_encoder_device.cpp | 192 bool venc_dev::venc_open(OMX_U32 codec) 241 if (codec == OMX_VIDEO_CodingAVC) 246 if (codec == OMX_VIDEO_CodingMPEG4) { 253 } else if (codec == OMX_VIDEO_CodingH263) { 262 if (codec == OMX_VIDEO_CodingAVC) { 611 DEBUG_PRINT_HIGH("WxH (%dx%d), codec (%d), fps(nr/dr) (%d/%d), bitrate (%d), " [all...] |
video_encoder_device_v4l2.cpp | 520 bool venc_dev::venc_open(OMX_U32 codec) 557 if (codec == OMX_VIDEO_CodingMPEG4) { 564 } else if (codec == OMX_VIDEO_CodingH263) { 571 } else if (codec == OMX_VIDEO_CodingAVC) { 578 } else if (codec == OMX_VIDEO_CodingVPX) { [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...] |