Searched refs:codec (Results 76 - 100 of 439) sorted by relevance

1234567891011>>

/external/chromium_org/third_party/libjingle/source/talk/session/media/
H A Dmediasessionclient.cc382 AudioCodec codec; local
383 if (ParseGingleAudioCodec(codec_elem, &codec)) {
384 codec.preference = preference--;
385 audio->AddCodec(codec);
416 VideoCodec codec; local
417 if (ParseGingleVideoCodec(codec_elem, &codec)) {
418 codec.preference = preference--;
419 video->AddCodec(codec);
503 bool ParseJingleAudioCodec(const buzz::XmlElement* elem, AudioCodec* codec) { argument
516 *codec
521 ParseJingleVideoCodec(const buzz::XmlElement* elem, VideoCodec* codec) argument
540 ParseJingleDataCodec(const buzz::XmlElement* elem, DataCodec* codec) argument
583 AudioCodec codec; local
625 VideoCodec codec; local
697 DataCodec codec; local
757 CreateGingleAudioCodecElem(const AudioCodec& codec) argument
771 CreateGingleVideoCodecElem(const VideoCodec& codec) argument
915 CreateJingleAudioCodecElem(const AudioCodec& codec) argument
936 CreateJingleVideoCodecElem(const VideoCodec& codec) argument
960 CreateJingleDataCodecElem(const DataCodec& codec) argument
[all...]
H A Dmediasessionclient_unittest.cc682 // Initiate with a dynamic codec not using webrtc default payload id. Should
711 // Initiate string with nothing but static codec id's. Should accept.
1148 // Parses and extracts payload and codec info from test XML. Since
1253 AudioCodec codec = AudioCodec(id, name, clockrate, bitrate, channels, 0); local
1254 ParsePayloadTypeFeedbackParameters(payload_type, &codec.feedback_params);
1255 return codec;
1284 VideoCodec codec = VideoCodec(id, name, width, height, framerate, 0); local
1285 ParsePayloadTypeFeedbackParameters(payload_type, &codec.feedback_params);
1286 return codec;
1299 DataCodec codec local
1654 cricket::DataCodec codec = DataCodecFromPayloadType(e); local
1859 VerifyAudioCodec(const AudioCodec& codec, int id, const std::string& name, int clockrate, int bitrate, int channels) argument
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/chromium_org/third_party/WebKit/Source/wtf/text/
H A DTextCodecReplacementTest.cpp21 // Just one example, others are listed in the codec implementation.
37 OwnPtr<TextCodec> codec(newTextCodec(encoding));
43 const String result = codec->decode(testCase, testCaseSize, DataEOF, false, sawError);
52 OwnPtr<TextCodec> codec(newTextCodec(encoding));
57 CString result = codec->encode(testCase, testCaseSize, QuestionMarksForUnencodables);
/external/chromium_org/third_party/libvpx/source/libvpx/examples/
H A Dtwopass_encoder.c62 fprintf(stderr, "Usage: %s <codec> <width> <height> <infile> <outfile>\n",
133 vpx_codec_ctx_t codec; local
137 if (vpx_codec_enc_init(&codec, encoder->codec_interface(), cfg, 0))
138 die_codec(&codec, "Failed to initialize encoder");
143 get_frame_stats(&codec, raw, frame_count, 1, 0, VPX_DL_GOOD_QUALITY,
148 while (get_frame_stats(&codec, NULL, frame_count, 1, 0,
152 if (vpx_codec_destroy(&codec))
153 die_codec(&codec, "Failed to destroy codec.");
170 vpx_codec_ctx_t codec; local
202 vpx_codec_ctx_t codec; local
[all...]
/external/chromium_org/third_party/webrtc/examples/android/media_demo/src/org/webrtc/webrtcdemo/
H A DMediaCodecVideoDecoder.java93 MediaCodec codec; field in class:MediaCodecVideoDecoder
122 codec.stop();
123 codec.release();
143 // TODO(henrike): enable more than ON2_VP8 codec.
151 codec = MediaCodec.createDecoderByType("video/x-vnd.on2.vp8");
155 codec = MediaCodec.createByCodecName("OMX.google.vpx.decoder");
159 codec = MediaCodec.createByCodecName("OMX.Exynos.VP8.Decoder");
176 codec.configure(format, surface, crypto, flags);
177 codec.start();
178 codecInputBuffers = codec
[all...]
/external/okhttp/okhttp-tests/src/test/java/com/squareup/okhttp/internal/spdy/
H A DHuffmanTest.java50 private static void assertRoundTrip(Huffman.Codec codec, byte[] buf) throws IOException { argument
54 codec.encode(buf, dos);
55 assertEquals(baos.size(), codec.encodedLength(buf));
57 byte[] decodedBytes = codec.decode(baos.toByteArray());
/external/tinycompress/
H A Dcplay.c129 int check_codec_format_supported(unsigned int card, unsigned int device, struct snd_codec *codec) argument
131 if (is_codec_supported(card, device, COMPRESS_IN, codec) == false) {
132 fprintf(stderr, "Error: This codec or format is not supported by DSP\n");
203 struct snd_codec codec; local
226 codec.id = SND_AUDIOCODEC_MP3;
227 codec.ch_in = channels;
228 codec.ch_out = channels;
229 codec.sample_rate = rate;
230 if (!codec.sample_rate) {
235 codec
[all...]
/external/chromium_org/third_party/webrtc/video_engine/test/libvietest/testbed/
H A Dtb_video_channel.cc28 for (int idx = 0; idx < ViE.codec->NumberOfCodecs(); idx++) {
29 EXPECT_EQ(0, ViE.codec->GetCodec(idx, videoCodec));
39 EXPECT_EQ(0, ViE.codec->SetSendCodec(videoChannel, videoCodec));
46 EXPECT_EQ(0, ViE.codec->SetReceiveCodec(videoChannel, videoCodec));
63 EXPECT_EQ(0, ViE.codec->GetSendCodec(videoChannel, videoCodec));
68 EXPECT_EQ(0, ViE.codec->SetSendCodec(videoChannel, videoCodec));
69 EXPECT_EQ(0, ViE.codec->SetReceiveCodec(videoChannel, videoCodec));
H A Dtb_interfaces.cc22 codec(NULL),
49 codec = webrtc::ViECodec::GetInterface(video_engine);
50 EXPECT_TRUE(codec != NULL);
63 EXPECT_EQ(0, codec->Release());
64 codec = NULL;
/external/apache-http/src/org/apache/commons/codec/binary/
H A DHex.java17 package org.apache.commons.codec.binary;
19 import org.apache.commons.codec.BinaryDecoder;
20 import org.apache.commons.codec.BinaryEncoder;
21 import org.apache.commons.codec.DecoderException;
22 import org.apache.commons.codec.EncoderException;
/external/chromium_org/media/base/
H A Dvideo_decoder_config.cc19 VideoDecoderConfig::VideoDecoderConfig(VideoCodec codec, argument
28 Initialize(codec, profile, format, coded_size, visible_rect, natural_size,
56 void VideoDecoderConfig::Initialize(VideoCodec codec, argument
69 UMA_HISTOGRAM_ENUMERATION("Media.VideoCodec", codec, kVideoCodecMax + 1);
83 codec_ = codec;
102 return ((codec() == config.codec()) &&
116 s << "codec: " << codec()
132 VideoCodec VideoDecoderConfig::codec() cons function in class:media::VideoDecoderConfig
[all...]
/external/chromium_org/media/cast/test/utility/
H A Ddefault_config.cc37 config.codec = media::cast::CODEC_AUDIO_OPUS;
50 config.codec = media::cast::CODEC_VIDEO_VP8;
64 config.codec = recv_config.codec;
84 config.codec = recv_config.codec;
/external/chromium_org/media/ffmpeg/
H A Dffmpeg_common.cc63 // Converts an FFmpeg audio codec ID into its corresponding supported codec id.
148 // Converts an FFmpeg video codec ID into its corresponding supported codec id.
280 AudioCodec codec = CodecIDToAudioCodec(codec_context->codec_id); local
289 if (codec == kCodecOpus) {
309 config->Initialize(codec,
319 if (codec != kCodecOpus) {
334 stream->codec, is_encrypted, config, record_stats);
340 codec_context->codec_id = AudioCodecToCodecID(config.codec(),
381 VideoCodec codec = CodecIDToVideoCodec(stream->codec->codec_id); local
[all...]
/external/chromium_org/third_party/libjingle/source/talk/media/base/
H A Dcodec_unittest.cc28 #include "talk/media/base/codec.h"
123 // Test a codec with a static payload type.
135 // Test a codec with a dynamic payload type.
145 // Test a codec with a dynamic payload type, and auto bitrate.
202 // Test a codec with a static payload type.
207 // Test a codec with a dynamic payload type.
266 // Test a codec with a static payload type.
271 // Test a codec with a dynamic payload type.
282 AudioCodec codec; local
283 codec
[all...]
/external/chromium_org/media/base/android/
H A Dmedia_codec_bridge.h65 // decode |codec| type.
66 static bool CanDecode(const std::string& codec, bool is_secure);
69 // TODO(qinmin): Currently the codecs string only contains one codec. Do we
80 // Get default codec name for |mime_type|.
88 // Please note that this clears all the inputs in the media codec. In other
105 // Returns the number of input buffers used by the codec.
162 // Returns the buffer to the codec. If you previously specified a surface when
166 // Returns the number of output buffers used by the codec.
169 // Returns the capacity of each output buffer used by the codec.
172 // Gets output buffers from media codec an
[all...]
/external/chromium_org/media/cdm/ppapi/external_clear_key/
H A Dcdm_video_decoder.cc34 if (config.codec == cdm::VideoDecoderConfig::kCodecVp8 ||
35 config.codec == cdm::VideoDecoderConfig::kCodecVp9) {
/external/chromium_org/third_party/webrtc/video_engine/
H A Dvie_codec_impl.cc30 static void LogCodec(const VideoCodec& codec) { argument
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
[all...]
/external/chromium_org/tools/relocation_packer/src/
H A Ddelta_encoder_unittest.cc41 RelocationDeltaCodec codec; local
44 codec.Encode(relocations, &packed);
52 codec.Encode(relocations, &packed);
65 codec.Encode(relocations, &packed);
86 codec.Encode(relocations, &packed);
112 RelocationDeltaCodec codec; local
113 codec.Decode(packed, &relocations);
136 codec.Decode(packed, &relocations);
/external/chromium_org/third_party/libjingle/source/talk/media/webrtc/
H A Dwebrtcvideoengine2.cc84 static void AddDefaultFeedbackParams(VideoCodec* codec) { argument
86 codec->AddFeedbackParam(kFir);
88 codec->AddFeedbackParam(kNack);
90 codec->AddFeedbackParam(kPli);
92 codec->AddFeedbackParam(kRemb);
95 static bool IsNackEnabled(const VideoCodec& codec) { argument
96 return codec.HasFeedbackParam(
100 static bool IsRembEnabled(const VideoCodec& codec) { argument
101 return codec.HasFeedbackParam(
169 const VideoCodec& codec,
168 CreateVideoStreams( const VideoCodec& codec, const VideoOptions& options, size_t num_streams) argument
199 CreateVideoEncoder( const VideoCodec& codec, const VideoOptions& options) argument
212 CreateVideoEncoderSettings( const VideoCodec& codec, const VideoOptions& options) argument
225 DestroyVideoEncoderSettings( const VideoCodec& codec, void* encoder_settings) argument
237 SupportsCodec(const VideoCodec& codec) argument
339 const VideoCodec& codec = config.max_codec; local
835 GetSendCodec(VideoCodec* codec) argument
1584 VideoCodec codec = codec_settings.codec; local
1731 webrtc::VideoCodec codec; local
[all...]
/external/chromium_org/third_party/libvpx/source/libvpx/
H A Dvpxenc.h36 const struct VpxInterface *codec; member in struct:VpxEncoderConfig
/external/chromium_org/third_party/webrtc/video_engine/test/libvietest/include/
H A Dtb_interfaces.h42 webrtc::ViECodec* codec; member in class:TbInterfaces
/external/chromium_org/third_party/webrtc/voice_engine/test/auto_test/
H A Dvoe_cpu_test.cc50 VoECodec* codec = _mgr.CodecPtr(); local
73 CHECK(codec->SetRecPayloadType(channel, isac));
74 CHECK(codec->SetSendCodec(channel, isac));
82 CHECK(codec->SetVADStatus(channel, true));
/external/libvpx/libvpx/
H A Dvpxenc.h29 const struct VpxInterface *codec; member in struct:VpxEncoderConfig
/external/apache-http/src/org/apache/commons/codec/language/
H A DRefinedSoundex.java17 package org.apache.commons.codec.language;
19 import org.apache.commons.codec.EncoderException;
20 import org.apache.commons.codec.StringEncoder;
H A DSoundexUtils.java17 package org.apache.commons.codec.language;
19 import org.apache.commons.codec.EncoderException;
20 import org.apache.commons.codec.StringEncoder;

Completed in 7116 milliseconds

1234567891011>>