Mercurial > libavcodec.hg
annotate iff.c @ 11399:bb19a598f066 libavcodec
sh4: fix about 1000 warnings
author | mru |
---|---|
date | Mon, 08 Mar 2010 02:36:16 +0000 |
parents | 5b9d41da4152 |
children | 534872e7ab38 |
rev | line source |
---|---|
11074 | 1 /* |
2 * IFF PBM/ILBM bitmap decoder | |
3 * Copyright (c) 2010 Peter Ross <pross@xvid.org> | |
4 * | |
5 * This file is part of FFmpeg. | |
6 * | |
7 * FFmpeg is free software; you can redistribute it and/or | |
8 * modify it under the terms of the GNU Lesser General Public | |
9 * License as published by the Free Software Foundation; either | |
10 * version 2.1 of the License, or (at your option) any later version. | |
11 * | |
12 * FFmpeg is distributed in the hope that it will be useful, | |
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of | |
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |
15 * Lesser General Public License for more details. | |
16 * | |
17 * You should have received a copy of the GNU Lesser General Public | |
18 * License along with FFmpeg; if not, write to the Free Software | |
19 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA | |
20 */ | |
21 | |
22 /** | |
23 * @file libavcodec/iff.c | |
24 * IFF PBM/ILBM bitmap decoder | |
25 */ | |
26 | |
27 #include "bytestream.h" | |
28 #include "avcodec.h" | |
11175 | 29 #include "get_bits.h" |
11395
5b9d41da4152
IFF: move ff_cmap_read_palette() prototype to a header file
mru
parents:
11336
diff
changeset
|
30 #include "iff.h" |
11175 | 31 |
32 typedef struct { | |
33 AVFrame frame; | |
34 int planesize; | |
35 uint8_t * planebuf; | |
36 } IffContext; | |
11074 | 37 |
38 /** | |
39 * Convert CMAP buffer (stored in extradata) to lavc palette format | |
40 */ | |
41 int ff_cmap_read_palette(AVCodecContext *avctx, uint32_t *pal) | |
42 { | |
43 int count, i; | |
44 | |
45 if (avctx->bits_per_coded_sample > 8) { | |
46 av_log(avctx, AV_LOG_ERROR, "bit_per_coded_sample > 8 not supported\n"); | |
47 return AVERROR_INVALIDDATA; | |
48 } | |
49 | |
50 count = 1 << avctx->bits_per_coded_sample; | |
51 if (avctx->extradata_size < count * 3) { | |
52 av_log(avctx, AV_LOG_ERROR, "palette data underflow\n"); | |
53 return AVERROR_INVALIDDATA; | |
54 } | |
55 for (i=0; i < count; i++) { | |
11175 | 56 pal[i] = 0xFF000000 | AV_RB24( avctx->extradata + i*3 ); |
11074 | 57 } |
58 return 0; | |
59 } | |
60 | |
61 static av_cold int decode_init(AVCodecContext *avctx) | |
62 { | |
11175 | 63 IffContext *s = avctx->priv_data; |
11074 | 64 |
11175 | 65 if (avctx->bits_per_coded_sample <= 8) { |
66 avctx->pix_fmt = PIX_FMT_PAL8; | |
67 } else if (avctx->bits_per_coded_sample <= 32) { | |
68 avctx->pix_fmt = PIX_FMT_BGR32; | |
69 } else { | |
70 return AVERROR_INVALIDDATA; | |
71 } | |
11074 | 72 |
11175 | 73 s->planesize = avctx->width / 8; |
74 s->planebuf = av_malloc(s->planesize + FF_INPUT_BUFFER_PADDING_SIZE); | |
75 if (!s->planebuf) | |
76 return AVERROR(ENOMEM); | |
77 | |
78 s->frame.reference = 1; | |
79 if (avctx->get_buffer(avctx, &s->frame) < 0) { | |
11074 | 80 av_log(avctx, AV_LOG_ERROR, "get_buffer() failed\n"); |
81 return AVERROR_UNKNOWN; | |
82 } | |
11175 | 83 |
84 return avctx->bits_per_coded_sample <= 8 ? | |
85 ff_cmap_read_palette(avctx, (uint32_t*)s->frame.data[1]) : 0; | |
11074 | 86 } |
87 | |
88 /** | |
11175 | 89 * Decode interleaved plane buffer |
90 * @param dst Destination buffer | |
91 * @param buf Source buffer | |
92 * @param buf_size | |
93 * @param bps bits_per_coded_sample | |
94 * @param plane plane number to decode as | |
11074 | 95 */ |
11175 | 96 #define DECLARE_DECODEPLANE(suffix, type) \ |
11336 | 97 static void decodeplane##suffix(void *dst, const uint8_t *const buf, int buf_size, int bps, int plane) \ |
11175 | 98 { \ |
99 GetBitContext gb; \ | |
100 int i, b; \ | |
101 init_get_bits(&gb, buf, buf_size * 8); \ | |
102 for(i = 0; i < (buf_size * 8 + bps - 1) / bps; i++) { \ | |
103 for (b = 0; b < bps; b++) { \ | |
104 ((type *)dst)[ i*bps + b ] |= get_bits1(&gb) << plane; \ | |
105 } \ | |
106 } \ | |
11074 | 107 } |
11175 | 108 DECLARE_DECODEPLANE(8, uint8_t) |
109 DECLARE_DECODEPLANE(32, uint32_t) | |
11074 | 110 |
111 static int decode_frame_ilbm(AVCodecContext *avctx, | |
112 void *data, int *data_size, | |
113 AVPacket *avpkt) | |
114 { | |
11175 | 115 IffContext *s = avctx->priv_data; |
11074 | 116 const uint8_t *buf = avpkt->data; |
117 int buf_size = avpkt->size; | |
11187 | 118 const uint8_t *buf_end = buf+buf_size; |
11074 | 119 int y, plane; |
120 | |
11175 | 121 if (avctx->reget_buffer(avctx, &s->frame) < 0){ |
11074 | 122 av_log(avctx, AV_LOG_ERROR, "get_buffer() failed\n"); |
123 return -1; | |
124 } | |
125 | |
126 for(y = 0; y < avctx->height; y++ ) { | |
11175 | 127 uint8_t *row = &s->frame.data[0][ y*s->frame.linesize[0] ]; |
128 memset(row, 0, avctx->pix_fmt == PIX_FMT_PAL8 ? avctx->width : (avctx->width * 4)); | |
11187 | 129 for (plane = 0; plane < avctx->bits_per_coded_sample && buf < buf_end; plane++) { |
11175 | 130 if (avctx->pix_fmt == PIX_FMT_PAL8) { |
11187 | 131 decodeplane8(row, buf, FFMIN(s->planesize, buf_end - buf), avctx->bits_per_coded_sample, plane); |
11175 | 132 } else { // PIX_FMT_BGR32 |
11187 | 133 decodeplane32(row, buf, FFMIN(s->planesize, buf_end - buf), avctx->bits_per_coded_sample, plane); |
11175 | 134 } |
135 buf += s->planesize; | |
11074 | 136 } |
137 } | |
138 | |
139 *data_size = sizeof(AVFrame); | |
11175 | 140 *(AVFrame*)data = s->frame; |
11074 | 141 return buf_size; |
142 } | |
143 | |
144 static int decode_frame_byterun1(AVCodecContext *avctx, | |
145 void *data, int *data_size, | |
146 AVPacket *avpkt) | |
147 { | |
11175 | 148 IffContext *s = avctx->priv_data; |
11074 | 149 const uint8_t *buf = avpkt->data; |
150 int buf_size = avpkt->size; | |
151 const uint8_t *buf_end = buf+buf_size; | |
152 int y, plane, x; | |
153 | |
11175 | 154 if (avctx->reget_buffer(avctx, &s->frame) < 0){ |
11074 | 155 av_log(avctx, AV_LOG_ERROR, "get_buffer() failed\n"); |
156 return -1; | |
157 } | |
158 | |
159 for(y = 0; y < avctx->height ; y++ ) { | |
11175 | 160 uint8_t *row = &s->frame.data[0][ y*s->frame.linesize[0] ]; |
11074 | 161 if (avctx->codec_tag == MKTAG('I','L','B','M')) { //interleaved |
11175 | 162 memset(row, 0, avctx->pix_fmt == PIX_FMT_PAL8 ? avctx->width : (avctx->width * 4)); |
11074 | 163 for (plane = 0; plane < avctx->bits_per_coded_sample; plane++) { |
11175 | 164 for(x = 0; x < s->planesize && buf < buf_end; ) { |
11124
85a1b00a2413
Use int8_t instead of char, the signedness of char can differ between systems.
reimar
parents:
11074
diff
changeset
|
165 int8_t value = *buf++; |
11074 | 166 int length; |
167 if (value >= 0) { | |
168 length = value + 1; | |
11175 | 169 memcpy(s->planebuf + x, buf, FFMIN3(length, s->planesize - x, buf_end - buf)); |
11074 | 170 buf += length; |
171 } else if (value > -128) { | |
172 length = -value + 1; | |
11175 | 173 memset(s->planebuf + x, *buf++, FFMIN(length, s->planesize - x)); |
11074 | 174 } else { //noop |
175 continue; | |
176 } | |
177 x += length; | |
178 } | |
11175 | 179 if (avctx->pix_fmt == PIX_FMT_PAL8) { |
180 decodeplane8(row, s->planebuf, s->planesize, avctx->bits_per_coded_sample, plane); | |
181 } else { //PIX_FMT_BGR32 | |
182 decodeplane32(row, s->planebuf, s->planesize, avctx->bits_per_coded_sample, plane); | |
183 } | |
11074 | 184 } |
185 } else { | |
186 for(x = 0; x < avctx->width && buf < buf_end; ) { | |
11124
85a1b00a2413
Use int8_t instead of char, the signedness of char can differ between systems.
reimar
parents:
11074
diff
changeset
|
187 int8_t value = *buf++; |
11074 | 188 int length; |
189 if (value >= 0) { | |
190 length = value + 1; | |
191 memcpy(row + x, buf, FFMIN3(length, buf_end - buf, avctx->width - x)); | |
192 buf += length; | |
193 } else if (value > -128) { | |
194 length = -value + 1; | |
195 memset(row + x, *buf++, FFMIN(length, avctx->width - x)); | |
196 } else { //noop | |
197 continue; | |
198 } | |
199 x += length; | |
200 } | |
201 } | |
202 } | |
203 | |
204 *data_size = sizeof(AVFrame); | |
11175 | 205 *(AVFrame*)data = s->frame; |
11074 | 206 return buf_size; |
207 } | |
208 | |
209 static av_cold int decode_end(AVCodecContext *avctx) | |
210 { | |
11175 | 211 IffContext *s = avctx->priv_data; |
212 if (s->frame.data[0]) | |
213 avctx->release_buffer(avctx, &s->frame); | |
214 av_freep(&s->planebuf); | |
11074 | 215 return 0; |
216 } | |
217 | |
218 AVCodec iff_ilbm_decoder = { | |
219 "iff_ilbm", | |
220 CODEC_TYPE_VIDEO, | |
221 CODEC_ID_IFF_ILBM, | |
11175 | 222 sizeof(IffContext), |
11074 | 223 decode_init, |
224 NULL, | |
225 decode_end, | |
226 decode_frame_ilbm, | |
227 CODEC_CAP_DR1, | |
228 .long_name = NULL_IF_CONFIG_SMALL("IFF ILBM"), | |
229 }; | |
230 | |
231 AVCodec iff_byterun1_decoder = { | |
232 "iff_byterun1", | |
233 CODEC_TYPE_VIDEO, | |
234 CODEC_ID_IFF_BYTERUN1, | |
11175 | 235 sizeof(IffContext), |
11074 | 236 decode_init, |
237 NULL, | |
238 decode_end, | |
239 decode_frame_byterun1, | |
240 CODEC_CAP_DR1, | |
241 .long_name = NULL_IF_CONFIG_SMALL("IFF ByteRun1"), | |
242 }; |