HomeSort by relevance Sort by last modified time
    Searched refs:Decode (Results 51 - 75 of 420) sorted by null

1 23 4 5 6 7 8 91011>>

  /external/chromium_org/ppapi/c/
ppb_video_decoder.h 41 * - 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,
168 * the decoder can decode more pictures.
180 * pending Decode() call to completion. The plugin should make no furthe
    [all...]
  /external/chromium_org/ppapi/cpp/dev/
video_decoder_dev.cc 48 int32_t VideoDecoder_Dev::Decode(
53 return get_interface<PPB_VideoDecoder_Dev>()->Decode(
  /external/chromium_org/ui/gfx/codec/
png_codec.h 23 // 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/ppapi/cpp/
video_decoder.cc 70 int32_t VideoDecoder::Decode(uint32_t decode_id,
75 return get_interface<PPB_VideoDecoder_0_2>()->Decode(
79 return get_interface<PPB_VideoDecoder_0_1>()->Decode(
  /external/chromium_org/tools/relocation_packer/src/
run_length_encoder_unittest.cc 89 TEST(RunLength, Decode) {
94 codec.Decode(packed, &relocations);
110 codec.Decode(packed, &relocations);
  /art/disassembler/
disassembler_arm64.cc 36 decoder.Decode(reinterpret_cast<vixl::Instruction*>(&instruction));
  /art/runtime/base/
bit_field.h 66 static T Decode(uword value) {
  /art/runtime/native/
java_lang_DexCache.cc 27 mirror::DexCache* dex_cache = soa.Decode<mirror::DexCache*>(javaDexCache);
  /art/test/117-nopatchoat/
nopatchoat.cc 29 mirror::Class* klass = soa.Decode<mirror::Class*>(cls);
  /external/chromium_org/media/video/
video_decode_accelerator.h 96 virtual void Decode(const BitstreamBuffer& bitstream_buffer) = 0;
123 // decoder returned to a state ready for further Decode()s, followed by
138 // Returns true if VDA::Decode and VDA::Client callbacks can run on the IO
140 // running Decode on the IO thread is to reduce decode latency. Note Decode
  /external/chromium_org/ppapi/thunk/
ppb_video_decoder_api.h 30 virtual int32_t Decode(uint32_t decode_id,
ppb_video_decoder_thunk.cc 64 int32_t Decode(PP_Resource video_decoder,
69 VLOG(4) << "PPB_VideoDecoder::Decode()";
73 return enter.SetResult(enter.object()->Decode(decode_id,
120 &Decode,
131 &Decode,
  /external/chromium_org/third_party/libjingle/source/talk/xmpp/
saslmechanism.cc 62 return Base64::Decode(encoded, Base64::DO_LAX);
  /external/chromium_org/third_party/skia/experimental/PdfViewer/pdfparser/native/pdfapi/
SkPdfType4ShadingDictionary_autogen.h 44 SkRect Decode(SkPdfNativeDoc* doc);
SkPdfType5ShadingDictionary_autogen.h 44 SkPdfArray* Decode(SkPdfNativeDoc* doc);
SkPdfType6ShadingDictionary_autogen.h 44 SkPdfArray* Decode(SkPdfNativeDoc* doc);
  /external/chromium_org/third_party/webrtc/modules/utility/source/
coder.h 36 int32_t Decode(AudioFrame& decodedAudio, uint32_t sampFreqHz,
video_coder.h 35 int32_t Decode(I420VideoFrame& decodedVideo,
  /external/lzma/CPP/7zip/Archive/7z/
7zDecode.h 49 HRESULT Decode(
  /external/skia/experimental/PdfViewer/pdfparser/native/pdfapi/
SkPdfType4ShadingDictionary_autogen.h 44 SkRect Decode(SkPdfNativeDoc* doc);
SkPdfType5ShadingDictionary_autogen.h 44 SkPdfArray* Decode(SkPdfNativeDoc* doc);
SkPdfType6ShadingDictionary_autogen.h 44 SkPdfArray* Decode(SkPdfNativeDoc* doc);
  /external/chromium_org/third_party/webrtc/modules/video_coding/main/test/
codec_database_test.cc 113 // registering the callback - encode and decode with the same vcm (could be later changed)
202 TEST(_vcm->Decode() == VCM_OK);
207 TEST(_vcm->Decode() == VCM_OK);
212 TEST(_vcm->Decode() < 0); // Expect an error since we have de-registered the decoder
236 TEST(_vcm->Decode() == VCM_OK);
242 // Try to decode a delta frame. Should get a warning since we have enabled the "require key frame" setting
244 TEST(_vcm->Decode() == VCM_MISSING_CALLBACK);
249 TEST(_vcm->Decode() == VCM_OK);
262 TEST(_vcm->Decode() == VCM_OK);
269 TEST(_vcm->Decode() == VCM_OK)
    [all...]
  /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/third_party/webrtc/video_engine/test/libvietest/include/
tb_I420_codec.h 86 virtual int32_t Decode(
101 int32_t Decode;

Completed in 838 milliseconds

1 23 4 5 6 7 8 91011>>