blob: 272c5b4b1ce7927df2295e5e838250d2f9cb0c29 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
|
/*
* Copyright 2015 Google Inc.
*
* Use of this source code is governed by a BSD-style license that can be
* found in the LICENSE file.
*/
#ifndef SkJpegDecoderMgr_DEFINED
#define SkJpegDecoderMgr_DEFINED
#include "SkCodec.h"
#include "SkCodecPriv.h"
#include <stdio.h>
#include "SkJpegUtility.h"
extern "C" {
#include "jpeglib.h"
}
class JpegDecoderMgr : SkNoncopyable {
public:
/*
* Print a useful error message and return false
*/
bool returnFalse(const char caller[]);
/*
* Print a useful error message and return a decode failure
*/
SkCodec::Result returnFailure(const char caller[], SkCodec::Result result);
/*
* Create the decode manager
* Does not take ownership of stream
*/
JpegDecoderMgr(SkStream* stream);
/*
* Initialize decompress struct
* Initialize the source manager
*/
void init();
/*
* Returns true if it successfully sets outColor to the encoded color,
* and false otherwise.
*/
bool getEncodedColor(SkEncodedInfo::Color* outColor);
/*
* Free memory used by the decode manager
*/
~JpegDecoderMgr();
/*
* Get the jump buffer in order to set an error return point
*/
jmp_buf& getJmpBuf();
/*
* Get function for the decompress info struct
*/
jpeg_decompress_struct* dinfo();
private:
jpeg_decompress_struct fDInfo;
skjpeg_source_mgr fSrcMgr;
skjpeg_error_mgr fErrorMgr;
jpeg_progress_mgr fProgressMgr;
bool fInit;
};
#endif
|