HomeSort by relevance Sort by last modified time
    Searched defs:Decode (Results 101 - 125 of 130) sorted by null

1 2 3 45 6

  /external/chromium_org/third_party/webrtc/modules/video_coding/codecs/vp8/
vp8_impl.cc 559 cfg.h = cfg.w = 0; // set after decode
599 int VP8DecoderImpl::Decode(const EncodedImage& input_image,
741 // decode a complete.
775 // we can decode but with artifacts
  /external/chromium_org/tools/imagediff/
image_diff_png.cc 103 // An intermediary buffer for decode output.
276 // Mark the image as complete, this will tell the Decode function that we
320 bool Decode(const unsigned char* input, size_t input_size,
613 // Decode a PNG into an RGBA pixel array.
617 return Decode(input, input_size, FORMAT_RGBA, output, width, height);
  /external/llvm/tools/llvm-readobj/
ARMEHABIPrinter.h 67 void Decode(const uint8_t *Opcodes, off_t Offset, size_t Length);
290 void OpcodeDecoder::Decode(const uint8_t *Opcodes, off_t Offset, size_t Length) {
456 OpcodeDecoder(OCC.W).Decode(Entry, Offset, Length);
  /external/openfst/src/include/fst/
encode.h 45 enum EncodeType { ENCODE = 1, DECODE = 2 };
158 // Given an encode arc Label decode back to input/output labels and costs
159 const Tuple* Decode(Label key) const {
161 LOG(ERROR) << "EncodeTable::Decode: unknown decode key: " << key;
287 // A mapper to encode/decode weighted transducers. Encoding of an
297 // EncodeTable is generated the same table may by used to decode the machine
300 // Encode -> Determinize -> Decode
303 // decode, even though the encoding is not complete.
323 // Copy constructor but setting the type, typically to DECODE
    [all...]
  /external/skia/experimental/PdfViewer/pdfparser/native/
SkPdfNativeTokenizer.cpp     [all...]
  /external/webp/src/dec/
webp.c 482 // Decode bitstream header, update io->width/io->height.
489 if (status == VP8_STATUS_OK) { // Decode
511 if (status == VP8_STATUS_OK) { // Decode
611 static uint8_t* Decode(WEBP_CSP_MODE mode, const uint8_t* const data,
629 // Decode
642 return Decode(MODE_RGB, data, data_size, width, height, NULL);
647 return Decode(MODE_RGBA, data, data_size, width, height, NULL);
652 return Decode(MODE_ARGB, data, data_size, width, height, NULL);
657 return Decode(MODE_BGR, data, data_size, width, height, NULL);
662 return Decode(MODE_BGRA, data, data_size, width, height, NULL)
    [all...]
  /external/chromium_org/content/common/gpu/media/
dxva_video_decode_accelerator.cc 310 NOTREACHED() << "Decode surface of different dimension than texture";
504 void DXVAVideoDecodeAccelerator::Decode(
    [all...]
v4l2_video_decode_accelerator.cc 314 void V4L2VideoDecodeAccelerator::Decode(
316 DVLOG(1) << "Decode(): input_id=" << bitstream_buffer.id()
467 DLOG(ERROR) << "Decode(): could not map bitstream_buffer";
476 // we're here, we know that this DecodeTask() was scheduled by a Decode()
565 // This is a buffer queued from the client, with actual contents. Decode.
595 // Failed during decode.
721 // Initial decode. We haven't been able to get output stream format info yet.
745 // Need more stream to decode format, return true and schedule next buffer.
    [all...]
vaapi_h264_decoder.cc 16 // Decode surface, used for decoding and reference. input_id comes from client
487 DVLOG(1) << "Asked to decode an invalid POC " << curr_pic_->pic_order_cnt;
521 // Try to get an empty surface to decode this picture to.
    [all...]
  /external/chromium_org/ui/gfx/codec/
png_codec.cc 115 // The other way to decode output, where we write into an intermediary buffer
308 // Mark the image as complete, this will tell the Decode function that we
372 DLOG(ERROR) << "libpng decode error: " << error_msg;
377 DLOG(ERROR) << "libpng decode warning: " << warning_msg;
392 bool PNGCodec::Decode(const unsigned char* input, size_t input_size,
431 bool PNGCodec::Decode(const unsigned char* input, size_t input_size,
  /external/lldb/source/Core/
Disassembler.cpp     [all...]
  /external/lldb/source/Plugins/Disassembler/llvm/
DisassemblerLLVMC.cpp 121 Decode (const lldb_private::Disassembler &disassembler,
721 uint32_t inst_size = inst_sp->Decode(*this, data, data_cursor);
  /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/pdfium/core/src/fxcodec/codec/
fx_codec_flate.cpp 80 FX_BOOL Decode(FX_LPBYTE output, FX_DWORD& outlen, const FX_BYTE* input, FX_DWORD& size, FX_BOOL bEarlyChange);
128 int CLZWDecoder::Decode(FX_LPBYTE dest_buf, FX_DWORD& dest_size, const FX_BYTE* src_buf, FX_DWORD& src_size, FX_BOOL bEarlyChange)
    [all...]
fx_codec_jpx_opj.cpp 559 FX_BOOL Decode(FX_LPBYTE dest_buf, int pitch, FX_BOOL bTranslateColor, FX_LPBYTE offsets);
672 FX_BOOL CJPX_Decoder::Decode(FX_LPBYTE dest_buf, int pitch, FX_BOOL bTranslateColor, FX_LPBYTE offsets)
790 FX_BOOL CCodec_JpxModule::Decode(void* ctx, FX_LPBYTE dest_data, int pitch, FX_BOOL bTranslateColor, FX_LPBYTE offsets)
793 return pDecoder->Decode(dest_data, pitch, bTranslateColor, offsets);
  /external/webrtc/src/modules/audio_coding/codecs/isac/main/source/
isac.c     [all...]
  /external/chromium_org/third_party/webrtc/modules/audio_coding/codecs/isac/main/source/
isac.c     [all...]
  /external/chromium_org/third_party/webrtc/modules/audio_coding/neteq/
neteq_impl.cc 692 int decode_return_value = Decode(&packet_list, &operation,
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
certenc.h 129 virtual HRESULT WINAPI Decode(const BSTR strBinary) = 0;
147 HRESULT (WINAPI *Decode)(ICertEncodeStringArray *This,const BSTR strBinary);
167 #define ICertEncodeStringArray_Decode(This,strBinary) (This)->lpVtbl->Decode(This,strBinary)
198 virtual HRESULT WINAPI Decode(const BSTR strBinary) = 0;
215 HRESULT (WINAPI *Decode)(ICertEncodeLongArray *This,const BSTR strBinary);
234 #define ICertEncodeLongArray_Decode(This,strBinary) (This)->lpVtbl->Decode(This,strBinary)
262 virtual HRESULT WINAPI Decode(const BSTR strBinary) = 0;
279 HRESULT (WINAPI *Decode)(ICertEncodeDateArray *This,const BSTR strBinary);
298 #define ICertEncodeDateArray_Decode(This,strBinary) (This)->lpVtbl->Decode(This,strBinary)
326 virtual HRESULT WINAPI Decode(const BSTR strBinary) = 0
    [all...]
  /external/chromium_org/content/browser/indexed_db/
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.
882 if (!KeyType::Decode(&slice_a, &key_a)) {
887 if (!KeyType::Decode(&slice_b, &key_b)) {
970 bool ok_a = KeyPrefix::Decode(&slice_a, &prefix_a);
971 bool ok_b = KeyPrefix::Decode(&slice_b, &prefix_b);
    [all...]
  /external/chromium_org/third_party/libjingle/source/talk/media/webrtc/
fakewebrtcvideoengine.h 75 virtual int32 Decode(
    [all...]
  /external/chromium_org/v8/src/
serialize.h 119 Address Decode(uint32_t key) const {
  /external/lzma/CPP/7zip/UI/Common/
Bench.cpp 501 HRESULT Decode(UInt32 decoderIndex);
526 encoder->Results[decoder->DecoderIndex] = encoder->Decode(decoder->DecoderIndex);
622 HRESULT CEncoderInfo::Decode(UInt32 decoderIndex)
804 RINOK(encoder.Decode(0));
  /external/chromium_org/v8/tools/
grokdump.py 813 string = string.decode("utf16")
    [all...]
  /external/chromium_org/third_party/libjingle/source/talk/app/webrtc/java/jni/
peerconnection_jni.cc     [all...]

Completed in 2210 milliseconds

1 2 3 45 6