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