Qt
Internal/Contributor docs for the Qt SDK. Note: These are NOT official API docs; those are found at https://doc.qt.io/
Loading...
Searching...
No Matches
gif_progressive_decoder.h
Go to the documentation of this file.
1// Copyright 2020 The PDFium Authors
2// Use of this source code is governed by a BSD-style license that can be
3// found in the LICENSE file.
4
5// Original code copyright 2014 Foxit Software Inc. http://www.foxitsoftware.com
6
7#ifndef CORE_FXCODEC_GIF_GIF_PROGRESSIVE_DECODER_H_
8#define CORE_FXCODEC_GIF_GIF_PROGRESSIVE_DECODER_H_
9
10#include "core/fxcodec/progressive_decoder_iface.h"
11
12#ifndef PDF_ENABLE_XFA_GIF
13#error "GIF must be enabled"
14#endif
15
16namespace fxcodec {
17
18class GifProgressiveDecoder final : public ProgressiveDecoderIface {
19 public:
20 static void InitializeGlobals();
21 static void DestroyGlobals();
22
23 static GifProgressiveDecoder* GetInstance();
24
25 // ProgressiveDecoderIface:
26 FX_FILESIZE GetAvailInput(Context* context) const override;
27 bool Input(Context* context,
28 RetainPtr<CFX_CodecMemory> codec_memory) override;
29
30 private:
31 GifProgressiveDecoder();
33};
34
35} // namespace fxcodec
36
37using GifProgressiveDecoder = fxcodec::GifProgressiveDecoder;
38
39#endif // CORE_FXCODEC_GIF_GIF_PROGRESSIVE_DECODER_H_
static FX_FILESIZE GetAvailInput(ProgressiveDecoderIface::Context *context)
static bool Input(ProgressiveDecoderIface::Context *context, RetainPtr< CFX_CodecMemory > codec_memory)
bool Input(Context *context, RetainPtr< CFX_CodecMemory > codec_memory) override
FX_FILESIZE GetAvailInput(Context *context) const override
static GifProgressiveDecoder * GetInstance()
#define FX_FILESIZE
Definition fx_types.h:19
#define CHECK(cvref)