2 * Sun Rasterfile (.sun/.ras/im{1,8,24}/.sunras) image decoder
3 * Copyright (c) 2007, 2008 Ivo van Poorten
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
26 #define RT_BYTE_ENCODED 2
27 #define RT_FORMAT_RGB 3
28 #define RT_FORMAT_TIFF 4
29 #define RT_FORMAT_IFF 5
31 typedef struct SUNRASTContext
{
35 static av_cold
int sunrast_init(AVCodecContext
*avctx
) {
36 SUNRASTContext
*s
= avctx
->priv_data
;
38 avcodec_get_frame_defaults(&s
->picture
);
39 avctx
->coded_frame
= &s
->picture
;
44 static int sunrast_decode_frame(AVCodecContext
*avctx
, void *data
,
45 int *data_size
, const uint8_t *buf
, int buf_size
) {
46 SUNRASTContext
* const s
= avctx
->priv_data
;
47 AVFrame
*picture
= data
;
48 AVFrame
* const p
= &s
->picture
;
49 unsigned int w
, h
, depth
, type
, maptype
, maplength
, stride
, x
, y
, len
, alen
;
51 const uint8_t *bufstart
= buf
;
53 if (AV_RB32(buf
) != 0x59a66a95) {
54 av_log(avctx
, AV_LOG_ERROR
, "this is not sunras encoded data\n");
60 depth
= AV_RB32(buf
+12);
61 type
= AV_RB32(buf
+20);
62 maptype
= AV_RB32(buf
+24);
63 maplength
= AV_RB32(buf
+28);
65 if (type
> RT_BYTE_ENCODED
&& type
<= RT_FORMAT_IFF
) {
66 av_log(avctx
, AV_LOG_ERROR
, "unsupported (compression) type\n");
69 if (type
> RT_FORMAT_IFF
) {
70 av_log(avctx
, AV_LOG_ERROR
, "invalid (compression) type\n");
74 av_log(avctx
, AV_LOG_ERROR
, "invalid colormap type\n");
82 avctx
->pix_fmt
= PIX_FMT_MONOWHITE
;
85 avctx
->pix_fmt
= PIX_FMT_PAL8
;
88 avctx
->pix_fmt
= PIX_FMT_BGR24
;
91 av_log(avctx
, AV_LOG_ERROR
, "invalid depth\n");
96 avctx
->release_buffer(avctx
, p
);
98 if (avcodec_check_dimensions(avctx
, w
, h
))
100 if (w
!= avctx
->width
|| h
!= avctx
->height
)
101 avcodec_set_dimensions(avctx
, w
, h
);
102 if (avctx
->get_buffer(avctx
, p
) < 0) {
103 av_log(avctx
, AV_LOG_ERROR
, "get_buffer() failed\n");
107 p
->pict_type
= FF_I_TYPE
;
109 if (depth
!= 8 && maplength
) {
110 av_log(avctx
, AV_LOG_WARNING
, "useless colormap found or file is corrupted, trying to recover\n");
112 } else if (depth
== 8) {
113 unsigned int len
= maplength
/ 3;
116 av_log(avctx
, AV_LOG_ERROR
, "colormap expected\n");
119 if (maplength
% 3 || maplength
> 768) {
120 av_log(avctx
, AV_LOG_WARNING
, "invalid colormap length\n");
125 for (x
=0; x
<len
; x
++, ptr
+=4)
126 *(uint32_t *)ptr
= (buf
[x
]<<16) + (buf
[len
+x
]<<8) + buf
[len
+len
+x
];
132 stride
= p
->linesize
[0];
134 /* scanlines are aligned on 16 bit boundaries */
135 len
= (depth
* w
+ 7) >> 3;
136 alen
= len
+ (len
&1);
138 if (type
== RT_BYTE_ENCODED
) {
140 uint8_t *end
= ptr
+ h
*stride
;
145 if ((value
= *buf
++) == 0x80) {
162 for (y
=0; y
<h
; y
++) {
163 memcpy(ptr
, buf
, len
);
169 *picture
= s
->picture
;
170 *data_size
= sizeof(AVFrame
);
172 return buf
- bufstart
;
175 static av_cold
int sunrast_end(AVCodecContext
*avctx
) {
176 SUNRASTContext
*s
= avctx
->priv_data
;
178 if(s
->picture
.data
[0])
179 avctx
->release_buffer(avctx
, &s
->picture
);
184 AVCodec sunrast_decoder
= {
188 sizeof(SUNRASTContext
),
192 sunrast_decode_frame
,
195 .long_name
= NULL_IF_CONFIG_SMALL("Sun Rasterfile image"),