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

12 3 4 5 6 7 8 91011>>

  /external/chromium_org/ppapi/thunk/
ppb_video_decoder_dev_api.h 21 virtual int32_t Decode(const PP_VideoBitstreamBuffer_Dev* bitstream_buffer,
ppb_video_decoder_dev_thunk.cc 34 int32_t Decode(PP_Resource video_decoder,
41 enter.object()->Decode(bitstream_buffer, enter.callback()));
81 &Decode,
ppb_video_decoder_api.h 26 virtual int32_t Decode(uint32_t decode_id,
  /external/chromium_org/third_party/webrtc/modules/audio_coding/neteq/mock/
mock_audio_decoder.h 25 MOCK_METHOD4(Decode, int(const uint8_t*, size_t, int16_t*,
mock_external_decoder_pcm16b.h 34 virtual int Decode(const uint8_t* encoded, size_t encoded_len,
58 ON_CALL(*this, Decode(_, _, _, _))
59 .WillByDefault(Invoke(&real_, &ExternalPcm16B::Decode));
76 MOCK_METHOD4(Decode,
  /external/chromium_org/third_party/webrtc/modules/audio_coding/neteq/
audio_decoder_impl.h 30 virtual int Decode(const uint8_t* encoded, size_t encoded_len,
42 virtual int Decode(const uint8_t* encoded, size_t encoded_len,
79 virtual int Decode(const uint8_t* encoded, size_t encoded_len,
105 virtual int Decode(const uint8_t* encoded, size_t encoded_len,
121 virtual int Decode(const uint8_t* encoded, size_t encoded_len,
161 virtual int Decode(const uint8_t* encoded, size_t encoded_len,
181 virtual int Decode(const uint8_t* encoded, size_t encoded_len,
195 virtual int Decode(const uint8_t* encoded, size_t encoded_len,
221 virtual int Decode(const uint8_t* encoded, size_t encoded_len,
237 virtual int Decode(const uint8_t* encoded, size_t encoded_len
    [all...]
  /external/chromium_org/ui/gfx/codec/
jpeg_codec_unittest.cc 114 // decode, it should have the same size as the original
117 EXPECT_TRUE(JPEGCodec::Decode(&encoded[0], encoded.size(),
152 // decode, it should have the same size as the original
155 EXPECT_TRUE(JPEGCodec::Decode(&encoded[0], encoded.size(),
178 ASSERT_FALSE(JPEGCodec::Decode(&original[0], original.size(),
188 ASSERT_FALSE(JPEGCodec::Decode(&compressed[0], compressed.size() / 2,
195 ASSERT_FALSE(JPEGCodec::Decode(&compressed[0], compressed.size(),
200 // Test that we can decode JPEG images without invalid-read errors on valgrind.
206 JPEGCodec::Decode(kTopSitesMigrationTestImage,
211 JPEGCodec::Decode(kTopSitesMigrationTestImage
    [all...]
  /external/lzma/CS/7zip/Compress/LZMA/
LzmaDecoder.cs 42 public uint Decode(RangeCoder.Decoder rangeDecoder, uint posState)
44 if (m_Choice.Decode(rangeDecoder) == 0)
45 return m_LowCoder[posState].Decode(rangeDecoder);
49 if (m_Choice2.Decode(rangeDecoder) == 0)
50 symbol += m_MidCoder[posState].Decode(rangeDecoder);
54 symbol += m_HighCoder.Decode(rangeDecoder);
73 symbol = (symbol << 1) | m_Decoders[symbol].Decode(rangeDecoder);
85 uint bit = m_Decoders[((1 + matchBit) << 8) + symbol].Decode(rangeDecoder);
90 symbol = (symbol << 1) | m_Decoders[symbol].Decode(rangeDecoder);
243 if (m_IsMatchDecoders[state.Index << Base.kNumPosStatesBitsMax].Decode(m_RangeDecoder) != 0)
    [all...]
  /art/runtime/native/
java_lang_reflect_Array.cc 32 Handle<mirror::Class> element_class(hs.NewHandle(soa.Decode<mirror::Class*>(javaElementClass)));
35 mirror::Object* dimensions_obj = soa.Decode<mirror::Object*>(javaDimArray);
53 mirror::Class* element_class = soa.Decode<mirror::Class*>(javaElementClass);
java_lang_ref_Reference.cc 28 mirror::Reference* const ref = soa.Decode<mirror::Reference*>(javaThis);
  /external/chromium_org/third_party/libjingle/source/talk/base/
base64.h 73 static inline std::string Decode(const std::string& data, DecodeFlags flags) {
78 static inline bool Decode(const std::string& data, DecodeFlags flags,
83 static inline bool Decode(const std::string& data, DecodeFlags flags,
  /external/chromium_org/third_party/webrtc/base/
base64.h 73 static inline std::string Decode(const std::string& data, DecodeFlags flags) {
78 static inline bool Decode(const std::string& data, DecodeFlags flags,
83 static inline bool Decode(const std::string& data, DecodeFlags flags,
  /art/test/116-nodex2oat/
nodex2oat.cc 29 mirror::Class* klass = soa.Decode<mirror::Class*>(cls);
  /art/test/117-nopatchoat/
nopatchoat.cc 29 mirror::Class* klass = soa.Decode<mirror::Class*>(cls);
  /art/test/118-noimage-dex2oat/
noimage-dex2oat.cc 29 mirror::Class* klass = soa.Decode<mirror::Class*>(cls);
  /external/chromium_org/media/base/
audio_decoder.h 23 // Status codes for decode operations.
37 // Callback for Decode(). Called after the decoder has completed decoding
39 // buffer to decode.
48 // |output_cb| is called for decoded audio buffers (see Decode()).
53 // Requests samples to be decoded. Only one decode may be in flight at any
64 virtual void Decode(const scoped_refptr<DecoderBuffer>& buffer,
67 // Resets decoder state. All pending Decode() requests will be finished or
video_decoder.h 22 // Status codes for decode operations on VideoDecoder.
27 kAborted, // Decode was aborted as a result of Reset() being called.
36 // Callback type for Decode(). Called after the decoder has completed decoding
38 // buffer to decode.
46 // decoded by Decode().
51 // 2) This method should not be called during pending decode, reset or stop.
63 // parallel. Decoder must call |decode_cb| in the same order in which Decode()
68 // Decode() calls (i.e. |decode_cb| will be called even Decode() is never
78 virtual void Decode(const scoped_refptr<DecoderBuffer>& buffer
    [all...]
  /external/chromium_org/ppapi/c/dev/
ppb_video_decoder_dev.h 38 * - Call Decode() to decode some video data.
88 int32_t (*Decode)(PP_Resource video_decoder,
138 * Decode() calls. |callback| will be called when the reset is done.
  /external/chromium_org/ppapi/cpp/dev/
video_decoder_dev.h 36 int32_t Decode(const PP_VideoBitstreamBuffer_Dev& bitstream_buffer,
  /external/chromium_org/ppapi/cpp/
video_decoder.h 30 /// - Call Decode() continuously (waiting for each previous call to complete) to
85 /// returning PP_OK or by running |callback| before calling Decode() again.
92 /// If the call to Decode() eventually results in a picture, the |decode_id|
94 /// associate decoded pictures with Decode() calls (e.g. to assign timestamps
99 /// used to associate calls to Decode() with decoded pictures returned by
109 /// Returns PP_ERROR_INPROGRESS if there is another Decode() call pending.
111 /// Returns PP_ERROR_ABORTED when Reset() is called while Decode() is pending.
112 int32_t Decode(uint32_t decode_id,
139 /// so the decoder can decode more pictures.
147 /// pending Decode() call to completion. The plugin should make no furthe
    [all...]
  /external/chromium_org/remoting/codec/
audio_decoder_verbatim.cc 18 scoped_ptr<AudioPacket> AudioDecoderVerbatim::Decode(
  /external/chromium_org/third_party/WebKit/Source/platform/graphics/
LazyDecodingPixelRef.h 62 virtual void Decode() OVERRIDE;
  /external/chromium_org/third_party/webrtc/examples/android/media_demo/jni/
media_codec_video_decoder.h 29 virtual int32_t Decode(const EncodedImage& inputImage, bool missingFrames,
  /external/chromium_org/third_party/webrtc/modules/video_coding/codecs/test_framework/
normal_test.h 29 virtual int Decode(int lossValue = 0);
  /external/chromium_org/third_party/webrtc/test/
fake_decoder.h 29 virtual int32_t Decode(const EncodedImage& input,

Completed in 1194 milliseconds

12 3 4 5 6 7 8 91011>>