/external/apache-http/src/org/apache/commons/codec/binary/ |
Hex.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;
|
/frameworks/av/include/media/ |
MediaProfiles.h | 94 * vid.codec - video encoder. see mediarecorder.h for details. 95 * aud.codec - audio encoder. see mediarecorder.h for details. 137 int getVideoEncoderParamByName(const char *name, video_encoder codec) const; 153 * Returns the value for the given param name for the video editor export codec format 158 * Supported param codec are: 163 int getVideoEditorExportParamByName(const char *name, int codec) const; 182 int getAudioEncoderParamByName(const char *name, audio_encoder codec) const; 217 VideoCodec(video_encoder codec, int bitRate, int frameWidth, int frameHeight, int frameRate) 218 : mCodec(codec), 242 AudioCodec(audio_encoder codec, int bitRate, int sampleRate, int channels [all...] |
/external/chromium_org/chrome/browser/bookmarks/ |
bookmark_storage.cc | 65 BookmarkCodec codec; local 67 codec.Decode(details->bb_node(), details->other_folder_node(), 70 details->set_computed_checksum(codec.computed_checksum()); 71 details->set_stored_checksum(codec.stored_checksum()); 72 details->set_ids_reassigned(codec.ids_reassigned()); 73 details->set_model_meta_info_map(codec.model_meta_info_map()); 75 codec.model_sync_transaction_version()); 159 BookmarkCodec codec; local 160 scoped_ptr<Value> value(codec.Encode(model_));
|
/external/chromium_org/media/base/ |
video_decoder_config.cc | 19 VideoDecoderConfig::VideoDecoderConfig(VideoCodec codec, 28 Initialize(codec, profile, format, coded_size, visible_rect, natural_size, 56 void VideoDecoderConfig::Initialize(VideoCodec codec, 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() const function in class:media::VideoDecoderConfig [all...] |
audio_decoder_config.h | 20 // values. When deleting a codec replace it with a dummy value; when adding a 21 // codec, do so at the bottom before kAudioCodecMax. 39 // The only acceptable time to add a new codec is if there is production code 40 // that uses said codec in the same CL. 57 AudioDecoderConfig(AudioCodec codec, SampleFormat sample_format, 65 void Initialize(AudioCodec codec, SampleFormat sample_format, 80 AudioCodec codec() const { return codec_; } function in class:media::AudioDecoderConfig 116 // |codec_delay_| is the overall delay overhead added by the codec while
|
/frameworks/base/media/jni/ |
android_media_MediaCodec.cpp | 330 JNIEnv *env, jobject thiz, const sp<JMediaCodec> &codec) { 332 if (codec != NULL) { 333 codec->incStrong(thiz); 338 env->SetIntField(thiz, gFields.context, (int)codec.get()); 427 sp<JMediaCodec> codec = getMediaCodec(env, thiz); local 429 if (codec == NULL) { 461 err = codec->configure(format, bufferProducer, crypto, flags); 470 sp<JMediaCodec> codec = getMediaCodec(env, thiz); local 471 if (codec == NULL) { 478 status_t err = codec->createInputSurface(&bufferProducer) 492 sp<JMediaCodec> codec = getMediaCodec(env, thiz); local 507 sp<JMediaCodec> codec = getMediaCodec(env, thiz); local 522 sp<JMediaCodec> codec = getMediaCodec(env, thiz); local 544 sp<JMediaCodec> codec = getMediaCodec(env, thiz); local 570 sp<JMediaCodec> codec = getMediaCodec(env, thiz); local 702 sp<JMediaCodec> codec = getMediaCodec(env, thiz); local 723 sp<JMediaCodec> codec = getMediaCodec(env, thiz); local 745 sp<JMediaCodec> codec = getMediaCodec(env, thiz); local 761 sp<JMediaCodec> codec = getMediaCodec(env, thiz); local 776 sp<JMediaCodec> codec = getMediaCodec(env, thiz); local 799 sp<JMediaCodec> codec = getMediaCodec(env, thiz); local 825 sp<JMediaCodec> codec = getMediaCodec(env, thiz); local 848 sp<JMediaCodec> codec = getMediaCodec(env, thiz); local 867 sp<JMediaCodec> codec = getMediaCodec(env, thiz); local 949 sp<JMediaCodec> codec = new JMediaCodec(env, thiz, tmp, nameIsType, encoder); local [all...] |
/external/chromium_org/media/cast/ |
cast_config.h | 55 AudioCodec codec; member in struct:media::cast::AudioSenderConfig 86 int max_number_of_video_buffers_used; // Max value depend on codec. 87 VideoCodec codec; member in struct:media::cast::VideoSenderConfig 111 AudioCodec codec; member in struct:media::cast::AudioReceiverConfig 137 VideoCodec codec; member in struct:media::cast::VideoReceiverConfig 147 VideoCodec codec; member in struct:media::cast::EncodedVideoFrame 169 AudioCodec codec; member in struct:media::cast::EncodedAudioFrame 223 // Query the codec about how many frames it has skipped due to slow ACK.
|
/external/chromium_org/media/ffmpeg/ |
ffmpeg_common.cc | 62 // Converts an FFmpeg audio codec ID into its corresponding supported codec id. 147 // Converts an FFmpeg video codec ID into its corresponding supported codec id. 279 AudioCodec codec = CodecIDToAudioCodec(codec_context->codec_id); local 287 if (codec == kCodecOpus) { 306 config->Initialize(codec, 316 if (codec != kCodecOpus) { 331 stream->codec, is_encrypted, config, record_stats); 337 codec_context->codec_id = AudioCodecToCodecID(config.codec(), 378 VideoCodec codec = CodecIDToVideoCodec(stream->codec->codec_id); local [all...] |
/cts/suite/cts/deviceTests/videoperf/src/com/android/cts/videoperf/ |
VideoEncoderDecoderTest.java | 125 * Run encoding / decoding test for given mimeType of codec 134 Log.i(TAG, "Codec " + mimeType + "with " + w + "," + h + " not supported"); 208 MediaCodec codec = MediaCodec.createEncoderByType(mimeType); 210 codec.configure( 216 Log.e(TAG, "codec '" + mimeType + "' failed configuration."); 217 assertTrue("codec '" + mimeType + "' failed configuration.", false); 219 codec.start(); 220 ByteBuffer[] codecInputBuffers = codec.getInputBuffers(); 221 ByteBuffer[] codecOutputBuffers = codec.getOutputBuffers(); 231 index = codec.dequeueInputBuffer(VIDEO_CODEC_WAIT_TIME_US /* timeoutUs */) [all...] |
/external/chromium_org/media/base/android/ |
media_codec_bridge.h | 36 // Codec direction. Keep this in sync with MediaCodecBridge.java. 60 // decode |codec| type. 61 static bool CanDecode(const std::string& codec, bool is_secure); 64 // TODO(qinmin): Curretly the codecs string only contains one codec, do we 79 // Please note that this clears all the inputs in the media codec. In other 96 // Returns the number of input buffers used by the codec. 153 // Returns the buffer to the codec. If you previously specified a surface when 157 // Returns the number of output buffers used by the codec. 160 // Returns the capacity of each output buffer used by the codec. 163 // Gets output buffers from media codec and keeps them inside the java class [all...] |
video_decoder_job.cc | 33 scoped_ptr<VideoCodecBridge> codec(VideoCodecBridge::CreateDecoder( 35 if (codec) 36 return new VideoDecoderJob(codec.Pass(), request_data_cb);
|
/external/chromium_org/third_party/libjingle/source/talk/session/media/ |
mediasessionclient_unittest.cc | 46 using cricket::Codec; 1347 AudioCodec codec = AudioCodec(id, name, clockrate, bitrate, channels, 0); local 1378 VideoCodec codec = VideoCodec(id, name, width, height, framerate, 0); local 1393 DataCodec codec = DataCodec(id, name, 0); local 1748 cricket::DataCodec codec = DataCodecFromPayloadType(e); local 1988 cricket::AudioCodec codec = AudioCodecFromPayloadType(e); local 2137 VideoCodec codec = VideoCodecFromPayloadType(e); local 2162 cricket::AudioCodec codec = AudioCodecFromPayloadType(e); local 2323 cricket::AudioCodec codec = AudioCodecFromPayloadType(payload_type); local 2347 cricket::AudioCodec codec = AudioCodecFromPayloadType(e); local 2387 cricket::AudioCodec codec = AudioCodecFromPayloadType(e); local 2401 cricket::AudioCodec codec = AudioCodecFromPayloadType(e); local 2421 cricket::AudioCodec codec = AudioCodecFromPayloadType(e); local [all...] |
/external/chromium_org/third_party/skia/include/images/ |
SkImageRef_GlobalPool.h | 50 virtual bool onDecode(SkImageDecoder* codec, SkStreamRewindable* stream,
|
/external/skia/include/images/ |
SkImageRef_GlobalPool.h | 50 virtual bool onDecode(SkImageDecoder* codec, SkStreamRewindable* stream,
|
/frameworks/base/media/java/android/media/ |
EncoderCapabilities.java | 53 private VideoEncoderCap(int codec, 58 mCodec = codec; 89 private AudioEncoderCap(int codec, 93 mCodec = codec;
|
MediaCodecList.java | 23 * find a codec supporting a given format and query the capabilities 24 * of a given codec. 50 /* package private */ static native final int findCodecByName(String codec);
|
/frameworks/opt/net/voip/src/java/android/net/rtp/ |
AudioGroup.java | 149 AudioCodec codec = stream.getCodec(); local 150 String codecSpec = String.format(Locale.US, "%d %s %s", codec.type, 151 codec.rtpmap, codec.fmtp);
|
/external/apache-http/src/org/apache/commons/codec/language/ |
RefinedSoundex.java | 17 package org.apache.commons.codec.language; 19 import org.apache.commons.codec.EncoderException; 20 import org.apache.commons.codec.StringEncoder;
|
SoundexUtils.java | 17 package org.apache.commons.codec.language; 19 import org.apache.commons.codec.EncoderException; 20 import org.apache.commons.codec.StringEncoder;
|
/external/chromium_org/media/cast/video_receiver/ |
video_decoder_unittest.cc | 50 config_.codec = kVp8; 71 encoded_frame.codec = kVp8; 84 encoded_frame.codec = kExternalVideo; 88 "Invalid codec");
|
/external/skia/gm/ |
scalebitmap.cpp | 27 SkImageDecoder *codec = NULL; local 30 codec = SkImageDecoder::Factory(&stream); 32 if (codec) { 34 codec->decode(&stream, &fBM, SkBitmap::kARGB_8888_Config, 36 SkDELETE(codec);
|
/frameworks/av/media/libstagefright/omx/ |
SoftOMXPlugin.cpp | 108 sp<SoftOMXComponent> codec = local 111 if (codec == NULL) { 118 OMX_ERRORTYPE err = codec->initCheck(); 126 codec->incStrong(this); 127 codec->setLibHandle(libHandle);
|
/frameworks/base/tests/AccessoryDisplay/source/src/com/android/accessorydisplay/source/ |
DisplaySourceService.java | 195 MediaCodec codec = MediaCodec.createEncoderByType("video/avc"); local 196 codec.configure(format, null, null, MediaCodec.CONFIGURE_FLAG_ENCODE); 197 Surface surface = codec.createInputSurface(); 198 codec.start(); 206 stream(codec); 213 codec.signalEndOfInputStream(); 214 codec.stop(); 221 private void stream(MediaCodec codec) { 225 int index = codec.dequeueOutputBuffer(info, TIMEOUT_USEC); 228 buffers = codec.getOutputBuffers() [all...] |
/external/apache-http/src/org/apache/commons/codec/net/ |
QuotedPrintableCodec.java | 17 package org.apache.commons.codec.net; 22 import org.apache.commons.codec.BinaryDecoder; 23 import org.apache.commons.codec.BinaryEncoder; 24 import org.apache.commons.codec.DecoderException; 25 import org.apache.commons.codec.EncoderException; 26 import org.apache.commons.codec.StringDecoder; 27 import org.apache.commons.codec.StringEncoder; 31 * Codec for the Quoted-Printable section of <a href="http://www.ietf.org/rfc/rfc1521.txt">RFC 1521 </a>. 47 * does not lend itself well into the byte[] oriented codec framework. Complete the codec once the steamable code [all...] |
URLCodec.java | 17 package org.apache.commons.codec.net; 23 import org.apache.commons.codec.BinaryDecoder; 24 import org.apache.commons.codec.BinaryEncoder; 25 import org.apache.commons.codec.DecoderException; 26 import org.apache.commons.codec.EncoderException; 27 import org.apache.commons.codec.StringDecoder; 28 import org.apache.commons.codec.StringEncoder; 40 * This codec is meant to be a replacement for standard Java classes
|