summaryrefslogtreecommitdiffstats
path: root/skia/ports/SkImageDecoder_Factory.cpp
blob: bc4e7b232e3cb79c77de5ed86e618849ed2e1840 (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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
/* libs/graphics/ports/SkImageDecoder_Factory.cpp
**
** Copyright 2006, The Android Open Source Project
**
** Licensed under the Apache License, Version 2.0 (the "License"); 
** you may not use this file except in compliance with the License. 
** You may obtain a copy of the License at 
**
**     http://www.apache.org/licenses/LICENSE-2.0 
**
** Unless required by applicable law or agreed to in writing, software 
** distributed under the License is distributed on an "AS IS" BASIS, 
** WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 
** See the License for the specific language governing permissions and 
** limitations under the License.
*/

#include "SkImageDecoder.h"
#include "SkMovie.h"
#include "SkStream.h"

extern SkImageDecoder* SkImageDecoder_GIF_Factory(SkStream*);
extern SkImageDecoder* SkImageDecoder_BMP_Factory(SkStream*);
extern SkImageDecoder* SkImageDecoder_ICO_Factory(SkStream*);
extern SkImageDecoder* SkImageDecoder_PNG_Factory(SkStream*);
extern SkImageDecoder* SkImageDecoder_WBMP_Factory(SkStream*);
extern SkImageDecoder* SkImageDecoder_JPEG_Factory(SkStream*);

typedef SkImageDecoder* (*SkImageDecoderFactoryProc)(SkStream*);

struct CodecFormat {
    SkImageDecoderFactoryProc   fProc;
    SkImageDecoder::Format      fFormat;
};

#ifdef SK_SUPPORT_IMAGE_DECODE
static const CodecFormat gPairs[] = {
    { SkImageDecoder_GIF_Factory,   SkImageDecoder::kGIF_Format },
    { SkImageDecoder_PNG_Factory,   SkImageDecoder::kPNG_Format },
    { SkImageDecoder_ICO_Factory,   SkImageDecoder::kICO_Format },
    { SkImageDecoder_WBMP_Factory,  SkImageDecoder::kWBMP_Format },
    { SkImageDecoder_BMP_Factory,   SkImageDecoder::kBMP_Format },
    { SkImageDecoder_JPEG_Factory,  SkImageDecoder::kJPEG_Format }
};
#endif

SkImageDecoder* SkImageDecoder::Factory(SkStream* stream) {
#ifdef SK_SUPPORT_IMAGE_DECODE
    for (size_t i = 0; i < SK_ARRAY_COUNT(gPairs); i++) {
        SkImageDecoder* codec = gPairs[i].fProc(stream);
        stream->rewind();
        if (NULL != codec) {
            return codec;
        }
    }
#endif
    return NULL;
}

bool SkImageDecoder::SupportsFormat(Format format) {
#ifdef SK_SUPPORT_IMAGE_DECODE
    for (size_t i = 0; i < SK_ARRAY_COUNT(gPairs); i++) {
        if (gPairs[i].fFormat == format) {
            return true;
        }
    }
#endif
    return false;
}

/////////////////////////////////////////////////////////////////////////

// the movie may hold onto the stream (by calling ref())
typedef SkMovie* (*SkMovieStreamProc)(SkStream*);
// the movie may NOT hold onto the pointer
typedef SkMovie* (*SkMovieMemoryProc)(const void*, size_t);

extern SkMovie* SkMovie_GIF_StreamFactory(SkStream*);
extern SkMovie* SkMovie_GIF_MemoryFactory(const void*, size_t);

#ifdef SK_SUPPORT_IMAGE_DECODE
static const SkMovieStreamProc gStreamProc[] = {
    SkMovie_GIF_StreamFactory
};

static const SkMovieMemoryProc gMemoryProc[] = {
    SkMovie_GIF_MemoryFactory
};
#endif

SkMovie* SkMovie::DecodeStream(SkStream* stream) {
#ifdef SK_SUPPORT_IMAGE_DECODE
    for (unsigned i = 0; i < SK_ARRAY_COUNT(gStreamProc); i++) {
        SkMovie* movie = gStreamProc[i](stream);
        if (NULL != movie) {
            return movie;
        }
        stream->rewind();
    }
#endif
    return NULL;
}

SkMovie* SkMovie::DecodeMemory(const void* data, size_t length)
{
#ifdef SK_SUPPORT_IMAGE_DECODE
    for (unsigned i = 0; i < SK_ARRAY_COUNT(gMemoryProc); i++) {
        SkMovie* movie = gMemoryProc[i](data, length);
        if (NULL != movie) {
            return movie;
        }
    }
#endif
    return NULL;
}

/////////////////////////////////////////////////////////////////////////

#ifdef SK_SUPPORT_IMAGE_ENCODE

extern SkImageEncoder* SkImageEncoder_JPEG_Factory();
extern SkImageEncoder* SkImageEncoder_PNG_Factory();

SkImageEncoder* SkImageEncoder::Create(Type t) {
    switch (t) {
        case kJPEG_Type:
            return SkImageEncoder_JPEG_Factory();
        case kPNG_Type:
            return SkImageEncoder_PNG_Factory();
        default:
            return NULL;
    }
}

#endif