]> git.sesse.net Git - ffmpeg/blob - libavcodec/sgienc.c
Merge remote-tracking branch 'qatar/master'
[ffmpeg] / libavcodec / sgienc.c
1 /*
2  * SGI image encoder
3  * Todd Kirby <doubleshot@pacbell.net>
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 #include "avcodec.h"
23 #include "bytestream.h"
24 #include "internal.h"
25 #include "sgi.h"
26 #include "rle.h"
27
28 #define SGI_SINGLE_CHAN 2
29 #define SGI_MULTI_CHAN 3
30
31 typedef struct SgiContext {
32     AVFrame picture;
33 } SgiContext;
34
35 static av_cold int encode_init(AVCodecContext *avctx)
36 {
37     SgiContext *s = avctx->priv_data;
38
39     avcodec_get_frame_defaults(&s->picture);
40     avctx->coded_frame = &s->picture;
41
42     return 0;
43 }
44
45 static int encode_frame(AVCodecContext *avctx, AVPacket *pkt,
46                         const AVFrame *frame, int *got_packet)
47 {
48     SgiContext *s = avctx->priv_data;
49     AVFrame * const p = &s->picture;
50     uint8_t *offsettab, *lengthtab, *in_buf, *encode_buf, *buf;
51     int x, y, z, length, tablesize, ret;
52     unsigned int width, height, depth, dimension, bytes_per_channel, pixmax, put_be;
53     unsigned char *end_buf;
54
55     *p = *frame;
56     p->pict_type = AV_PICTURE_TYPE_I;
57     p->key_frame = 1;
58
59     width  = avctx->width;
60     height = avctx->height;
61     bytes_per_channel = 1;
62     pixmax = 0xFF;
63     put_be = HAVE_BIGENDIAN;
64
65     switch (avctx->pix_fmt) {
66     case PIX_FMT_GRAY8:
67         dimension = SGI_SINGLE_CHAN;
68         depth     = SGI_GRAYSCALE;
69         break;
70     case PIX_FMT_RGB24:
71         dimension = SGI_MULTI_CHAN;
72         depth     = SGI_RGB;
73         break;
74     case PIX_FMT_RGBA:
75         dimension = SGI_MULTI_CHAN;
76         depth     = SGI_RGBA;
77         break;
78     case PIX_FMT_GRAY16LE:
79         put_be = !HAVE_BIGENDIAN;
80     case PIX_FMT_GRAY16BE:
81         avctx->coder_type = FF_CODER_TYPE_RAW;
82         bytes_per_channel = 2;
83         pixmax = 0xFFFF;
84         dimension = SGI_SINGLE_CHAN;
85         depth     = SGI_GRAYSCALE;
86         break;
87     case PIX_FMT_RGB48LE:
88         put_be = !HAVE_BIGENDIAN;
89     case PIX_FMT_RGB48BE:
90         avctx->coder_type = FF_CODER_TYPE_RAW;
91         bytes_per_channel = 2;
92         pixmax = 0xFFFF;
93         dimension = SGI_MULTI_CHAN;
94         depth     = SGI_RGB;
95         break;
96     case PIX_FMT_RGBA64LE:
97         put_be = !HAVE_BIGENDIAN;
98     case PIX_FMT_RGBA64BE:
99         avctx->coder_type = FF_CODER_TYPE_RAW;
100         bytes_per_channel = 2;
101         pixmax = 0xFFFF;
102         dimension = SGI_MULTI_CHAN;
103         depth     = SGI_RGBA;
104         break;
105     default:
106         return AVERROR_INVALIDDATA;
107     }
108
109     tablesize = depth * height * 4;
110     length = SGI_HEADER_SIZE;
111     if (avctx->coder_type == FF_CODER_TYPE_RAW)
112         length += depth * height * width;
113     else // assume ff_rl_encode() produces at most 2x size of input
114         length += tablesize * 2 + depth * height * (2 * width + 1);
115
116     if ((ret = ff_alloc_packet2(avctx, pkt, bytes_per_channel * length)) < 0)
117         return ret;
118     buf     = pkt->data;
119     end_buf = pkt->data + pkt->size;
120
121     /* Encode header. */
122     bytestream_put_be16(&buf, SGI_MAGIC);
123     bytestream_put_byte(&buf, avctx->coder_type != FF_CODER_TYPE_RAW); /* RLE 1 - VERBATIM 0*/
124     bytestream_put_byte(&buf, bytes_per_channel);
125     bytestream_put_be16(&buf, dimension);
126     bytestream_put_be16(&buf, width);
127     bytestream_put_be16(&buf, height);
128     bytestream_put_be16(&buf, depth);
129
130     bytestream_put_be32(&buf, 0L); /* pixmin */
131     bytestream_put_be32(&buf, pixmax);
132     bytestream_put_be32(&buf, 0L); /* dummy */
133
134     /* name */
135     memset(buf, 0, SGI_HEADER_SIZE);
136     buf += 80;
137
138      /* colormap */
139     bytestream_put_be32(&buf, 0L);
140
141     /* The rest of the 512 byte header is unused. */
142     buf += 404;
143     offsettab = buf;
144
145     if (avctx->coder_type  != FF_CODER_TYPE_RAW) {
146         /* Skip RLE offset table. */
147         buf += tablesize;
148         lengthtab = buf;
149
150         /* Skip RLE length table. */
151         buf += tablesize;
152
153         /* Make an intermediate consecutive buffer. */
154         if (!(encode_buf = av_malloc(width)))
155             return -1;
156
157         for (z = 0; z < depth; z++) {
158             in_buf = p->data[0] + p->linesize[0] * (height - 1) + z;
159
160             for (y = 0; y < height; y++) {
161                 bytestream_put_be32(&offsettab, buf - pkt->data);
162
163                 for (x = 0; x < width; x++)
164                     encode_buf[x] = in_buf[depth * x];
165
166                 if ((length = ff_rle_encode(buf, end_buf - buf - 1, encode_buf, 1, width, 0, 0, 0x80, 0)) < 1) {
167                     av_free(encode_buf);
168                     return -1;
169                 }
170
171                 buf += length;
172                 bytestream_put_byte(&buf, 0);
173                 bytestream_put_be32(&lengthtab, length + 1);
174                 in_buf -= p->linesize[0];
175             }
176         }
177
178         av_free(encode_buf);
179     } else {
180         for (z = 0; z < depth; z++) {
181             in_buf = p->data[0] + p->linesize[0] * (height - 1) + z * bytes_per_channel;
182
183             for (y = 0; y < height; y++) {
184                 for (x = 0; x < width * depth; x += depth)
185                     if (bytes_per_channel == 1) {
186                     bytestream_put_byte(&buf, in_buf[x]);
187                     } else {
188                         if (put_be) {
189                             bytestream_put_be16(&buf, ((uint16_t *)in_buf)[x]);
190                         } else {
191                             bytestream_put_le16(&buf, ((uint16_t *)in_buf)[x]);
192                         }
193                     }
194
195                 in_buf -= p->linesize[0];
196             }
197         }
198     }
199
200     /* total length */
201     pkt->size = buf - pkt->data;
202     pkt->flags |= AV_PKT_FLAG_KEY;
203     *got_packet = 1;
204
205     return 0;
206 }
207
208 AVCodec ff_sgi_encoder = {
209     .name           = "sgi",
210     .type           = AVMEDIA_TYPE_VIDEO,
211     .id             = CODEC_ID_SGI,
212     .priv_data_size = sizeof(SgiContext),
213     .init           = encode_init,
214     .encode2        = encode_frame,
215     .pix_fmts       = (const enum PixelFormat[]){
216         PIX_FMT_RGB24, PIX_FMT_RGBA,
217         PIX_FMT_RGB48LE, PIX_FMT_RGB48BE,
218         PIX_FMT_RGBA64LE, PIX_FMT_RGBA64BE,
219         PIX_FMT_GRAY16LE, PIX_FMT_GRAY16BE,
220         PIX_FMT_GRAY8, PIX_FMT_NONE
221     },
222     .long_name      = NULL_IF_CONFIG_SMALL("SGI image"),
223 };