]> git.sesse.net Git - ffmpeg/blob - libavcodec/targaenc.c
lavc: move exp2fi to ff_exp2fi in internal.h
[ffmpeg] / libavcodec / targaenc.c
1 /*
2  * Targa (.tga) image encoder
3  * Copyright (c) 2007 Bobby Bingham
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 <string.h>
23
24 #include "libavutil/imgutils.h"
25 #include "libavutil/internal.h"
26 #include "libavutil/intreadwrite.h"
27 #include "libavutil/pixdesc.h"
28 #include "avcodec.h"
29 #include "internal.h"
30 #include "rle.h"
31 #include "targa.h"
32
33 /**
34  * RLE compress the image, with maximum size of out_size
35  * @param outbuf Output buffer
36  * @param out_size Maximum output size
37  * @param pic Image to compress
38  * @param bpp Bytes per pixel
39  * @param w Image width
40  * @param h Image height
41  * @return Size of output in bytes, or -1 if larger than out_size
42  */
43 static int targa_encode_rle(uint8_t *outbuf, int out_size, const AVFrame *pic,
44                             int bpp, int w, int h)
45 {
46     int y,ret;
47     uint8_t *out;
48
49     out = outbuf;
50
51     for(y = 0; y < h; y ++) {
52         ret = ff_rle_encode(out, out_size, pic->data[0] + pic->linesize[0] * y, bpp, w, 0x7f, 0, -1, 0);
53         if(ret == -1){
54             return -1;
55         }
56         out+= ret;
57         out_size -= ret;
58     }
59
60     return out - outbuf;
61 }
62
63 static int targa_encode_normal(uint8_t *outbuf, const AVFrame *pic, int bpp, int w, int h)
64 {
65     int i, n = bpp * w;
66     uint8_t *out = outbuf;
67     uint8_t *ptr = pic->data[0];
68
69     for(i=0; i < h; i++) {
70         memcpy(out, ptr, n);
71         out += n;
72         ptr += pic->linesize[0];
73     }
74
75     return out - outbuf;
76 }
77
78 static int targa_encode_frame(AVCodecContext *avctx, AVPacket *pkt,
79                               const AVFrame *p, int *got_packet)
80 {
81     int bpp, picsize, datasize = -1, ret, i;
82     uint8_t *out;
83
84     if(avctx->width > 0xffff || avctx->height > 0xffff) {
85         av_log(avctx, AV_LOG_ERROR, "image dimensions too large\n");
86         return AVERROR(EINVAL);
87     }
88     picsize = av_image_get_buffer_size(avctx->pix_fmt,
89                                        avctx->width, avctx->height, 1);
90     if ((ret = ff_alloc_packet2(avctx, pkt, picsize + 45, 0)) < 0)
91         return ret;
92
93     /* zero out the header and only set applicable fields */
94     memset(pkt->data, 0, 12);
95     AV_WL16(pkt->data+12, avctx->width);
96     AV_WL16(pkt->data+14, avctx->height);
97     /* image descriptor byte: origin is always top-left, bits 0-3 specify alpha */
98     pkt->data[17] = 0x20 | (avctx->pix_fmt == AV_PIX_FMT_BGRA ? 8 : 0);
99
100     out = pkt->data + 18;  /* skip past the header we write */
101
102     avctx->bits_per_coded_sample = av_get_bits_per_pixel(av_pix_fmt_desc_get(avctx->pix_fmt));
103     switch(avctx->pix_fmt) {
104     case AV_PIX_FMT_PAL8: {
105         int pal_bpp = 24; /* Only write 32bit palette if there is transparency information */
106         for (i = 0; i < 256; i++)
107             if (AV_RN32(p->data[1] + 4 * i) >> 24 != 0xFF) {
108                 pal_bpp = 32;
109                 break;
110             }
111         pkt->data[1]  = 1;          /* palette present */
112         pkt->data[2]  = TGA_PAL;    /* uncompressed palettised image */
113         pkt->data[6]  = 1;          /* palette contains 256 entries */
114         pkt->data[7]  = pal_bpp;    /* palette contains pal_bpp bit entries */
115         pkt->data[16] = 8;          /* bpp */
116         for (i = 0; i < 256; i++)
117             if (pal_bpp == 32) {
118                 AV_WL32(pkt->data + 18 + 4 * i, *(uint32_t *)(p->data[1] + i * 4));
119             } else {
120             AV_WL24(pkt->data + 18 + 3 * i, *(uint32_t *)(p->data[1] + i * 4));
121             }
122         out += 32 * pal_bpp;        /* skip past the palette we just output */
123         break;
124         }
125     case AV_PIX_FMT_GRAY8:
126         pkt->data[2]  = TGA_BW;     /* uncompressed grayscale image */
127         avctx->bits_per_coded_sample = 0x28;
128         pkt->data[16] = 8;          /* bpp */
129         break;
130     case AV_PIX_FMT_RGB555LE:
131         pkt->data[2]  = TGA_RGB;    /* uncompressed true-color image */
132         avctx->bits_per_coded_sample =
133         pkt->data[16] = 16;         /* bpp */
134         break;
135     case AV_PIX_FMT_BGR24:
136         pkt->data[2]  = TGA_RGB;    /* uncompressed true-color image */
137         pkt->data[16] = 24;         /* bpp */
138         break;
139     case AV_PIX_FMT_BGRA:
140         pkt->data[2]  = TGA_RGB;    /* uncompressed true-color image */
141         pkt->data[16] = 32;         /* bpp */
142         break;
143     default:
144         av_log(avctx, AV_LOG_ERROR, "Pixel format '%s' not supported.\n",
145                av_get_pix_fmt_name(avctx->pix_fmt));
146         return AVERROR(EINVAL);
147     }
148     bpp = pkt->data[16] >> 3;
149
150     /* try RLE compression */
151     if (avctx->coder_type != FF_CODER_TYPE_RAW)
152         datasize = targa_encode_rle(out, picsize, p, bpp, avctx->width, avctx->height);
153
154     /* if that worked well, mark the picture as RLE compressed */
155     if(datasize >= 0)
156         pkt->data[2] |= TGA_RLE;
157
158     /* if RLE didn't make it smaller, go back to no compression */
159     else datasize = targa_encode_normal(out, p, bpp, avctx->width, avctx->height);
160
161     out += datasize;
162
163     /* The standard recommends including this section, even if we don't use
164      * any of the features it affords. TODO: take advantage of the pixel
165      * aspect ratio and encoder ID fields available? */
166     memcpy(out, "\0\0\0\0\0\0\0\0TRUEVISION-XFILE.", 26);
167
168     pkt->size   = out + 26 - pkt->data;
169     pkt->flags |= AV_PKT_FLAG_KEY;
170     *got_packet = 1;
171
172     return 0;
173 }
174
175 static av_cold int targa_encode_init(AVCodecContext *avctx)
176 {
177 #if FF_API_CODED_FRAME
178 FF_DISABLE_DEPRECATION_WARNINGS
179     avctx->coded_frame->key_frame = 1;
180     avctx->coded_frame->pict_type = AV_PICTURE_TYPE_I;
181 FF_ENABLE_DEPRECATION_WARNINGS
182 #endif
183
184     return 0;
185 }
186
187 AVCodec ff_targa_encoder = {
188     .name           = "targa",
189     .long_name      = NULL_IF_CONFIG_SMALL("Truevision Targa image"),
190     .type           = AVMEDIA_TYPE_VIDEO,
191     .id             = AV_CODEC_ID_TARGA,
192     .init           = targa_encode_init,
193     .encode2        = targa_encode_frame,
194     .pix_fmts       = (const enum AVPixelFormat[]){
195         AV_PIX_FMT_BGR24, AV_PIX_FMT_BGRA, AV_PIX_FMT_RGB555LE, AV_PIX_FMT_GRAY8, AV_PIX_FMT_PAL8,
196         AV_PIX_FMT_NONE
197     },
198 };