Searched refs:codec (Results 251 - 275 of 439) sorted by relevance

<<1112131415161718

/external/chromium_org/third_party/webrtc/modules/video_coding/main/test/
H A Dtester_main.cc26 DEFINE_string(codec, "VP8", "Codec to use (VP8 or I420).");
69 printf("Invalid codec: %s\n", args.codecName.c_str());
/external/apache-http/src/org/apache/commons/codec/language/
H A DMetaphone.java17 package org.apache.commons.codec.language;
19 import org.apache.commons.codec.EncoderException;
20 import org.apache.commons.codec.StringEncoder;
/external/chromium_org/third_party/skia/samplecode/
H A DSampleEncode.cpp123 SkAutoTDelete<SkImageEncoder> codec(
125 if (NULL == codec.get()) {
130 SkAutoDataUnref data(codec->encodeData(fBitmaps[i], 100));
/external/chromium_org/third_party/webrtc/modules/audio_coding/main/interface/
H A Daudio_coding_module.h120 // Get supported codec with list number.
126 // -codec : a structure where the parameters of the codec,
133 static int Codec(int list_id, CodecInst* codec);
137 // Get supported codec with the given codec name, sampling frequency, and
141 // -payload_name : name of the codec.
142 // -sampling_freq_hz : sampling frequency of the codec. Note! for RED
147 // -codec : a structure where the function returns the
148 // default parameters of the codec
[all...]
/external/chromium_org/third_party/webrtc/modules/video_coding/main/source/
H A Dgeneric_encoder.cc29 (*rtp)->codec = kRtpVideoVp8;
42 (*rtp)->codec = kRtpVideoH264;
45 (*rtp)->codec = kRtpVideoGeneric;
49 // No codec specific info. Change RTP header pointer to NULL.
H A Dvideo_receiver_unittest.cc100 header.type.Video.codec = kRtpVideoVp8;
124 header.type.Video.codec = kRtpVideoVp8;
176 header.type.Video.codec = kRtpVideoVp8;
/external/chromium_org/third_party/webrtc/video/
H A Dloopback.cc52 DEFINE_string(codec, "VP8", "Video codec to use.");
162 VideoCodec codec = local
164 receive_config.codecs.push_back(codec);
H A Dreplay.cc122 // Flag for video codec.
123 DEFINE_string(codec, "VP8", "Video codec");
215 VideoCodec codec = test::CreateDecoderVideoCodec(encoder_settings); local
216 receive_config.codecs.push_back(codec);
/external/skia/samplecode/
H A DSampleEncode.cpp123 SkAutoTDelete<SkImageEncoder> codec(
125 if (NULL == codec.get()) {
130 SkAutoDataUnref data(codec->encodeData(fBitmaps[i], 100));
/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...]
H A Dwebrtcvideoengine.h34 #include "talk/media/base/codec.h"
137 // Returns an external decoder for the given codec type. The return value
139 // codec type. The caller takes the ownership of the returned object.
144 // Returns an external encoder for the given codec type. The return value
146 // codec type. The caller takes the ownership of the returned object.
151 // Returns true if the codec type is supported by the external encoder.
201 bool SetDefaultCodec(const VideoCodec& codec);
325 const webrtc::VideoCodec& codec);
353 bool SetSendCodec(const webrtc::VideoCodec& codec);
355 const webrtc::VideoCodec& codec);
[all...]
H A Dfakewebrtcvideocapturemodule.h106 const webrtc::VideoCodec& codec) OVERRIDE {
/external/chromium_org/third_party/webrtc/modules/audio_coding/neteq/test/
H A DRTPencode.cc74 void NetEQTest_GetCodec_and_PT(char * name, webrtc::NetEqDecoder *codec, int *PT, int frameLen, int *fs, int *bitrate, int *useRed);
166 /* Global codec instance variables */
286 printf("The program reads a PCM file and encodes is using the specified codec.\n");
291 printf("%s PCMfile RTPfile frameLen codec useVAD bitrate\n", argv[0]);
298 printf("frameLen : 80...960... Number of samples per packet (limit depends on codec)\n\n");
351 printf(" : AMRXk Adaptive Multi Rate CELP codec (8kHz)\n");
355 printf(" : AMRwbXk Adaptive Multi Rate Wideband CELP codec (16kHz)\n");
359 printf(" : ilbc iLBC codec (8kHz and 13.8kbps)\n");
368 printf(" : gsmfr GSM FR codec (8kHz and 13kbps)\n");
463 printf("Cannot use codec
805 NetEQTest_GetCodec_and_PT(char * name, webrtc::NetEqDecoder *codec, int *PT, int frameLen, int *fs, int *bitrate, int *useRed) argument
[all...]
/external/chromium_org/remoting/host/
H A Dclient_session.cc12 #include "remoting/codec/audio_encoder.h"
13 #include "remoting/codec/audio_encoder_opus.h"
14 #include "remoting/codec/audio_encoder_verbatim.h"
15 #include "remoting/codec/video_encoder.h"
16 #include "remoting/codec/video_encoder_verbatim.h"
17 #include "remoting/codec/video_encoder_vpx.h"
496 if (video_config.codec == protocol::ChannelConfig::CODEC_VP8) {
498 } else if (video_config.codec == protocol::ChannelConfig::CODEC_VP9) {
500 } else if (video_config.codec == protocol::ChannelConfig::CODEC_VERBATIM) {
513 if (audio_config.codec
[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/third_party/webrtc/voice_engine/
H A Dchannel.h201 int32_t GetSendCodec(CodecInst& codec);
202 int32_t GetRecCodec(CodecInst& codec);
203 int32_t SetSendCodec(const CodecInst& codec);
206 int32_t SetRecPayloadType(const CodecInst& codec);
207 int32_t GetRecPayloadType(CodecInst& codec);
212 int SetSecondarySendCodec(const CodecInst& codec, int red_payload_type);
214 int GetSecondarySendCodec(CodecInst* codec);
533 // Downsamples to the codec rate if necessary.
/external/lzma/CPP/7zip/UI/Common/
H A DLoadCodecs.cpp601 const CDllCodecInfo &codec = Codecs[i]; local
602 if (encode && !codec.EncoderIsAssigned || !encode && !codec.DecoderIsAssigned)
604 const CCodecLib &lib = Libs[codec.LibIndex];
607 RINOK(lib.GetMethodProperty(codec.CodecIndex, NMethodPropID::kName, &prop));
613 return lib.CreateObject(encode ? &codec.Encoder : &codec.Decoder, &IID_ICompressCoder, (void **)&coder);
/external/chromium_org/third_party/libjingle/source/talk/app/webrtc/
H A Dwebrtcsdp.cc38 #include "talk/media/base/codec.h"
240 static void AddFmtpLine(const T& codec, std::string* message);
1562 void AddFmtpLine(const T& codec, std::string* message) { argument
1564 GetFmtpParams(codec.params, &fmtp_parameters);
1570 WriteFmtpHeader(codec.id, &os);
1577 void AddRtcpFbLines(const T& codec, std::string* message) { argument
1579 codec.feedback_params.params().begin();
1580 iter != codec.feedback_params.params().end(); ++iter) {
1582 WriteRtcpFbHeader(codec.id, &os);
1598 // Add the SCTP Port number as a pseudo-codec "por
2294 VerifyCodec(const cricket::Codec& codec) argument
2324 AddParameters(const cricket::CodecParameterMap& parameters, cricket::Codec* codec) argument
2332 AddFeedbackParameter(const cricket::FeedbackParam& feedback_param, cricket::Codec* codec) argument
2337 AddFeedbackParameters(const cricket::FeedbackParams& feedback_params, cricket::Codec* codec) argument
2364 AddOrReplaceCodec(MediaContentDescription* content_desc, const U& codec) argument
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/media/cast/test/
H A Dcast_benchmarks.cc235 audio_sender_config_.codec = audio_codec;
245 audio_receiver_config_.codec = audio_sender_config_.codec;
270 video_sender_config_.codec = video_codec;
277 video_receiver_config_.codec = video_sender_config_.codec;
/external/chromium_org/third_party/libjingle/source/talk/session/media/
H A Dchannelmanager_unittest.cc194 cricket::VideoCodec codec(96, "G264", 1280, 720, 60, 0);
195 cricket::VideoEncoderConfig config(codec, 1, 2);
216 VideoCodec codec(100, "VP8", 640, 360, 30, 0);
218 VideoEncoderConfig config(codec, 1, 2);
242 cricket::VideoCodec codec(96, "G264", 1280, 720, 60, 0);
243 cricket::VideoEncoderConfig config(codec, 1, 2);
/external/webrtc/src/modules/interface/
H A Dmodule_common_types.h112 RTPVideoCodecTypes codec; member in struct:webrtc::RTPVideoHeader
325 codec = data.codec;
359 codec = data.codec;
394 VideoCodecType codec; member in class:webrtc::EncodedVideoData
/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/media/filters/
H A Dffmpeg_video_decoder.cc217 // When EOS buffer is received and the codec has been flushed.
344 AVCodec* codec = avcodec_find_decoder(codec_context_->codec_id); local
345 if (!codec || avcodec_open2(codec_context_.get(), codec, NULL) < 0) {
/external/chromium_org/media/cast/sender/
H A Daudio_sender.cc51 audio_config.codec,
H A Daudio_sender_unittest.cc71 audio_config_.codec = CODEC_AUDIO_OPUS;

Completed in 606 milliseconds

<<1112131415161718