HomeSort by relevance Sort by last modified time
    Searched refs:codec (Results 1 - 25 of 128) sorted by null

1 2 3 4 5 6

  /external/apache-http/src/org/apache/commons/codec/
BinaryDecoder.java 17 package org.apache.commons.codec;
BinaryEncoder.java 17 package org.apache.commons.codec;
Decoder.java 17 package org.apache.commons.codec;
25 * implementation in the codec package.</p>
27 * <p>One of the two interfaces at the center of the codec package.</p>
DecoderException.java 17 package org.apache.commons.codec;
Encoder.java 17 package org.apache.commons.codec;
23 * generic Object to any Encoder implementation in the codec package.</p>
EncoderException.java 17 package org.apache.commons.codec;
StringDecoder.java 17 package org.apache.commons.codec;
StringEncoder.java 17 package org.apache.commons.codec;
  /external/apache-http/src/org/apache/commons/codec/net/
StringEncodings.java 17 package org.apache.commons.codec.net;
QCodec.java 17 package org.apache.commons.codec.net;
22 import org.apache.commons.codec.DecoderException;
23 import org.apache.commons.codec.EncoderException;
24 import org.apache.commons.codec.StringDecoder;
25 import org.apache.commons.codec.StringEncoder;
254 + " cannot be encoded using Q codec");
278 + " cannot be decoded using Q codec");
BCodec.java 17 package org.apache.commons.codec.net;
20 import org.apache.commons.codec.DecoderException;
21 import org.apache.commons.codec.EncoderException;
22 import org.apache.commons.codec.StringDecoder;
23 import org.apache.commons.codec.StringEncoder;
24 import org.apache.commons.codec.binary.Base64;
  /external/chromium/third_party/libjingle/source/talk/session/phone/
codec.cc 28 #include "talk/session/phone/codec.h"
36 // Match the codec id/name based on the typical static/dynamic name rules.
40 bool AudioCodec::Matches(const AudioCodec& codec) const {
43 // unless the codec is VBR (-1), where we just force the supplied value.
47 return Matches(codec.id, codec.name) &&
48 ((codec.clockrate == 0 /*&& clockrate == 8000*/) ||
49 clockrate == codec.clockrate) &&
50 (codec.bitrate == 0 || bitrate == -1 || bitrate == codec.bitrate) &
    [all...]
mediasessionclient.cc 145 for (AudioCodecs::const_iterator codec = audio_codecs.begin();
146 codec != audio_codecs.end(); ++codec) {
147 audio->AddCodec(*codec);
177 for (VideoCodecs::const_iterator codec = video_codecs.begin();
178 codec != video_codecs.end(); ++codec) {
179 video->AddCodec(*codec);
553 AudioCodec codec; local
554 if (ParseGingleAudioCodec(codec_elem, &codec)) {
585 VideoCodec codec; local
694 AudioCodec codec; local
717 VideoCodec codec; local
    [all...]
  /external/skia/src/images/
SkImageEncoder_Factory.cpp 29 SkImageEncoder* codec = NULL; local
32 if ((codec = curr->factory()(t)) != NULL) {
33 return codec;
38 if ((codec = sk_libpng_efactory(t)) != NULL) {
39 return codec;
SkImageDecoder_Factory.cpp 34 SkImageDecoder* codec = NULL; local
37 codec = curr->factory()(stream);
41 if (codec) {
42 return codec;
47 codec = sk_libpng_dfactory(stream);
49 if (codec) {
50 return codec;
SkImageDecoder_libpvjpeg.cpp 34 AutoPVDelete(PVJpgDecoderInterface* codec) : fCodec(codec) {}
75 static bool getFrame(PVJpgDecoderInterface* codec, SkBitmap* bitmap,
78 TPvJpgDecStatus status = codec->GetInfo(&info);
101 status = codec->SetOutput(&format);
115 status = codec->GetFrame(&frame);
146 PVJpgDecoderInterface* codec = PVJpgDecoderFactory::CreatePVJpgDecoder(); local
147 TPvJpgDecStatus status = codec->Init();
151 AutoPVDelete ad(codec);
153 status = codec->SetObserver(&observer)
    [all...]
SkImageRef.cpp 78 bool SkImageRef::onDecode(SkImageDecoder* codec, SkStream* stream,
81 return codec->decode(stream, bitmap, config, mode);
92 subsequent calls to the codec, we are sure we will always get the same
109 SkImageDecoder* codec; local
111 codec = fFactory->newDecoder(fStream);
113 codec = SkImageDecoder::Factory(fStream);
116 if (codec) {
117 SkAutoTDelete<SkImageDecoder> ad(codec);
119 codec->setSampleSize(fSampleSize);
120 codec->setDitherImage(fDoDither)
    [all...]
  /prebuilt/common/http-client/
commons-codec-1.4.jar 
  /frameworks/base/voip/jni/rtp/
AudioCodec.cpp 44 AudioCodec *codec = type->create(); local
45 codec->name = type->name;
46 return codec;
  /frameworks/base/voip/java/android/net/rtp/
AudioCodec.java 30 * following snippet to create a mode-1-only AMR codec.</p>
32 * AudioCodec codec = AudioCodec.getCodec(100, "AMR/8000", "mode-set=1");
54 * G.711 u-law audio codec.
59 * G.711 a-law audio codec.
64 * GSM Full-Rate audio codec, also known as GSM-FR, GSM 06.10, GSM, or
70 * GSM Enhanced Full-Rate audio codec, also known as GSM-EFR, GSM 06.60, or
76 * Adaptive Multi-Rate narrowband audio codec, also known as AMR or AMR-NB.
115 for (AudioCodec codec : sCodecs) {
116 if (clue.startsWith(codec.rtpmap)) {
117 String channels = clue.substring(codec.rtpmap.length())
    [all...]
AudioStream.java 115 * @param codec The AudioCodec to be used.
119 public void setCodec(AudioCodec codec) {
123 if (codec.type == mDtmfType) {
126 mCodec = codec;
149 * @throws IllegalArgumentException if the type is invalid or used by codec.
162 throw new IllegalArgumentException("The type is used by codec");
  /external/skia/samplecode/
SampleDecode.cpp 25 SkImageDecoder* codec = SkImageDecoder::Factory(&stream); local
26 if (codec) {
29 codec->setDitherImage(gRec[i].fDither);
30 codec->decode(&stream, &fBitmap[i], gRec[i].fPrefConfig,
  /frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/
MediaProfileReader.java 98 public static int getMinFrameRateForCodec(int codec) {
99 return getMinOrMaxFrameRateForCodec(codec, false);
102 public static int getMaxFrameRateForCodec(int codec) {
103 return getMinOrMaxFrameRateForCodec(codec, true);
106 private static int getMinOrMaxFrameRateForCodec(int codec, boolean max) {
108 if (cap.mCodec == codec) {
114 throw new IllegalArgumentException("Unsupported video codec " + codec);
  /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/base/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...]

Completed in 429 milliseconds

1 2 3 4 5 6