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
23 #include "bytestream.h"
27 #define SGI_SINGLE_CHAN 2
28 #define SGI_MULTI_CHAN 3
30 typedef struct SgiContext
{
34 static av_cold
int encode_init(AVCodecContext
*avctx
){
35 SgiContext
*s
= avctx
->priv_data
;
37 avcodec_get_frame_defaults(&s
->picture
);
38 avctx
->coded_frame
= &s
->picture
;
43 static int encode_frame(AVCodecContext
*avctx
, unsigned char *buf
,
44 int buf_size
, void *data
) {
45 SgiContext
*s
= avctx
->priv_data
;
46 AVFrame
* const p
= &s
->picture
;
47 uint8_t *offsettab
, *lengthtab
, *in_buf
, *encode_buf
;
48 int x
, y
, z
, length
, tablesize
;
49 unsigned int width
, height
, depth
, dimension
;
50 unsigned char *orig_buf
= buf
, *end_buf
= buf
+ buf_size
;
53 p
->pict_type
= FF_I_TYPE
;
57 height
= avctx
->height
;
59 switch (avctx
->pix_fmt
) {
61 dimension
= SGI_SINGLE_CHAN
;
62 depth
= SGI_GRAYSCALE
;
65 dimension
= SGI_MULTI_CHAN
;
69 dimension
= SGI_MULTI_CHAN
;
73 return AVERROR_INVALIDDATA
;
76 tablesize
= depth
* height
* 4;
77 length
= tablesize
* 2 + SGI_HEADER_SIZE
;
79 if (buf_size
< length
) {
80 av_log(avctx
, AV_LOG_ERROR
, "buf_size too small(need %d, got %d)\n", length
, buf_size
);
85 bytestream_put_be16(&buf
, SGI_MAGIC
);
86 bytestream_put_byte(&buf
, 1); /* RLE */
87 bytestream_put_byte(&buf
, 1); /* bytes_per_channel */
88 bytestream_put_be16(&buf
, dimension
);
89 bytestream_put_be16(&buf
, width
);
90 bytestream_put_be16(&buf
, height
);
91 bytestream_put_be16(&buf
, depth
);
93 /* The rest are constant in this implementation. */
94 bytestream_put_be32(&buf
, 0L); /* pixmin */
95 bytestream_put_be32(&buf
, 255L); /* pixmax */
96 bytestream_put_be32(&buf
, 0L); /* dummy */
99 memset(buf
, 0, SGI_HEADER_SIZE
);
103 bytestream_put_be32(&buf
, 0L);
105 /* The rest of the 512 byte header is unused. */
109 /* Skip RLE offset table. */
113 /* Skip RLE length table. */
116 /* Make an intermediate consecutive buffer. */
117 if ((encode_buf
= av_malloc(width
)) == NULL
)
120 for (z
= 0; z
< depth
; z
++) {
121 in_buf
= p
->data
[0] + p
->linesize
[0] * (height
- 1) + z
;
123 for (y
= 0; y
< height
; y
++) {
124 bytestream_put_be32(&offsettab
, buf
- orig_buf
);
126 for (x
= 0; x
< width
; x
++)
127 encode_buf
[x
] = in_buf
[depth
* x
];
129 if((length
= ff_rle_encode(buf
, end_buf
- buf
- 1, encode_buf
, 1, width
, 0, 0, 0x80, 0)) < 1) {
135 bytestream_put_byte(&buf
, 0);
136 bytestream_put_be32(&lengthtab
, length
+ 1);
137 in_buf
-= p
->linesize
[0];
143 return buf
- orig_buf
;
146 AVCodec sgi_encoder
= {
154 .pix_fmts
= (enum PixelFormat
[]){PIX_FMT_RGB24
, PIX_FMT_RGBA
, PIX_FMT_PAL8
, PIX_FMT_GRAY8
, PIX_FMT_NONE
},
155 .long_name
= NULL_IF_CONFIG_SMALL("SGI image"),