3 * Todd Kirby <doubleshot@pacbell.net>
5 * This file is part of FFmpeg.
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.
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.
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
22 #include "libavutil/imgutils.h"
23 #include "libavutil/avassert.h"
25 #include "bytestream.h"
28 typedef struct SgiState {
33 unsigned int bytes_per_channel;
39 * Expand an RLE row into a channel.
40 * @param s the current image state
41 * @param out_buf Points to one line after the output buffer.
42 * @param out_end end of line in output buffer
43 * @param pixelstride pixel stride of input buffer
44 * @return size of output in bytes, -1 if buffer overflows
46 static int expand_rle_row(SgiState *s, uint8_t *out_buf,
47 uint8_t *out_end, int pixelstride)
49 unsigned char pixel, count;
50 unsigned char *orig = out_buf;
52 while (out_buf < out_end) {
53 if (bytestream2_get_bytes_left(&s->g) < 1)
54 return AVERROR_INVALIDDATA;
55 pixel = bytestream2_get_byteu(&s->g);
56 if (!(count = (pixel & 0x7f))) {
60 /* Check for buffer overflow. */
61 if(out_buf + pixelstride * (count-1) >= out_end) return -1;
65 *out_buf = bytestream2_get_byte(&s->g);
66 out_buf += pixelstride;
69 pixel = bytestream2_get_byte(&s->g);
73 out_buf += pixelstride;
77 return (out_buf - orig) / pixelstride;
81 * Read a run length encoded SGI image.
82 * @param out_buf output buffer
83 * @param s the current image state
84 * @return 0 if no error, else return error number.
86 static int read_rle_sgi(uint8_t *out_buf, SgiState *s)
89 unsigned int len = s->height * s->depth * 4;
90 GetByteContext g_table = s->g;
92 unsigned int start_offset;
94 /* size of RLE offset and length tables */
95 if (len * 2 > bytestream2_get_bytes_left(&s->g)) {
96 return AVERROR_INVALIDDATA;
99 for (z = 0; z < s->depth; z++) {
101 for (y = 0; y < s->height; y++) {
102 dest_row -= s->linesize;
103 start_offset = bytestream2_get_be32(&g_table);
104 bytestream2_seek(&s->g, start_offset, SEEK_SET);
105 if (expand_rle_row(s, dest_row + z, dest_row + s->width*s->depth,
106 s->depth) != s->width) {
107 return AVERROR_INVALIDDATA;
115 * Read an uncompressed SGI image.
116 * @param out_buf output buffer
117 * @param s the current image state
118 * @return 0 if read success, otherwise return -1.
120 static int read_uncompressed_sgi(unsigned char* out_buf, SgiState *s)
123 unsigned int offset = s->height * s->width * s->bytes_per_channel;
124 GetByteContext gp[4];
127 /* Test buffer size. */
128 if (offset * s->depth > bytestream2_get_bytes_left(&s->g))
129 return AVERROR_INVALIDDATA;
131 /* Create a reader for each plane */
132 for (z = 0; z < s->depth; z++) {
134 bytestream2_skip(&gp[z], z * offset);
137 for (y = s->height - 1; y >= 0; y--) {
138 out_end = out_buf + (y * s->linesize);
139 if (s->bytes_per_channel == 1) {
140 for (x = s->width; x > 0; x--)
141 for (z = 0; z < s->depth; z++)
142 *out_end++ = bytestream2_get_byteu(&gp[z]);
144 uint16_t *out16 = (uint16_t *)out_end;
145 for (x = s->width; x > 0; x--)
146 for (z = 0; z < s->depth; z++)
147 *out16++ = bytestream2_get_ne16u(&gp[z]);
153 static int decode_frame(AVCodecContext *avctx,
154 void *data, int *data_size,
157 SgiState *s = avctx->priv_data;
158 AVFrame *picture = data;
159 AVFrame *p = &s->picture;
160 unsigned int dimension, rle;
162 uint8_t *out_buf, *out_end;
164 bytestream2_init(&s->g, avpkt->data, avpkt->size);
165 if (bytestream2_get_bytes_left(&s->g) < SGI_HEADER_SIZE) {
166 av_log(avctx, AV_LOG_ERROR, "buf_size too small (%d)\n", avpkt->size);
167 return AVERROR_INVALIDDATA;
170 /* Test for SGI magic. */
171 if (bytestream2_get_be16(&s->g) != SGI_MAGIC) {
172 av_log(avctx, AV_LOG_ERROR, "bad magic number\n");
173 return AVERROR_INVALIDDATA;
176 rle = bytestream2_get_byte(&s->g);
177 s->bytes_per_channel = bytestream2_get_byte(&s->g);
178 dimension = bytestream2_get_be16(&s->g);
179 s->width = bytestream2_get_be16(&s->g);
180 s->height = bytestream2_get_be16(&s->g);
181 s->depth = bytestream2_get_be16(&s->g);
183 if (s->bytes_per_channel != 1 && (s->bytes_per_channel != 2 || rle)) {
184 av_log(avctx, AV_LOG_ERROR, "wrong channel number\n");
188 /* Check for supported image dimensions. */
189 if (dimension != 2 && dimension != 3) {
190 av_log(avctx, AV_LOG_ERROR, "wrong dimension number\n");
194 if (s->depth == SGI_GRAYSCALE) {
195 avctx->pix_fmt = s->bytes_per_channel == 2 ? AV_PIX_FMT_GRAY16BE : AV_PIX_FMT_GRAY8;
196 } else if (s->depth == SGI_RGB) {
197 avctx->pix_fmt = s->bytes_per_channel == 2 ? AV_PIX_FMT_RGB48BE : AV_PIX_FMT_RGB24;
198 } else if (s->depth == SGI_RGBA) {
199 avctx->pix_fmt = s->bytes_per_channel == 2 ? AV_PIX_FMT_RGBA64BE : AV_PIX_FMT_RGBA;
201 av_log(avctx, AV_LOG_ERROR, "wrong picture format\n");
205 if (av_image_check_size(s->width, s->height, 0, avctx))
207 avcodec_set_dimensions(avctx, s->width, s->height);
210 avctx->release_buffer(avctx, p);
213 if (avctx->get_buffer(avctx, p) < 0) {
214 av_log(avctx, AV_LOG_ERROR, "get_buffer() failed.\n");
218 p->pict_type = AV_PICTURE_TYPE_I;
220 out_buf = p->data[0];
222 out_end = out_buf + p->linesize[0] * s->height;
224 s->linesize = p->linesize[0];
227 bytestream2_seek(&s->g, SGI_HEADER_SIZE, SEEK_SET);
229 ret = read_rle_sgi(out_end, s);
231 ret = read_uncompressed_sgi(out_buf, s);
235 *picture = s->picture;
236 *data_size = sizeof(AVPicture);
243 static av_cold int sgi_init(AVCodecContext *avctx){
244 SgiState *s = avctx->priv_data;
246 avcodec_get_frame_defaults(&s->picture);
247 avctx->coded_frame = &s->picture;
252 static av_cold int sgi_end(AVCodecContext *avctx)
254 SgiState * const s = avctx->priv_data;
256 if (s->picture.data[0])
257 avctx->release_buffer(avctx, &s->picture);
262 AVCodec ff_sgi_decoder = {
264 .type = AVMEDIA_TYPE_VIDEO,
265 .id = AV_CODEC_ID_SGI,
266 .priv_data_size = sizeof(SgiState),
269 .decode = decode_frame,
270 .capabilities = CODEC_CAP_DR1,
271 .long_name = NULL_IF_CONFIG_SMALL("SGI image"),