2 * Targa (.tga) image decoder
3 * Copyright (c) 2006 Konstantin Shishkov
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/intreadwrite.h"
26 TGA_NODATA
= 0, // no image data
27 TGA_PAL
= 1, // palettized
28 TGA_RGB
= 2, // true-color
29 TGA_BW
= 3, // black & white or grayscale
30 TGA_RLE
= 8, // flag pointing that data is RLE-coded
33 typedef struct TargaContext
{
42 static void targa_decode_rle(AVCodecContext
*avctx
, TargaContext
*s
, const uint8_t *src
, uint8_t *dst
, int w
, int h
, int stride
, int bpp
)
45 int depth
= (bpp
+ 1) >> 3;
49 diff
= stride
- w
* depth
;
53 count
= (type
& 0x7F) + 1;
55 if((x
+ count
> w
) && (x
+ count
+ 1 > (h
- y
) * w
)){
56 av_log(avctx
, AV_LOG_ERROR
, "Packet went out of bounds: position (%i,%i) size %i\n", x
, y
, count
);
59 for(i
= 0; i
< count
; i
++){
65 *((uint16_t*)dst
) = AV_RL16(src
);
73 *((uint32_t*)dst
) = AV_RL32(src
);
92 static int decode_frame(AVCodecContext
*avctx
,
93 void *data
, int *data_size
,
96 const uint8_t *buf
= avpkt
->data
;
97 int buf_size
= avpkt
->size
;
98 TargaContext
* const s
= avctx
->priv_data
;
99 AVFrame
*picture
= data
;
100 AVFrame
* const p
= (AVFrame
*)&s
->picture
;
103 int idlen
, pal
, compr
, x
, y
, w
, h
, bpp
, flags
;
104 int first_clr
, colors
, csize
;
106 /* parse image header */
110 first_clr
= AV_RL16(buf
); buf
+= 2;
111 colors
= AV_RL16(buf
); buf
+= 2;
113 x
= AV_RL16(buf
); buf
+= 2;
114 y
= AV_RL16(buf
); buf
+= 2;
115 w
= AV_RL16(buf
); buf
+= 2;
116 h
= AV_RL16(buf
); buf
+= 2;
119 //skip identifier if any
126 avctx
->pix_fmt
= ((compr
& (~TGA_RLE
)) == TGA_BW
) ? PIX_FMT_GRAY8
: PIX_FMT_PAL8
;
129 avctx
->pix_fmt
= PIX_FMT_RGB555
;
132 avctx
->pix_fmt
= PIX_FMT_RGB555
;
135 avctx
->pix_fmt
= PIX_FMT_BGR24
;
138 avctx
->pix_fmt
= PIX_FMT_RGB32
;
141 av_log(avctx
, AV_LOG_ERROR
, "Bit depth %i is not supported\n", s
->bpp
);
145 if(s
->picture
.data
[0])
146 avctx
->release_buffer(avctx
, &s
->picture
);
148 if(avcodec_check_dimensions(avctx
, w
, h
))
150 if(w
!= avctx
->width
|| h
!= avctx
->height
)
151 avcodec_set_dimensions(avctx
, w
, h
);
152 if(avctx
->get_buffer(avctx
, p
) < 0){
153 av_log(avctx
, AV_LOG_ERROR
, "get_buffer() failed\n");
158 stride
= p
->linesize
[0];
159 }else{ //image is upside-down
160 dst
= p
->data
[0] + p
->linesize
[0] * (h
- 1);
161 stride
= -p
->linesize
[0];
164 if(avctx
->pix_fmt
== PIX_FMT_PAL8
&& avctx
->palctrl
){
165 memcpy(p
->data
[1], avctx
->palctrl
->palette
, AVPALETTE_SIZE
);
166 if(avctx
->palctrl
->palette_changed
){
167 p
->palette_has_changed
= 1;
168 avctx
->palctrl
->palette_changed
= 0;
172 if((colors
+ first_clr
) > 256){
173 av_log(avctx
, AV_LOG_ERROR
, "Incorrect palette: %i colors with offset %i\n", colors
, first_clr
);
177 av_log(avctx
, AV_LOG_ERROR
, "Palette entry size %i bits is not supported\n", csize
);
180 if(avctx
->pix_fmt
!= PIX_FMT_PAL8
)//should not occur but skip palette anyway
181 buf
+= colors
* ((csize
+ 1) >> 3);
184 int32_t *pal
= ((int32_t*)p
->data
[1]) + first_clr
;
185 for(t
= 0; t
< colors
; t
++){
189 *pal
++ = (b
<< 16) | (g
<< 8) | r
;
191 p
->palette_has_changed
= 1;
192 avctx
->palctrl
->palette_changed
= 0;
195 if((compr
& (~TGA_RLE
)) == TGA_NODATA
)
196 memset(p
->data
[0], 0, p
->linesize
[0] * s
->height
);
199 targa_decode_rle(avctx
, s
, buf
, dst
, avctx
->width
, avctx
->height
, stride
, bpp
);
201 for(y
= 0; y
< s
->height
; y
++){
203 if((s
->bpp
+ 1) >> 3 == 2){
204 uint16_t *dst16
= (uint16_t*)dst
;
205 for(x
= 0; x
< s
->width
; x
++)
206 dst16
[x
] = AV_RL16(buf
+ x
* 2);
207 }else if((s
->bpp
+ 1) >> 3 == 4){
208 uint32_t *dst32
= (uint32_t*)dst
;
209 for(x
= 0; x
< s
->width
; x
++)
210 dst32
[x
] = AV_RL32(buf
+ x
* 4);
213 memcpy(dst
, buf
, s
->width
* ((s
->bpp
+ 1) >> 3));
216 buf
+= s
->width
* ((s
->bpp
+ 1) >> 3);
221 *picture
= *(AVFrame
*)&s
->picture
;
222 *data_size
= sizeof(AVPicture
);
227 static av_cold
int targa_init(AVCodecContext
*avctx
){
228 TargaContext
*s
= avctx
->priv_data
;
230 avcodec_get_frame_defaults((AVFrame
*)&s
->picture
);
231 avctx
->coded_frame
= (AVFrame
*)&s
->picture
;
236 static av_cold
int targa_end(AVCodecContext
*avctx
){
237 TargaContext
*s
= avctx
->priv_data
;
239 if(s
->picture
.data
[0])
240 avctx
->release_buffer(avctx
, &s
->picture
);
245 AVCodec targa_decoder
= {
249 sizeof(TargaContext
),
256 .long_name
= NULL_IF_CONFIG_SMALL("Truevision Targa image"),