HomeSort by relevance Sort by last modified time
    Searched defs:Decoder (Results 1 - 25 of 47) sorted by null

1 2

  /external/apache-http/src/org/apache/commons/codec/
Decoder.java 24 * <p>Allows a user to pass a generic Object to any Decoder
30 * @version $Id: Decoder.java,v 1.9 2004/02/29 04:08:31 tobrien Exp $
37 public interface Decoder {
43 * to the specific type expected by a particular Decoder
51 * @throws DecoderException a decoder exception can
  /external/chromium_org/v8/src/arm64/
decoder-arm64.h 17 // List macro containing all visitors needed by the decoder class.
83 // Register a new visitor class with the decoder.
109 // stored by the decoder.
123 class Decoder : public V {
125 Decoder() {}
126 virtual ~Decoder() {}
128 // Top-level instruction decoder function. Decodes an instruction and calls
129 // the visitor functions registered with the Decoder class.
  /external/vixl/src/a64/
decoder-a64.h 36 // List macro containing all visitors needed by the decoder class.
100 friend class Decoder;
104 class Decoder: public DecoderVisitor {
106 Decoder() {}
108 // Top-level instruction decoder function. Decodes an instruction and calls
109 // the visitor functions registered with the Decoder class.
112 // Register a new visitor class with the decoder.
138 // stored by the decoder.
  /external/chromium_org/third_party/libvpx/source/libvpx/test/
decode_test_driver.h 26 explicit DxDataIterator(vpx_codec_ctx_t *decoder)
27 : decoder_(decoder), iter_(NULL) {}
41 class Decoder {
43 Decoder(vpx_codec_dec_cfg_t cfg, unsigned long deadline)
48 virtual ~Decoder() {
119 // Common test functionality for all Decoder tests.
129 Decoder* /*decoder*/) {}
134 Decoder *decoder) {
    [all...]
  /external/libvpx/libvpx/test/
decode_test_driver.h 26 explicit DxDataIterator(vpx_codec_ctx_t *decoder)
27 : decoder_(decoder), iter_(NULL) {}
41 class Decoder {
43 Decoder(vpx_codec_dec_cfg_t cfg, unsigned long deadline)
48 virtual ~Decoder() {
107 // Common test functionality for all Decoder tests.
115 Decoder *decoder) {}
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/test/
decode_test_driver.h 26 explicit DxDataIterator(vpx_codec_ctx_t *decoder)
27 : decoder_(decoder), iter_(NULL) {}
41 class Decoder {
43 Decoder(vpx_codec_dec_cfg_t cfg, unsigned long deadline)
48 virtual ~Decoder() {
107 // Common test functionality for all Decoder tests.
115 Decoder *decoder) {}
  /external/chromium_org/third_party/webrtc/modules/audio_coding/main/acm2/
acm_generic_codec.h 299 // Used to get decoder estimated bandwidth. Only iSAC will provide a value.
303 // -1 if fails to get decoder estimated bandwidth,
352 // have a fresh start. For codecs where encoder and decoder share the same
380 // decoder for different flavors of the codec. One example is iSAC. there,
387 // prepare the decoder associated with the new payload. Normally, decoders
388 // doesn't have to do anything. For iSAC the decoder has to change it's
398 // 0 if succeeded in updating the decoder.
553 // should own its own decoder (e.g. iSAC which need same instance for encoding
554 // and decoding, or a codec which should access decoder instance for specific
555 // decoder setting) should implement this method. This method is called i
    [all...]
acm_receiver.h 41 struct Decoder {
79 // sampling rate of the decoder.
96 // - audio_decoder : pointer to a decoder object. If it is NULL
97 // then NetEq will internally create the decoder
99 // as the decoder corresponding with the given
104 // decoder instance of the codec. This is essential
105 // for a codec like iSAC which encoder/decoder
106 // encoder has to know about decoder (bandwidth
269 // Get a decoder given its registered payload-type.
342 Decoder decoders_[ACMCodecDB::kMaxNumCodecs]
    [all...]
  /external/llvm/tools/llvm-readobj/
ARMWinEHPrinter.h 22 class Decoder {
31 bool (Decoder::*Routine)(const support::ulittle8_t *, unsigned &, unsigned,
111 Decoder(StreamWriter &SW) : SW(SW), OS(SW.getOStream()) {}
  /external/chromium_org/media/filters/
decoder_selector.h 28 // Decoder for a given DemuxerStream. If the given DemuxerStream is
31 // selecting a decoder for.
36 typedef typename StreamTraits::DecoderType Decoder;
38 // Indicates completion of Decoder selection.
39 // - First parameter: The initialized Decoder. If it's set to NULL, then
40 // Decoder initialization failed.
43 // decryption for the initialized Decoder.
44 // Note: The caller owns selected Decoder and DecryptingDemuxerStream.
46 // calling Decoder::Reset() to release any pending decryption or read.
48 void(scoped_ptr<Decoder>,
    [all...]
decoder_stream.h 37 typedef typename StreamTraits::DecoderType Decoder;
40 typedef typename Decoder::Status DecoderStatus;
46 DECODE_ERROR, // Decoder returned decode error.
47 DECRYPT_ERROR // Decoder returned decrypt error.
55 ScopedVector<Decoder> decoders,
73 // Resets the decoder, flushes all decoded outputs and/or internal buffers,
80 // Returns true if the decoder currently has the ability to decode and return
82 // TODO(rileya): Remove the need for this by refactoring Decoder queueing
89 // Returns true if one more decode request can be submitted to the decoder.
115 STATE_NORMAL, // Includes idle, pending decoder decode/reset
    [all...]
  /external/lzma/Java/SevenZip/Compression/RangeCoder/
Decoder.java 4 public class Decoder
  /external/ksoap2/kobjects/org/ksoap2/kobjects/mime/
Decoder.java 27 public class Decoder {
118 public Decoder(InputStream is, String _bound) throws IOException {
122 public Decoder(InputStream is, String _bound, String characterEncoding) throws IOException {
  /external/lzma/CS/7zip/Compress/RangeCoder/
RangeCoder.cs 122 class Decoder
  /frameworks/av/media/libmediaplayerservice/nuplayer/
NuPlayerDecoder.h 26 struct NuPlayer::Decoder : public DecoderBase {
27 Decoder(const sp<AMessage> &notify,
38 virtual ~Decoder();
106 DISALLOW_EVIL_CONSTRUCTORS(Decoder);
NuPlayerDecoder.cpp 41 NuPlayer::Decoder::Decoder(
61 mComponentName("decoder") {
67 NuPlayer::Decoder::~Decoder() {
71 void NuPlayer::Decoder::getStats(
78 void NuPlayer::Decoder::onMessageReceived(const sp<AMessage> &msg) {
120 void NuPlayer::Decoder::onConfigure(const sp<AMessage> &format) {
139 mComponentName.append(" decoder");
155 ALOGE("Failed to create %s%s decoder",
    [all...]
  /external/chromium_org/v8/src/mips/
disasm-mips.cc 45 // Decoder decodes and disassembles instructions into an output buffer.
48 class Decoder {
50 Decoder(const disasm::NameConverter& converter,
58 ~Decoder() {}
111 DISALLOW_COPY_AND_ASSIGN(Decoder);
115 // Support for assertions in the Decoder formatting functions.
121 void Decoder::PrintChar(const char ch) {
127 void Decoder::Print(const char* str) {
138 void Decoder::PrintRegister(int reg) {
143 void Decoder::PrintRs(Instruction* instr)
    [all...]
  /external/chromium_org/v8/src/mips64/
disasm-mips64.cc 45 // Decoder decodes and disassembles instructions into an output buffer.
48 class Decoder {
50 Decoder(const disasm::NameConverter& converter,
58 ~Decoder() {}
112 DISALLOW_COPY_AND_ASSIGN(Decoder);
116 // Support for assertions in the Decoder formatting functions.
122 void Decoder::PrintChar(const char ch) {
128 void Decoder::Print(const char* str) {
139 void Decoder::PrintRegister(int reg) {
144 void Decoder::PrintRs(Instruction* instr)
    [all...]
  /external/chromium_org/v8/src/arm/
disasm-arm.cc 47 // Decoder decodes and disassembles instructions into an output buffer.
50 class Decoder {
52 Decoder(const disasm::NameConverter& converter,
60 ~Decoder() {}
123 DISALLOW_COPY_AND_ASSIGN(Decoder);
127 // Support for assertions in the Decoder formatting functions.
133 void Decoder::PrintChar(const char ch) {
139 void Decoder::Print(const char* str) {
158 void Decoder::PrintCondition(Instruction* instr) {
164 void Decoder::PrintRegister(int reg)
    [all...]
  /external/chromium_org/content/common/gpu/
image_transport_surface.cc 68 gpu::gles2::GLES2Decoder* decoder = Decoder(); local
70 if (!decoder)
73 decoder->SetResizeCallback(
157 gpu::gles2::GLES2Decoder* decoder = Decoder(); local
158 if (!decoder)
160 return decoder->MakeCurrent();
188 gpu::gles2::GLES2Decoder* ImageTransportHelper::Decoder() {
191 return stub_->decoder();
    [all...]
  /external/lzma/CPP/7zip/UI/Common/
LoadCodecs.h 19 CLSID Decoder;
  /external/lzma/CS/7zip/Compress/LZMA/
LzmaDecoder.cs 9 public class Decoder : ICoder, ISetDecoderProperties // ,System.IO.Stream
42 public uint Decode(RangeCoder.Decoder rangeDecoder, uint posState)
69 public byte DecodeNormal(RangeCoder.Decoder rangeDecoder)
78 public byte DecodeWithMatchByte(RangeCoder.Decoder rangeDecoder, byte matchByte)
128 public byte DecodeNormal(RangeCoder.Decoder rangeDecoder, uint pos, byte prevByte)
131 public byte DecodeWithMatchByte(RangeCoder.Decoder rangeDecoder, uint pos, byte prevByte, byte matchByte)
136 RangeCoder.Decoder m_RangeDecoder = new RangeCoder.Decoder();
160 public Decoder()
  /frameworks/av/media/libstagefright/codecs/on2/h264dec/source/
TestBenchMultipleInstance.c 54 } Decoder;
72 Decoder **decoder; local
134 /* allocate memory for multiple decoder instances
136 decoder = (Decoder **)malloc(sizeof(Decoder*)*(u32)instCount);
137 if (decoder == NULL)
143 /* prepare each decoder instance */
146 decoder[i] = (Decoder *)calloc(1, sizeof(Decoder))
    [all...]
  /frameworks/base/core/java/android/util/
Base64.java 29 * Default values for encoder/decoder flags.
53 * Encoder/decoder flag bit to indicate using the "URL and
158 Decoder decoder = new Decoder(flags, new byte[len*3/4]); local
160 if (!decoder.process(input, offset, len, true)) {
165 if (decoder.op == decoder.output.length) {
166 return decoder.output;
171 byte[] temp = new byte[decoder.op]
    [all...]
  /external/chromium_org/native_client_sdk/src/examples/api/video_decode/
video_decode.cc 52 class Decoder;
56 PendingPicture(Decoder* decoder, const PP_VideoPicture& picture)
57 : decoder(decoder), picture(picture) {}
60 Decoder* decoder; member in struct:__anon13515::PendingPicture
78 // Probably have to recreate the decoder from scratch, because old textures
79 // can still be outstanding in the decoder!
83 void PaintPicture(Decoder* decoder, const PP_VideoPicture& picture)
463 Decoder* decoder = next.decoder; local
537 Decoder* decoder = next.decoder; local
    [all...]

Completed in 539 milliseconds

1 2