Searched refs:decoder (Results 426 - 450 of 477) sorted by relevance

<<11121314151617181920

/external/sonivox/arm-wt-22k/lib_src/
H A Deas_pcm.c56 /* SMAF ADPCM decoder */
67 /* IMA ADPCM decoder */
333 /* make sure we support this decoder */
334 if (pParams->decoder >= NUM_DECODER_MODULES)
339 if (decoders[pParams->decoder] == NULL)
360 pState->pDecoder = decoders[pParams->decoder];
951 /* initialize the decoder */
/external/vixl/test/
H A Dtest-simulator-a64.cc59 Decoder decoder; \
62 simulator = new Debugger(&decoder); \
64 simulator = new Simulator(&decoder); \
/external/chromium_org/third_party/WebKit/Source/platform/graphics/gpu/
H A DWebGLImageConversion.cpp1553 OwnPtr<ImageDecoder> decoder(ImageDecoder::create(
1556 if (!decoder)
1558 decoder->setData(m_image->data(), true);
1559 if (!decoder->frameCount())
1561 ImageFrame* frame = decoder->frameBufferAtIndex(0);
/external/libvorbis/doc/
H A D04-codec.tex96 \captionof{figure}{decoder pipeline configuration}
282 indicates stream corruption or a non-compliant stream. The decoder
583 finished data to be returned by the decoder. This data spans from the
615 is naturally possible for a decoder to produce output with channels in
616 any order. Any such decoder should explicitly document channel
/external/oprofile/events/i386/nehalem/
H A Devents35 event:0x18 counters:0,1,2,3 um:inst_decoded minimum:6000 name:INST_DECODED : Counts number of instructions that require decoder 0 to be decoded. Usually, this means that the instruction maps to more than 1 uop
38 event:0x1E counters:0,1,2,3 um:one minimum:6000 name:INST_QUEUE_WRITE_CYCLES : This event counts the number of cycles during which instructions are written to the instruction queue. Dividing this counter by the number of instructions written to the instruction queue (INST_QUEUE_WRITES) yields the average number of instructions decoded each cycle. If this number is less than four and the pipe stalls, this indicates that the decoder is failing to decode enough instructions per cycle to sustain the 4-wide pipeline.
45 event:0x3D counters:0,1,2,3 um:one minimum:6000 name:UOPS_DECODED_DEC0 : Counts micro-ops decoded by decoder 0.
/external/chromium_org/third_party/WebKit/Source/core/xml/
H A DXMLHttpRequest.cpp1435 OwnPtr<TextResourceDecoder> decoder = TextResourceDecoder::create("application/xml"); local
1439 decoder->useLenientXMLDecoding();
1441 return decoder.release();
/external/chromium_org/third_party/libjingle/source/talk/media/webrtc/
H A Dwebrtcvideoengine.cc509 // and a decoder observer that is used by receive channels.
511 // decoder observer in this class and methods in the class should only be called
527 void RegisterDecoder(int pl_type, webrtc::VideoDecoder* decoder) { argument
529 registered_decoders_[pl_type] = decoder;
1496 void WebRtcVideoEngine::DestroyExternalDecoder(webrtc::VideoDecoder* decoder) { argument
1500 decoder_factory_->DestroyVideoDecoder(decoder);
2739 // ViE does this internally when there are errors from decoder
2747 // send it to the specific decoder instance for that stream.
3466 // Register decoder observer for incoming framerate and bitrate.
3841 webrtc::VideoDecoder* decoder local
[all...]
H A Dwebrtcvideoengine.h137 // Returns an external decoder for the given codec type. The return value
138 // can be NULL if decoder factory is not given or it does not support the
141 // Releases the decoder instance created by CreateExternalDecoder().
142 void DestroyExternalDecoder(webrtc::VideoDecoder* decoder);
/external/chromium_org/third_party/simplejson/
H A Dencoder.py14 from simplejson.decoder import PosInf
H A D_speedups.c420 /* Use the Python function simplejson.decoder.errmsg to raise a nice
425 PyObject *decoder = PyImport_ImportModule("simplejson.decoder"); local
426 if (decoder == NULL)
428 JSONDecodeError = PyObject_GetAttrString(decoder, "JSONDecodeError");
429 Py_DECREF(decoder);
/external/chromium_org/third_party/webrtc/video_engine/
H A Dvie_channel.h87 // Registers an external decoder. |buffered_rendering| means that the decoder
92 VideoDecoder* decoder,
/external/zopfli/src/zopflipng/lodepng/
H A Dlodepng.h48 /*png encoder and png decoder*/
52 /*deflate&zlib decoder and png decoder*/
254 /*use custom zlib decoder instead of built in one (default: null)*/
258 /*use custom deflate decoder instead of built in one (default: null)
419 The decoder does not use this background color to edit the color of pixels.
509 Settings for the decoder. This contains settings for the PNG and the Zlib
510 decoder, but not the Info settings from the Info structs.
518 The fix_png setting, if 1, makes the decoder tolerant towards some PNG images
634 LodePNGDecoderSettings decoder; /*th member in struct:LodePNGState
[all...]
H A Dlodepng.cpp522 /*the tree representation used by the decoder. return value is error*/
3987 if(!state->decoder.ignore_crc)
4649 if(state->decoder.read_text_chunks)
4658 if(state->decoder.read_text_chunks)
4660 state->error = readChunk_zTXt(&state->info_png, &state->decoder.zlibsettings, data, chunkLength);
4667 if(state->decoder.read_text_chunks)
4669 state->error = readChunk_iTXt(&state->info_png, &state->decoder.zlibsettings, data, chunkLength);
4691 if(state->decoder.remember_unknown_chunks)
4700 if(!state->decoder.ignore_crc && !unknown) /*check CRC if wanted, only on known chunk types*/
4721 idat.size, &state->decoder
[all...]
/external/chromium_org/content/common/gpu/
H A Dgpu_command_buffer_stub.cc425 // The scheduler has raw references to the decoder and the command buffer so
564 // Initialize the decoder with either the view or pbuffer GLContext.
571 DLOG(ERROR) << "Failed to initialize decoder.";
829 GpuVideoDecodeAccelerator* decoder = new GpuVideoDecodeAccelerator( local
831 decoder->Initialize(profile, reply_message);
832 // decoder is registered as a DestructionObserver of this stub and will
/external/chromium_org/third_party/skia/src/images/
H A DSkScaledBitmapSampler.cpp732 const SkImageDecoder& decoder,
734 return this->begin(dst, sc, Options(decoder), ctable);
731 begin(SkBitmap* dst, SrcConfig sc, const SkImageDecoder& decoder, const SkPMColor ctable[]) argument
/external/protobuf/
H A DMakefile.am117 python/google/protobuf/internal/decoder.py \
/external/skia/src/images/
H A DSkScaledBitmapSampler.cpp732 const SkImageDecoder& decoder,
734 return this->begin(dst, sc, Options(decoder), ctable);
731 begin(SkBitmap* dst, SrcConfig sc, const SkImageDecoder& decoder, const SkPMColor ctable[]) argument
/external/tcpdump/
H A Dprint-openflow-1.0.c3 * protocol 0x01). The decoder implements terse (default), detailed (-v) and
5 * tries to work around sizing anomalies inside the messages. The decoder marks
1699 const u_char *(*decoder)(const u_char *, const u_char *, u_int) =
1708 if (decoder != NULL)
1709 return decoder(cp, ep, len - OF_STATS_REPLY_LEN);
/external/chromium_org/v8/src/
H A Dfactory.cc240 decoder(isolate()->unicode_cache()->utf8_decoder());
241 decoder->Reset(string.start() + non_ascii_start,
243 int utf16_length = decoder->Utf16Length();
258 decoder->WriteUtf16(data, utf16_length);
/external/libvpx/libvpx/
H A Dconfigure27 ${toggle_decode_perf_tests} build decoder perf tests with unit tests
46 ${toggle_error_concealment} enable this option to get a decoder which is able to conceal losses
61 --disable-<codec>-decoder
/external/vixl/src/a64/
H A Dsimulator-a64.h168 explicit Simulator(Decoder* decoder, FILE* stream = stdout);
H A Ddebugger-a64.cc525 Debugger::Debugger(Decoder* decoder, FILE* stream) argument
526 : Simulator(decoder, stream),
/external/lzma/CPP/7zip/Archive/7z/
H A D7zIn.cpp814 CDecoder decoder(
837 HRESULT result = decoder.Decode(
/external/oprofile/events/x86-64/family11h/
H A Devents97 event:0xd0 counters:0,1,2,3 um:zero minimum:500 name:DECODER_EMPTY : Nothing to dispatch (decoder empty)
/external/oprofile/events/x86-64/hammer/
H A Devents92 event:0xd0 counters:0,1,2,3 um:zero minimum:500 name:DECODER_EMPTY : Nothing to dispatch (decoder empty)

Completed in 2505 milliseconds

<<11121314151617181920