Home
last modified time | relevance | path

Searched refs:DecoderState (Results 1 – 13 of 13) sorted by relevance

/external/libgav1/libgav1/src/
Ddecoder_impl.h53 EncodedFrame(ObuParser* const obu, const DecoderState& state, in EncodedFrame()
68 DecoderState state;
196 const DecoderState& state,
225 DecoderState state_;
Ddecoder_state.h28 struct DecoderState { struct
Dobu_parser.h246 BufferPool* const buffer_pool, DecoderState* const decoder_state) in ObuParser()
398 DecoderState& decoder_state_;
Dtile.h74 const DecoderState& state, FrameScratchBuffer* const frame_scratch_buffer, in Create()
244 const DecoderState& state, FrameScratchBuffer* frame_scratch_buffer,
Ddecoder_impl.cc644 DecoderState state; in InitializeFrameThreadPoolAndTemporalUnitQueue()
1188 const DecoderState& state, FrameScratchBuffer* const frame_scratch_buffer, in DecodeTiles()
/external/pdfium/third_party/libtiff/
Dtif_lzw.c157 #define DecoderState(tif) ((LZWCodecState*) LZWState(tif)) macro
201 LZWCodecState* sp = DecoderState(tif); in LZWSetupDecode()
217 DecoderState(tif)->dec_codetab = NULL; in LZWSetupDecode()
218 DecoderState(tif)->dec_decode = NULL; in LZWSetupDecode()
225 sp = DecoderState(tif); in LZWSetupDecode()
265 LZWCodecState *sp = DecoderState(tif); in LZWPreDecode()
366 LZWCodecState *sp = DecoderState(tif); in LZWDecode()
606 LZWCodecState *sp = DecoderState(tif); in LZWDecodeCompat()
1148 if (DecoderState(tif)->dec_codetab) in LZWCleanup()
1149 _TIFFfree(DecoderState(tif)->dec_codetab); in LZWCleanup()
[all …]
Dtif_zip.c81 #define DecoderState(tif) ZState(tif) macro
98 ZIPState* sp = DecoderState(tif); in ZIPSetupDecode()
127 ZIPState* sp = DecoderState(tif); in ZIPPreDecode()
148 ZIPState* sp = DecoderState(tif); in ZIPDecode()
Dtif_luv.c172 #define DecoderState(tif) ((LogLuvState*) (tif)->tif_data) macro
186 LogLuvState* sp = DecoderState(tif); in LogL16Decode()
262 LogLuvState* sp = DecoderState(tif); in LogLuvDecode24()
330 sp = DecoderState(tif); in LogLuvDecode32()
1283 LogLuvState* sp = DecoderState(tif); in LogL16InitState()
1385 LogLuvState* sp = DecoderState(tif); in LogLuvInitState()
1441 LogLuvState* sp = DecoderState(tif); in LogLuvSetupDecode()
1617 LogLuvState* sp = DecoderState(tif); in LogLuvVSetField()
Dtif_fax3.c87 #define DecoderState(tif) ((Fax3CodecState*) Fax3State(tif)) macro
103 Fax3CodecState* sp = DecoderState(tif); \
147 Fax3CodecState* sp = DecoderState(tif); in Fax3PreDecode()
1153 Fax3CodecState* sp = DecoderState(tif); in Fax3Cleanup()
1205 DecoderState(tif)->fill = va_arg(ap, TIFFFaxFillFunc); in Fax3VSetField()
1251 *va_arg(ap, TIFFFaxFillFunc*) = DecoderState(tif)->fill; in Fax3VGetField()
1374 DecoderState(tif)->runs = NULL; in InitCCITTFax3()
Dtif_pixarlog.c594 #define DecoderState(tif) ((PixarLogState*) (tif)->tif_data) macro
668 PixarLogState* sp = DecoderState(tif); in PixarLogSetupDecode()
733 PixarLogState* sp = DecoderState(tif); in PixarLogPreDecode()
756 PixarLogState* sp = DecoderState(tif); in PixarLogDecode()
/external/apache-commons-compress/src/main/java/org/apache/commons/compress/compressors/deflate64/
DHuffmanDecoder.java110 private DecoderState state;
192 private abstract static class DecoderState { class in HuffmanDecoder
202 private class UncompressedState extends DecoderState {
250 private class InitialState extends DecoderState {
272 private class HuffmanCodes extends DecoderState {
/external/libgav1/libgav1/tests/fuzzer/
Dobu_parser_fuzzer.cc49 libgav1::DecoderState decoder_state; in ParseObu()
/external/libgav1/libgav1/src/tile/
Dtile.cc419 RefCountedBuffer* const current_frame, const DecoderState& state, in Tile()