Searched refs:codec (Results 226 - 250 of 439) sorted by relevance

1234567891011>>

/external/chromium_org/third_party/skia/tools/
H A Dskdiff_utils.cpp38 SkImageDecoder* codec = SkImageDecoder::Factory(&stream); local
39 if (NULL == codec) {
40 SkDebugf("ERROR: no codec found for <%s>\n", resource.fFullPath.c_str());
47 SkAutoTDelete<SkImageDecoder> ad(codec);
50 if (!codec->decode(&stream, &resource.fBitmap, kN32_SkColorType, mode)) {
51 SkDebugf("ERROR: codec failed for basePath <%s>\n", resource.fFullPath.c_str());
/external/chromium_org/third_party/webrtc/modules/video_coding/main/test/
H A Dvcm_payload_sink_factory.cc155 VideoCodec codec; local
156 if (VideoCodingModule::Codec(it->codec_type(), &codec) < 0) {
159 codec.plType = it->payload_type();
160 if (vcm->RegisterReceiveCodec(&codec, 1) < 0) {
/external/chromium_org/third_party/webrtc/video/
H A Dreceive_statistics_proxy.h41 ViECodec* codec,
/external/libvorbis/examples/
H A Dvorbisfile_example.c25 #include <vorbis/codec.h>
/external/skia/tools/
H A Dskdiff_utils.cpp54 SkImageDecoder* codec = SkImageDecoder::Factory(&stream); local
55 if (NULL == codec) {
56 SkDebugf("ERROR: no codec found for <%s>\n", resource.fFullPath.c_str());
63 SkAutoTDelete<SkImageDecoder> ad(codec);
66 if (!codec->decode(&stream, &resource.fBitmap, kN32_SkColorType, mode)) {
67 SkDebugf("ERROR: codec failed for basePath <%s>\n", resource.fFullPath.c_str());
/external/chromium_org/third_party/libvpx/source/libvpx/examples/
H A Dvp9_spatial_svc_encoder.c275 vpx_codec_ctx_t codec; local
300 // Initialize codec
301 if (vpx_svc_init(&svc_ctx, &codec, vpx_codec_vp9_cx(), &enc_cfg) !=
331 res = vpx_svc_encode(&svc_ctx, &codec, (end_of_stream ? NULL : &raw),
335 die_codec(&codec, "Failed to encode frame");
338 while ((cx_pkt = vpx_codec_get_cx_data(&codec, &iter)) != NULL) {
374 if (vpx_codec_destroy(&codec)) die_codec(&codec, "Failed to destroy codec");
/external/chromium_org/third_party/webrtc/modules/audio_coding/main/acm2/
H A Daudio_coding_module_impl.cc61 bool IsCodecRED(const CodecInst* codec) { argument
62 return (STR_CASE_CMP(codec->plname, "RED") == 0);
69 bool IsCodecCN(const CodecInst* codec) { argument
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
742 CreateCodec(const CodecInst& codec) argument
1638 RegisterReceiveCodec(const CodecInst& codec) argument
1977 GetAudioDecoder(const CodecInst& codec, int codec_id, int mirror_id, AudioDecoder** decoder) argument
2062 webrtc::CodecInst codec; local
2107 webrtc::CodecInst codec; local
[all...]
H A Dacm_receiver.cc111 // Is the given codec a CNG codec?
279 // If this is a CNG while the audio codec is not mono skip pushing in
289 // This is either the first audio packet or send codec is changed.
297 // received or codec is changed. Furthermore, reset is required if codec
427 // We might end up here ONLY if codec is changed.
434 // We might end up here ONLY if codec is changed.
495 // Re-registering the same codec with the same payload-type. Do nothing
500 // Changing the payload-type or number of channels for this codec
[all...]
/external/chromium_org/third_party/webrtc/examples/android/media_demo/jni/
H A Dvoice_engine_jni.cc58 codec(webrtc::VoECodec::GetInterface(ve)),
67 CHECK(codec != NULL, "Failed to acquire codec interface");
81 ReleaseSubApi(codec);
119 webrtc::VoECodec* const codec; member in class:__anon15741::VoiceEngineData::webrtc
317 return voe_data->codec->NumOfCodecs();
322 webrtc::CodecInst* codec = new webrtc::CodecInst(); local
323 CHECK(voe_data->codec->GetCodec(index, *codec) == 0,
328 jni->NewObject(j_codec_class, j_codec_ctor, jlongFromPointer(codec));
[all...]
/external/chromium_org/media/cdm/ppapi/external_clear_key/
H A Dffmpeg_cdm_audio_decoder.cc48 codec_context->codec_id = CdmAudioCodecToCodecID(config.codec);
168 AVCodec* codec = avcodec_find_decoder(codec_context_->codec_id); local
169 if (!codec || avcodec_open2(codec_context_.get(), codec, NULL) < 0) {
213 return config.codec != cdm::AudioDecoderConfig::kUnknownAudioCodec &&
304 // Currently Vorbis is the only codec that causes us to drop samples.
H A Dffmpeg_cdm_video_decoder.cc95 codec_context->codec_id = CdmVideoCodecToCodecID(config.codec);
169 AVCodec* codec = avcodec_find_decoder(codec_context_->codec_id); local
170 if (!codec) {
176 if ((status = avcodec_open2(codec_context_.get(), codec, NULL)) < 0) {
/external/chromium_org/media/filters/
H A Dffmpeg_demuxer.cc107 switch (stream->codec->codec_type) {
152 if (stream_->codec->codec_id == AV_CODEC_ID_H264) {
154 new FFmpegH264ToAnnexBBitstreamConverter(stream_->codec));
260 // Because FFmpeg rolls codec delay and skip samples into one we can only
732 AVCodecContext* codec_context = format_context->streams[i]->codec;
792 // is examined to determine if it is supported or not (is the codec enabled
838 const AVCodecContext* codec_context = stream->codec;
845 // Log the codec detected, whether it is supported or not.
848 // Ensure the codec is supported. IsValidConfig() also checks that the
858 // Log the codec detecte
998 AVCodec* codec = avcodec_find_decoder(audio_codec->codec_id); local
1016 AVCodec* codec = avcodec_find_decoder(video_codec->codec_id); local
[all...]
H A Dvpx_video_decoder.cc56 if (config.codec() == kCodecVP9) {
239 config.codec() == kCodecVP9 ?
253 if (config.codec() != kCodecVP8 && config.codec() != kCodecVP9)
258 if (config.codec() == kCodecVP8 && config.format() != VideoFrame::YV12A)
269 if (config.codec() == kCodecVP9) {
/external/chromium_org/remoting/client/
H A Dsoftware_video_renderer.cc17 #include "remoting/codec/video_decoder.h"
18 #include "remoting/codec/video_decoder_verbatim.h"
20 #include "remoting/codec/video_decoder_vpx.h"
148 // Initialize decoder based on the selected codec.
149 ChannelConfig::Codec codec = config.video_config().codec; local
150 if (codec == ChannelConfig::CODEC_VERBATIM) {
153 } else if (codec == ChannelConfig::CODEC_VP8) {
155 } else if (codec == ChannelConfig::CODEC_VP9) {
159 NOTREACHED() << "Invalid Encoding found: " << codec;
[all...]
/external/libvpx/libvpx/examples/
H A Dvp9_spatial_scalable_encoder.c287 vpx_codec_ctx_t codec; local
311 // Initialize codec
312 if (vpx_svc_init(&svc_ctx, &codec, vpx_codec_vp9_cx(), &enc_cfg) !=
346 res = vpx_svc_encode(&svc_ctx, &codec, (end_of_stream ? NULL : &raw),
350 die_codec(&codec, "Failed to encode frame");
374 if (vpx_codec_destroy(&codec)) die_codec(&codec, "Failed to destroy codec");
/external/chromium_org/content/browser/speech/
H A Daudio_encoder.cc173 AudioEncoder* AudioEncoder::Create(Codec codec, argument
176 if (codec == CODEC_FLAC)
/external/chromium_org/third_party/libjingle/source/talk/media/other/
H A Dlinphonemediaengine.h40 #include "talk/media/base/codec.h"
91 virtual bool FindAudioCodec(const AudioCodec& codec);
92 virtual bool FindVideoCodec(const VideoCodec& codec) { return true; } argument
/external/chromium_org/third_party/libvpx/source/libvpx/test/
H A Ddecode_api_test.cc61 // Test VP9 codec controls after a decode error to ensure the code doesn't
105 const vpx_codec_iface_t *const codec = &vpx_codec_vp9_dx_algo; local
114 EXPECT_EQ(VPX_CODEC_OK, vpx_codec_dec_init(&dec, codec, NULL, 0));
H A Dencode_test_driver.h176 explicit EncoderTest(const CodecFactory *codec) argument
177 : codec_(codec), abort_(false), init_flags_(0), frame_flags_(0),
/external/chromium_org/third_party/mesa/src/src/gallium/include/pipe/
H A Dp_video_state.h111 enum pipe_video_codec codec; member in struct:pipe_quant_matrix
116 enum pipe_video_codec codec; member in struct:pipe_macroblock
/external/chromium_org/third_party/webrtc/video_engine/test/auto_test/primitives/
H A Dframedrop_primitives.cc169 webrtc::ViECodec *codec_interface = interfaces.codec;
178 // Set up all receive codecs. This basically setup the codec interface
201 // Setup only the VP8 codec, which is what we'll use.
202 webrtc::VideoCodec codec; local
204 &codec));
205 codec.startBitrate = bit_rate_kbps;
206 codec.maxBitrate = bit_rate_kbps;
207 codec.width = width;
208 codec.height = height;
209 EXPECT_EQ(0, codec_interface->SetSendCodec(video_channel, codec));
[all...]
/external/libvpx/libvpx/test/
H A Dencode_test_driver.h176 explicit EncoderTest(const CodecFactory *codec) argument
177 : codec_(codec), abort_(false), init_flags_(0), frame_flags_(0),
/external/mesa3d/src/gallium/include/pipe/
H A Dp_video_state.h111 enum pipe_video_codec codec; member in struct:pipe_quant_matrix
116 enum pipe_video_codec codec; member in struct:pipe_macroblock
/external/apache-http/src/org/apache/http/impl/auth/
H A DBasicScheme.java33 import org.apache.commons.codec.binary.Base64;
/external/chromium_org/media/cast/sender/
H A Daudio_encoder.cc47 Codec codec,
52 codec_(codec),
345 Codec codec,
351 switch (codec) {
366 NOTREACHED() << "Unsupported or unspecified codec for audio encoder";
46 ImplBase(const scoped_refptr<CastEnvironment>& cast_environment, Codec codec, int num_channels, int sampling_rate, const FrameEncodedCallback& callback) argument
340 AudioEncoder( const scoped_refptr<CastEnvironment>& cast_environment, int num_channels, int sampling_rate, int bitrate, Codec codec, const FrameEncodedCallback& frame_encoded_callback) argument

Completed in 1907 milliseconds

1234567891011>>