/external/skia/tools/ |
skdiff_utils.cpp | 54 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, SkBitmap::kARGB_8888_Config, mode)) { 67 SkDebugf("ERROR: codec failed for basePath <%s>\n", resource.fFullPath.c_str());
|
/frameworks/wilhelm/tests/examples/ |
xaVideoDecoderCapabilities.cpp | 52 sprintf(unknown, "Video codec %d unknown to OpenMAX AL", decoderId); 95 // Map a video codec and profile to string 97 const char *videoProfileToString(XAuint32 codec, XAuint32 profile) { 155 return id_pair_to_string(codec, profile, table, sizeof(table) / sizeof(table[0])); 158 // Map a video codec and level to string 160 const char* videoLevelToString(XAuint32 codec, XAuint32 level) { 219 return id_pair_to_string(codec, level, table, sizeof(table) / sizeof(table[0]));
|
/hardware/qcom/camera/QCamera2/stack/mm-camera-test/ |
Android.mk | 30 $(LOCAL_PATH)/../../../mm-image-codec/qexif \ 31 $(LOCAL_PATH)/../../../mm-image-codec/qomx_core
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/email/ |
charset.py | 97 # Map charsets to their Unicode codec strings. 129 Both input_charset and output_charset must have Unicode codec entries in 130 the module's charset-to-codec mapping; use add_codec(charset, codecname) 149 """Add a codec that map characters in the given charset to/from Unicode. 152 of a Python codec, as appropriate for the second argument to the unicode() 196 input_codec: The name of the Python codec used to convert the 197 input_charset to Unicode. If no conversion codec is 200 output_codec: The name of the Python codec used to convert Unicode 201 to the output_charset. If no conversion codec is necessary, 236 # guess and try a Unicode codec with the same name as input_codec [all...] |
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/email/ |
charset.py | 97 # Map charsets to their Unicode codec strings. 129 Both input_charset and output_charset must have Unicode codec entries in 130 the module's charset-to-codec mapping; use add_codec(charset, codecname) 149 """Add a codec that map characters in the given charset to/from Unicode. 152 of a Python codec, as appropriate for the second argument to the unicode() 196 input_codec: The name of the Python codec used to convert the 197 input_charset to Unicode. If no conversion codec is 200 output_codec: The name of the Python codec used to convert Unicode 201 to the output_charset. If no conversion codec is necessary, 236 # guess and try a Unicode codec with the same name as input_codec [all...] |
/external/chromium_org/third_party/libjingle/source/talk/session/media/ |
mediasession.h | 38 #include "talk/media/base/codec.h" 312 void AddCodec(const C& codec) { 313 codecs_.push_back(codec); 316 typename std::vector<C>::const_iterator codec; local 317 for (codec = codecs.begin(); codec != codecs.end(); ++codec) { 318 AddCodec(*codec);
|
/external/chromium_org/media/cdm/ppapi/ |
ffmpeg_cdm_audio_decoder.cc | 48 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.
|
/external/chromium_org/remoting/codec/ |
video_encoder_vpx.cc | 5 #include "remoting/codec/video_encoder_vpx.h" 33 ScopedVpxCodec codec(new vpx_codec_ctx_t); 64 if (vpx_codec_enc_init(codec.get(), algo, &config, 0)) 69 if (vpx_codec_control(codec.get(), VP8E_SET_CPUUSED, 16)) 74 if (vpx_codec_control(codec.get(), VP8E_SET_NOISE_SENSITIVITY, 0)) 77 return codec.Pass(); 244 // Initialize the codec.
|
/external/chromium_org/third_party/libjingle/source/talk/media/webrtc/ |
webrtcvideoengine_unittest.cc | 83 engine, // codec 163 // Video codec properties. 313 cricket::VideoCodec codec; local 314 EXPECT_TRUE(channel_->GetSendCodec(&codec)); 315 EXPECT_EQ("10", codec.params[cricket::kCodecParamMinBitrate]); 316 EXPECT_EQ("20", codec.params[cricket::kCodecParamMaxBitrate]); 351 cricket::VideoCodec codec; local 352 EXPECT_TRUE(channel_->GetSendCodec(&codec)); 353 EXPECT_EQ("21", codec.params[cricket::kCodecParamMaxQuantization]); 422 // the send codec [all...] |
webrtcvideoengine.cc | 114 // Static allocation of payload type values for external video codec. 165 static bool IsNackEnabled(const VideoCodec& codec) { 166 return codec.HasFeedbackParam(FeedbackParam(kRtcpFbParamNack, 171 static bool IsRembEnabled(const VideoCodec& codec) { 172 return codec.HasFeedbackParam(FeedbackParam(kRtcpFbParamRemb, 626 void InitializeAdapterOutputFormat(const webrtc::VideoCodec& codec) { 627 VideoFormat format(codec.width, codec.height, 628 VideoFormat::FpsToInterval(codec.maxFramerate), 874 LOG(LS_ERROR) << "Failed to initialize list of supported codec types" [all...] |
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/ |
test_multibytecodec_support.py | 17 encoding = '' # codec name 18 codec = None # codec tuple (with 4 elements) variable in class:TestBase 21 codectests = None # must set. codec test tuple 28 if self.codec is None: 29 self.codec = codecs.lookup(self.encoding) 30 self.encode = self.codec.encode 31 self.decode = self.codec.decode 32 self.reader = self.codec.streamreader 33 self.writer = self.codec.streamwrite [all...] |
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/ |
test_multibytecodec_support.py | 17 encoding = '' # codec name 18 codec = None # codec tuple (with 4 elements) variable in class:TestBase 21 codectests = None # must set. codec test tuple 28 if self.codec is None: 29 self.codec = codecs.lookup(self.encoding) 30 self.encode = self.codec.encode 31 self.decode = self.codec.decode 32 self.reader = self.codec.streamreader 33 self.writer = self.codec.streamwrite [all...] |
/external/chromium_org/media/filters/ |
ffmpeg_demuxer.cc | 55 switch (stream->codec->codec_type) { 77 if (stream_->codec->codec_id == AV_CODEC_ID_H264) { 79 new FFmpegH264ToAnnexBBitstreamConverter(stream_->codec)); 507 AVCodecContext* codec_context = format_context->streams[i]->codec; 565 // is examined to determine if it is supported or not (is the codec enabled 580 AVCodecContext* codec_context = stream->codec; 587 // Log the codec detected, whether it is supported or not. 590 // Ensure the codec is supported. IsValidConfig() also checks that the 600 // Log the codec detected, whether it is supported or not. 603 // Ensure the codec is supported. IsValidConfig() also checks that th 680 AVCodec* codec = avcodec_find_decoder(audio_codec->codec_id); local 698 AVCodec* codec = avcodec_find_decoder(video_codec->codec_id); local [all...] |
ffmpeg_audio_decoder.cc | 59 DCHECK(s->codec->capabilities & CODEC_CAP_DR1); 164 int FFmpegAudioDecoder::GetAudioBuffer(AVCodecContext* codec, 330 << " codec: " << config.codec() 367 AVCodec* codec = avcodec_find_decoder(codec_context_->codec_id); local 368 if (!codec || avcodec_open2(codec_context_.get(), codec, NULL) < 0) { 455 // Currently Vorbis is the only codec that causes us to drop samples.
|
/external/libvpx/libvpx/ |
vp9_spatial_scalable_encoder.c | 286 "Codec %s\nframes: %d, skip: %d\n" 302 vpx_codec_ctx_t codec; local 326 // Initialize codec 327 if (vpx_svc_init(&svc_ctx, &codec, vpx_codec_vp9_cx(), &enc_cfg) != 346 res = vpx_svc_encode(&svc_ctx, &codec, &raw, pts, frame_duration, 350 die_codec(&codec, "Failed to encode frame"); 364 if (vpx_codec_destroy(&codec)) die_codec(&codec, "Failed to destroy codec");
|
/frameworks/opt/net/voip/src/jni/rtp/ |
AudioGroup.cpp | 100 AudioCodec *codec, int sampleRate, int sampleCount, 166 AudioCodec *codec, int sampleRate, int sampleCount, 202 if (codec) { 204 mCodec = codec; 222 (codec ? codec->name : "RAW"), mSampleRate, mInterval, mMode); 943 AudioCodec *codec = NULL; local 969 // Create audio codec. 974 codec = newAudioCodec(codecName); 975 int sampleCount = (codec ? codec->set(sampleRate, codecSpec) : -1) [all...] |
/external/chromium/third_party/libjingle/source/talk/session/phone/ |
channelmanager.h | 77 // Retrieves the list of supported audio & video codec types. 82 // Determines if a specific audio or video codec is supported. 84 bool FindAudioCodec(const AudioCodec& codec) const { 85 return media_engine_->FindAudioCodec(codec);
|
codec.h | 44 // Creates a codec with the given parameters. 49 // Creates an empty codec. 52 // Indicates if this codec is compatible with the specified codec. 54 bool Matches(const AudioCodec& codec) const; 95 // Creates a codec with the given parameters. 99 // Creates an empty codec. 104 bool Matches(const VideoCodec& codec) const;
|
filemediaengine.h | 33 #include "talk/session/phone/codec.h" 107 virtual bool FindAudioCodec(const AudioCodec& codec) { return true; } 108 virtual bool FindVideoCodec(const VideoCodec& codec) { return true; }
|
/external/chromium_org/content/browser/speech/ |
audio_encoder.cc | 173 AudioEncoder* AudioEncoder::Create(Codec codec, 176 if (codec == CODEC_FLAC)
|
/external/chromium_org/media/cast/net/rtp_sender/ |
rtp_sender.cc | 33 config_.audio_codec = audio_config->codec; 41 config_.video_codec = video_config->codec;
|
/external/chromium_org/media/cast/video_receiver/ |
video_receiver_unittest.cc | 41 EXPECT_EQ(kVp8, video_frame->codec); 72 config_.codec = kVp8;
|
/external/chromium_org/third_party/libjingle/source/talk/media/other/ |
linphonemediaengine.h | 41 #include "talk/media/base/codec.h" 93 virtual bool FindAudioCodec(const AudioCodec& codec); 94 virtual bool FindVideoCodec(const VideoCodec& codec) { return true; }
|
/external/chromium_org/third_party/mesa/src/src/gallium/include/pipe/ |
p_video_state.h | 111 enum pipe_video_codec codec; member in struct:pipe_quant_matrix 116 enum pipe_video_codec codec; member in struct:pipe_macroblock
|
/external/libvpx/libvpx/examples/ |
encoder_tmpl.c | 111 vpx_codec_ctx_t codec; local 160 while( (pkt = vpx_codec_get_cx_data(&codec, &iter)) ) {
|