HomeSort by relevance Sort by last modified time
    Searched refs:codec (Results 276 - 300 of 718) sorted by null

<<11121314151617181920>>

  /external/webrtc/webrtc/modules/video_coding/
video_sender_unittest.cc 145 EXPECT_EQ(kRtpVideoVp8, frame_data_[i].rtp_video_header.codec);
157 EXPECT_EQ(kRtpVideoVp8, frame_data_[i].rtp_video_header.codec);
208 VideoCodingModule::Codec(kVideoCodecVP8, &settings_);
381 VideoCodec codec;
382 VideoCodingModule::Codec(kVideoCodecVP8, &codec);
383 codec.width = width;
384 codec.height = height;
385 codec.codecSpecific.VP8.numberOfTemporalLayers = temporal_layers;
386 return codec;
    [all...]
  /frameworks/av/media/libstagefright/
MediaCodecListOverrides.cpp 47 // a limit to avoid allocating unreasonable number of codec instances in the measurement.
148 sp<MediaCodec> codec = MediaCodec::CreateByComponentName(looper, name.c_str(), &err); local
150 ALOGE("Failed to create codec: %s", name.c_str());
154 err = codec->configure(format, NULL, NULL, MediaCodec::CONFIGURE_FLAG_ENCODE);
156 ALOGE("Failed to configure codec: %s with mime: %s", name.c_str(), mime.c_str());
157 codec->release();
162 err = codec->createInputSurface(&bufferProducer);
165 codec->release();
177 err = codec->release();
179 ALOGW("Failed to release codec: %s with mime: %s", name.c_str(), mime.c_str())
205 sp<MediaCodec> codec = MediaCodec::CreateByComponentName(looper, name.c_str(), &err); local
360 AString codec = local
    [all...]
SimpleDecodingSource.cpp 56 sp<MediaCodec> codec; local
64 ALOGV("Attempting to allocate codec '%s'", componentName.c_str());
66 codec = MediaCodec::CreateByComponentName(looper, componentName);
67 if (codec != NULL) {
68 ALOGI("Successfully allocated codec '%s'", componentName.c_str());
70 status_t err = codec->configure(format, surface, NULL /* crypto */, 0 /* flags */);
72 err = codec->getOutputFormat(&format);
75 return new SimpleDecodingSource(codec, source, looper, surface != NULL, format);
78 ALOGD("Failed to configure codec '%s'", componentName.c_str());
79 codec->release()
    [all...]
  /external/apache-http/src/org/apache/commons/codec/binary/
BinaryCodec.java 17 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;
83 * @see org.apache.commons.codec.BinaryEncoder#encode(byte[])
97 * @see org.apache.commons.codec.Encoder#encode(java.lang.Object)
114 * @see org.apache.commons.codec.Decoder#decode(java.lang.Object)
138 * @see org.apache.commons.codec.Decoder#decode(Object)
150 * @see org.apache.commons.codec.Decoder#decode(Object
    [all...]
  /external/skia/gm/
filterindiabox.cpp 102 SkImageDecoder* codec = nullptr; local
106 codec = SkImageDecoder::Factory(&stream);
108 if (codec) {
110 codec->decode(&stream, &fBM, kN32_SkColorType, SkImageDecoder::kDecodePixels_Mode);
111 delete codec;
  /external/skia/include/core/
SkImageDecoder.h 134 * By default, the codec will try to comply with the "pref" colortype
136 * to override that, causing the codec to try to match the src depth instead
154 // Note: this is a hint, and the codec may choose to ignore this, or only
205 which will allocated a pixelRef. To access the pixel memory, the codec
377 #define DECLARE_DECODER_CREATOR(codec) \
378 SkImageDecoder *Create ## codec ();
382 #define DEFINE_DECODER_CREATOR(codec) \
383 SkImageDecoder* Create##codec() { return new Sk##codec; }
  /external/skia/samplecode/
SampleSubpixelTranslate.cpp 30 SkImageDecoder* codec = nullptr; local
33 codec = SkImageDecoder::Factory(&stream);
35 if (codec) {
37 codec->decode(&stream, &fBM, kN32_SkColorType, SkImageDecoder::kDecodePixels_Mode);
38 delete codec;
  /external/skia/src/images/
SkImageDecoder.cpp 181 SkImageDecoder* codec = SkImageDecoder::Factory(stream); local
183 if (codec) {
184 success = codec->decode(stream, bm, pref, mode) != kFailure;
186 *format = codec->getFormat();
193 delete codec;
  /external/webrtc/webrtc/modules/audio_coding/acm2/
acm_send_test_oldapi.cc 55 CodecInst codec; local
56 RTC_CHECK_EQ(0, AudioCodingModule::Codec(payload_name, &codec,
58 codec.pltype = payload_type;
59 codec.pacsize = frame_size_samples;
60 codec_registered_ = (acm_->RegisterSendCodec(codec) == 0);
audio_coding_module_impl.cc 39 bool IsCodecRED(const CodecInst& codec) {
40 return (STR_CASE_CMP(codec.plname, "RED") == 0);
43 bool IsCodecCN(const CodecInst& codec) {
44 return (STR_CASE_CMP(codec.plname, "CN") == 0);
137 // Scale the timestamp to the codec's RTP timestamp rate.
198 // Can be called multiple times for Codec, CNG, RED.
226 // Get current send codec.
249 "SendFrequency Failed, no codec is registered");
312 // Do we have a codec registered?
368 // This variable is true if primary codec and secondary codec (if exists
    [all...]
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/examples/
vpx_temporal_scalable_patterns.c 433 vpx_codec_ctx_t codec; local
467 die("Unsupported codec.");
568 // Initialize codec.
569 if (vpx_codec_enc_init(&codec, encoder->interface(), &cfg, 0))
570 die_codec(&codec, "Failed to initialize encoder");
573 vpx_codec_control(&codec, VP8E_SET_CPUUSED, -speed);
574 vpx_codec_control(&codec, VP8E_SET_NOISE_SENSITIVITY, 1);
576 vpx_codec_control(&codec, VP8E_SET_CPUUSED, speed);
577 vpx_codec_control(&codec, VP9E_SET_AQ_MODE, 3);
578 vpx_codec_control(&codec, VP9E_SET_FRAME_PERIODIC_BOOST, 0)
    [all...]
  /external/webrtc/webrtc/modules/rtp_rtcp/test/testAPI/
test_api_video.cc 158 VideoCodec codec; local
159 codec.codecType = kVideoCodecVP8;
160 codec.plType = kPayloadType;
161 strncpy(codec.plName, "VP8", 4);
162 EXPECT_EQ(0, rtp_receiver_->RegisterReceivePayload(codec.plName,
163 codec.plType,
166 codec.maxBitrate));
  /external/skia/tools/
imgslice.cpp 68 SkAutoTDelete<SkImageDecoder> codec(SkImageDecoder::Factory(&inputStream));
69 if (!codec) {
71 SkDebugf("Couldn't create codec for: %s.\n", FLAGS_image[0]);
79 codec->decode(&inputStream, &bitmap, kN32_SkColorType, SkImageDecoder::kDecodePixels_Mode);
  /external/webrtc/talk/media/webrtc/
webrtcvoe.h 99 webrtc::VoECodec* codec,
107 codec_(codec),
117 webrtc::VoECodec* codec() const { return codec_.get(); } function in class:cricket::VoEWrapper
  /external/webrtc/webrtc/modules/audio_coding/include/
audio_coding_module.h 101 // int32_t Codec()
102 // Get supported codec with list number.
108 // -codec : a structure where the parameters of the codec,
115 static int Codec(int list_id, CodecInst* codec);
118 // int32_t Codec()
119 // Get supported codec with the given codec name, sampling frequency, and
123 // -payload_name : name of the codec
    [all...]
  /external/libvpx/libvpx/examples/
vpx_temporal_svc_encoder.c 468 vpx_codec_ctx_t codec; local
522 die("Unsupported codec.");
674 // Initialize codec.
677 &codec, encoder->codec_interface(), &cfg,
680 if (vpx_codec_enc_init(&codec, encoder->codec_interface(), &cfg, 0))
682 die_codec(&codec, "Failed to initialize encoder");
685 vpx_codec_control(&codec, VP8E_SET_CPUUSED, -speed);
686 vpx_codec_control(&codec, VP8E_SET_NOISE_SENSITIVITY, kDenoiserOff);
687 vpx_codec_control(&codec, VP8E_SET_STATIC_THRESHOLD, 1);
690 vpx_codec_control(&codec, VP8E_SET_CPUUSED, speed)
    [all...]
  /development/ndk/platforms/android-21/samples/native-codec/jni/
Android.mk 19 LOCAL_MODULE := native-codec-jni
20 LOCAL_SRC_FILES := native-codec-jni.cpp looper.cpp
  /device/huawei/angler/camera/QCamera2/stack/mm-jpeg-interface/
Android.mk 23 $(LOCAL_PATH)/../../../mm-image-codec/qexif \
24 $(LOCAL_PATH)/../../../mm-image-codec/qomx_core
  /device/lge/bullhead/camera/QCamera2/stack/mm-jpeg-interface/
Android.mk 23 $(LOCAL_PATH)/../../../mm-image-codec/qexif \
24 $(LOCAL_PATH)/../../../mm-image-codec/qomx_core
  /device/moto/shamu/camera/QCamera2/stack/mm-jpeg-interface/test/
Android.mk 19 OMX_CORE_DIR := device/moto/shamu/camera/mm-image-codec
56 OMX_CORE_DIR := device/moto/shamu/camera/mm-image-codec
  /external/chromium-trace/catapult/third_party/gsutil/third_party/pyasn1-modules/tools/
cmpdump.py 4 from pyasn1.codec.der import decoder, encoder
crldump.py 8 from pyasn1.codec.der import encoder, decoder
pkcs10dump.py 6 from pyasn1.codec.der import decoder, encoder
pkcs1dump.py 8 from pyasn1.codec.der import encoder, decoder
pkcs8dump.py 6 from pyasn1.codec.der import decoder, encoder

Completed in 449 milliseconds

<<11121314151617181920>>