Searched refs:Decode (Results 26 - 50 of 353) sorted by relevance

1234567891011>>

/external/chromium_org/ppapi/c/dev/
H A Dppb_video_decoder_dev.h38 * - Call Decode() to decode some video data.
88 int32_t (*Decode)(PP_Resource video_decoder, member in struct:PPB_VideoDecoder_Dev_0_16
138 * Decode() calls. |callback| will be called when the reset is done.
/external/chromium_org/ppapi/cpp/dev/
H A Dvideo_decoder_dev.h36 int32_t Decode(const PP_VideoBitstreamBuffer_Dev& bitstream_buffer,
H A Dvideo_decoder_dev.cc48 int32_t VideoDecoder_Dev::Decode( function in class:pp::VideoDecoder_Dev
53 return get_interface<PPB_VideoDecoder_Dev>()->Decode(
/external/chromium_org/ppapi/cpp/
H A Dvideo_decoder.h30 /// - Call Decode() continuously (waiting for each previous call to complete) to
84 /// returning PP_OK or by running |callback| before calling Decode() again.
91 /// If the call to Decode() eventually results in a picture, the |decode_id|
93 /// associate decoded pictures with Decode() calls (e.g. to assign timestamps
98 /// used to associate calls to Decode() with decoded pictures returned by
108 /// Returns PP_ERROR_INPROGRESS if there is another Decode() call pending.
110 /// Returns PP_ERROR_ABORTED when Reset() is called while Decode() is pending.
111 int32_t Decode(uint32_t decode_id,
144 /// pending Decode() call to completion. The plugin should make no further
161 /// pending calls to Decode() an
[all...]
H A Dvideo_decoder.cc70 int32_t VideoDecoder::Decode(uint32_t decode_id, function in class:pp::VideoDecoder
75 return get_interface<PPB_VideoDecoder_0_2>()->Decode(
79 return get_interface<PPB_VideoDecoder_0_1>()->Decode(
/external/chromium_org/ppapi/thunk/
H A Dppb_video_decoder_dev_api.h21 virtual int32_t Decode(const PP_VideoBitstreamBuffer_Dev* bitstream_buffer,
H A Dppb_video_decoder_api.h30 virtual int32_t Decode(uint32_t decode_id,
H A Dppb_video_decoder_thunk.cc64 int32_t Decode(PP_Resource video_decoder, function in namespace:ppapi::thunk::__anon10322
69 VLOG(4) << "PPB_VideoDecoder::Decode()";
73 return enter.SetResult(enter.object()->Decode(decode_id,
120 &Decode,
131 &Decode,
/external/chromium_org/remoting/codec/
H A Daudio_decoder_verbatim.cc18 scoped_ptr<AudioPacket> AudioDecoderVerbatim::Decode( function in class:remoting::AudioDecoderVerbatim
/external/chromium_org/third_party/webrtc/modules/audio_coding/neteq/mock/
H A Dmock_audio_decoder.h25 MOCK_METHOD4(Decode, int(const uint8_t*, size_t, int16_t*,
H A Dmock_external_decoder_pcm16b.h34 virtual int Decode(const uint8_t* encoded, size_t encoded_len, function in class:webrtc::ExternalPcm16B
58 ON_CALL(*this, Decode(_, _, _, _))
59 .WillByDefault(Invoke(&real_, &ExternalPcm16B::Decode));
76 MOCK_METHOD4(Decode,
/external/chromium_org/ui/gfx/image/
H A Dimage_png_rep.cc33 if (!gfx::PNGCodec::Decode(raw_data->front(), raw_data->size(),
/external/chromium_org/media/filters/
H A Dopus_audio_decoder.h38 virtual void Decode(const scoped_refptr<DecoderBuffer>& buffer,
51 bool Decode(const scoped_refptr<DecoderBuffer>& input,
/external/chromium_org/ppapi/c/
H A Dppb_video_decoder.h41 * - Call Decode() continuously (waiting for each previous call to complete) to
106 * returning PP_OK or by running |callback| before calling Decode() again.
113 * If the call to Decode() eventually results in a picture, the |decode_id|
115 * associate decoded pictures with Decode() calls (e.g. to assign timestamps
122 * used to associate calls to Decode() with decoded pictures returned by
132 * Returns PP_ERROR_INPROGRESS if there is another Decode() call pending.
134 * Returns PP_ERROR_ABORTED when Reset() is called while Decode() is pending.
136 int32_t (*Decode)(PP_Resource video_decoder, member in struct:PPB_VideoDecoder_0_2
180 * pending Decode() call to completion. The plugin should make no further
201 * pending calls to Decode() an
230 int32_t (*Decode)(PP_Resource video_decoder, member in struct:PPB_VideoDecoder_0_1
[all...]
/external/chromium_org/ui/gfx/codec/
H A Dpng_codec.h23 // isn't as robust as would be required for a browser (see Decode() for more).
43 // For Decode() kARGB_8888_Config is always used.
113 static bool Decode(const unsigned char* input, size_t input_size,
118 // significantly faster than the vector<unsigned char> version of Decode()
125 static bool Decode(const unsigned char* input, size_t input_size,
/external/chromium_org/third_party/webrtc/base/
H A Dbase64.h73 static inline std::string Decode(const std::string& data, DecodeFlags flags) { function in class:rtc::Base64
78 static inline bool Decode(const std::string& data, DecodeFlags flags, function in class:rtc::Base64
83 static inline bool Decode(const std::string& data, DecodeFlags flags, function in class:rtc::Base64
/external/chromium_org/tools/relocation_packer/src/
H A Drun_length_encoder_unittest.cc89 TEST(RunLength, Decode) {
94 codec.Decode(packed, &relocations);
110 codec.Decode(packed, &relocations);
/external/chromium_org/media/base/
H A Daudio_decoder.h39 // Callback for Decode(). Called after the decoder has completed decoding
58 // |output_cb| is called for decoded audio buffers (see Decode()).
74 virtual void Decode(const scoped_refptr<DecoderBuffer>& buffer,
77 // Resets decoder state. All pending Decode() requests will be finished or
H A Dvideo_decoder.h29 kAborted, // Decode was aborted as a result of Reset() being called.
38 // Callback type for Decode(). Called after the decoder has completed decoding
56 // decoded by Decode().
72 // parallel. Decoder must call |decode_cb| in the same order in which Decode()
77 // Decode() calls (i.e. |decode_cb| will be called even if Decode() is never
86 // |decode_cb| must be called after that. Callers will not call Decode()
88 virtual void Decode(const scoped_refptr<DecoderBuffer>& buffer,
91 // Resets decoder state. All pending Decode() requests will be finished or
/external/chromium_org/third_party/libjingle/source/talk/xmpp/
H A Dsaslmechanism.cc62 return Base64::Decode(encoded, Base64::DO_LAX);
/external/chromium_org/third_party/webrtc/examples/android/media_demo/jni/
H A Dmedia_codec_video_decoder.h29 virtual int32_t Decode(const EncodedImage& inputImage, bool missingFrames,
/external/chromium_org/third_party/webrtc/modules/utility/source/
H A Dvideo_coder.h35 int32_t Decode(I420VideoFrame& decodedVideo,
/external/chromium_org/third_party/webrtc/modules/video_coding/codecs/test_framework/
H A Dnormal_test.h29 virtual int Decode(int lossValue = 0);
/external/lzma/CPP/7zip/Archive/7z/
H A D7zDecode.h49 HRESULT Decode(
/external/lzma/CS/7zip/Compress/RangeCoder/
H A DRangeCoderBitTree.cs120 public uint Decode(RangeCoder.Decoder rangeDecoder) method in struct:SevenZip.Compression.RangeCoder.BitTreeDecoder
124 m = (m << 1) + Models[m].Decode(rangeDecoder);
134 uint bit = Models[m].Decode(rangeDecoder);
149 uint bit = Models[startIndex + m].Decode(rangeDecoder);

Completed in 488 milliseconds

1234567891011>>