HomeSort by relevance Sort by last modified time
    Searched refs:Decode (Results 76 - 100 of 409) sorted by null

1 2 34 5 6 7 8 91011>>

  /external/chromium_org/ppapi/api/dev/
ppb_video_decoder_dev.idl 18 * - Call Decode() to decode some video data.
72 int32_t Decode(
130 * Decode() calls. |callback| will be called when the reset is done.
  /external/chromium_org/ppapi/cpp/
video_decoder.cc 53 int32_t VideoDecoder::Decode(uint32_t decode_id,
58 return get_interface<PPB_VideoDecoder_0_1>()->Decode(
  /external/chromium_org/third_party/webrtc/video_engine/test/libvietest/include/
tb_I420_codec.h 91 virtual int32_t Decode(
106 int32_t Decode;
  /external/lzma/CS/7zip/Compress/RangeCoder/
RangeCoderBitTree.cs 120 public uint Decode(RangeCoder.Decoder rangeDecoder)
124 m = (m << 1) + Models[m].Decode(rangeDecoder);
134 uint bit = Models[m].Decode(rangeDecoder);
149 uint bit = Models[startIndex + m].Decode(rangeDecoder);
  /external/lzma/C/
Ppmd7Dec.c 72 p->p.Decode = Range_Decode;
90 rc->Decode(rc, 0, s->Freq);
103 rc->Decode(rc, hiCnt - s->Freq, s->Freq);
114 rc->Decode(rc, hiCnt, p->MinContext->SummFreq - hiCnt);
174 rc->Decode(rc, hiCnt - s->Freq, s->Freq);
183 rc->Decode(rc, hiCnt, freqSum - hiCnt);
  /external/chromium_org/ui/gfx/codec/
png_codec_unittest.cc 148 // interlaced, palette-based, or grayscale images, but PNGCodec::Decode is
149 // actually asked to decode these types of images by Chrome.
291 // decode, it should have the same size as the original
294 ASSERT_TRUE(PNGCodec::Decode(&encoded[0], encoded.size(),
320 // decode, it should have the same size as the original
323 ASSERT_TRUE(PNGCodec::Decode(&encoded[0], encoded.size(),
349 // Decode, it should have the same size as the original.
352 ASSERT_TRUE(PNGCodec::Decode(&encoded[0], encoded.size(),
382 // decode
385 ASSERT_TRUE(PNGCodec::Decode(&encoded[0], encoded.size()
    [all...]
  /external/lzma/Java/SevenZip/Compression/LZMA/
Decoder.java 38 public int Decode(SevenZip.Compression.RangeCoder.Decoder rangeDecoder, int posState) throws IOException
41 return m_LowCoder[posState].Decode(rangeDecoder);
44 symbol += m_MidCoder[posState].Decode(rangeDecoder);
46 symbol += Base.kNumMidLenSymbols + m_HighCoder.Decode(rangeDecoder);
262 len = m_RepLenDecoder.Decode(m_RangeDecoder, posState) + Base.kMatchMinLen;
271 len = Base.kMatchMinLen + m_LenDecoder.Decode(m_RangeDecoder, posState);
273 int posSlot = m_PosSlotDecoder[Base.GetLenToPosState(len)].Decode(m_RangeDecoder);
  /external/chromium_org/content/browser/indexed_db/
indexed_db_leveldb_coding.h 101 static bool Decode(base::StringPiece* slice, KeyPrefix* result);
202 static bool Decode(base::StringPiece* slice, DatabaseFreeListKey* result);
214 static bool Decode(base::StringPiece* slice, DatabaseNameKey* result);
267 static bool Decode(base::StringPiece* slice, ObjectStoreMetaDataKey* result);
293 static bool Decode(base::StringPiece* slice, IndexMetaDataKey* result);
316 static bool Decode(base::StringPiece* slice, ObjectStoreFreeListKey* result);
330 static bool Decode(base::StringPiece* slice, IndexFreeListKey* result);
350 static bool Decode(base::StringPiece* slice, ObjectStoreNamesKey* result);
367 static bool Decode(base::StringPiece* slice, IndexNamesKey* result);
381 static bool Decode(base::StringPiece* slice, ObjectStoreDataKey* result)
    [all...]
indexed_db_leveldb_coding.cc 26 // for metadata. See KeyPrefix::Decode() for details of the prefix coding.
35 // encode, decode, and compare that key type.
879 if (!KeyType::Decode(&slice_a, &key_a)) {
884 if (!KeyType::Decode(&slice_b, &key_b)) {
967 bool ok_a = KeyPrefix::Decode(&slice_a, &prefix_a);
968 bool ok_b = KeyPrefix::Decode(&slice_b, &prefix_b);
    [all...]
  /external/chromium_org/media/filters/
fake_video_decoder_unittest.cc 67 // Callback for VideoDecoder::Decode().
110 void Decode() {
125 decoder_->Decode(
134 Decode();
140 Decode();
306 // Hold all decodes and satisfy one decode at a time.
311 Decode();
decrypting_audio_decoder.h 27 // Decryptor-based AudioDecoder implementation that can decrypt and decode
35 // Decryptor implementations to decode audio into a fixed integer sample
49 virtual void Decode(const scoped_refptr<DecoderBuffer>& buffer,
117 // Indicates the situation where new key is added during pending decode
decrypting_video_decoder.h 23 // Decryptor-based VideoDecoder implementation that can decrypt and decode
39 virtual void Decode(const scoped_refptr<DecoderBuffer>& buffer,
102 // Indicates the situation where new key is added during pending decode
fake_video_decoder.h 43 virtual void Decode(const scoped_refptr<DecoderBuffer>& buffer,
49 // Holds the next init/decode/reset callback from firing.
54 // Satisfies the pending init/decode/reset callback, which must be ready to
60 // Satisfies single decode request.
ffmpeg_audio_decoder.h 42 virtual void Decode(const scoped_refptr<DecoderBuffer>& buffer,
52 // decode input buffers, or is decoding an input buffer.
53 // - kDecodeFinished: EOS buffer received, codec flushed and decode finished.
54 // No further Decode() call should be made.
60 // The decoder is successfully initialized and is ready to decode buffers.
ffmpeg_video_decoder.h 43 virtual void Decode(const scoped_refptr<DecoderBuffer>& buffer,
  /art/runtime/native/
dalvik_system_VMStack.cc 32 if (soa.Decode<mirror::Object*>(peer) == soa.Self()->GetPeer()) {
109 mirror::Object* bootstrap = soa.Decode<mirror::Object*>(javaBootstrap);
110 mirror::Object* system = soa.Decode<mirror::Object*>(javaSystem);
java_lang_Class.cc 34 mirror::Class* c = soa.Decode<mirror::Class*>(java_class);
64 Handle<mirror::ClassLoader> class_loader(hs.NewHandle(soa.Decode<mirror::ClassLoader*>(javaLoader)));
  /external/chromium_org/ppapi/api/
ppb_video_decoder.idl 23 * - Call Decode() continuously (waiting for each previous call to complete) to
95 * returning PP_OK or by running |callback| before calling Decode() again.
102 * If the call to Decode() eventually results in a picture, the |decode_id|
104 * associate decoded pictures with Decode() calls (e.g. to assign timestamps
111 * used to associate calls to Decode() with decoded pictures returned by
121 * Returns PP_ERROR_INPROGRESS if there is another Decode() call pending.
123 * Returns PP_ERROR_ABORTED when Reset() is called while Decode() is pending.
125 int32_t Decode(
161 * the decoder can decode more pictures.
175 * pending Decode() call to completion. The plugin should make no furthe
    [all...]
  /external/chromium_org/cc/test/
pixel_test_utils.cc 35 gfx::PNGCodec::Decode(reinterpret_cast<unsigned char*>(&png_data[0]),
  /external/chromium_org/content/common/gpu/client/
gpu_video_decode_accelerator_host.h 40 virtual void Decode(const media::BitstreamBuffer& bitstream_buffer) OVERRIDE;
  /external/chromium_org/content/renderer/fetchers/
image_resource_fetcher.cc 53 bitmap = decoder.Decode(
56 // If we get here, it means no image from server or couldn't decode the
  /external/chromium_org/content/renderer/pepper/
ppb_video_decoder_impl.h 35 virtual int32_t Decode(const PP_VideoBitstreamBuffer_Dev* bitstream_buffer,
  /external/chromium_org/google_apis/gaia/
oauth_request_signer.h 51 static bool Decode(const std::string& text, std::string* decoded_text);
  /external/chromium_org/media/cast/receiver/
audio_decoder.cc 20 // then invoking the Decode() method implemented by the subclasses to convert
60 scoped_ptr<AudioBus> decoded_audio = Decode(
76 // Note: Implementation of Decode() is allowed to mutate |data|.
77 virtual scoped_ptr<AudioBus> Decode(uint8* data, int len) = 0;
129 virtual scoped_ptr<AudioBus> Decode(uint8* data, int len) OVERRIDE {
134 return audio_bus.Pass(); // Decode error.
180 virtual scoped_ptr<AudioBus> Decode(uint8* data, int len) OVERRIDE {
video_decoder.cc 27 // then invoking the Decode() method implemented by the subclasses to convert
61 const scoped_refptr<VideoFrame> decoded_frame = Decode(
76 // Note: Implementation of Decode() is allowed to mutate |data|.
77 virtual scoped_refptr<VideoFrame> Decode(uint8* data, int len) = 0;
122 virtual scoped_refptr<VideoFrame> Decode(uint8* data, int len) OVERRIDE {
186 virtual scoped_refptr<VideoFrame> Decode(uint8* data, int len) OVERRIDE {

Completed in 1301 milliseconds

1 2 34 5 6 7 8 91011>>