FFmpeg
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Groups Pages
targaenc.c
Go to the documentation of this file.
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/internal.h"
25 #include "libavutil/intreadwrite.h"
26 #include "libavutil/pixdesc.h"
27 #include "avcodec.h"
28 #include "internal.h"
29 #include "rle.h"
30 #include "targa.h"
31 
32 /**
33  * RLE compress the image, with maximum size of out_size
34  * @param outbuf Output buffer
35  * @param out_size Maximum output size
36  * @param pic Image to compress
37  * @param bpp Bytes per pixel
38  * @param w Image width
39  * @param h Image height
40  * @return Size of output in bytes, or -1 if larger than out_size
41  */
42 static int targa_encode_rle(uint8_t *outbuf, int out_size, const AVFrame *pic,
43  int bpp, int w, int h)
44 {
45  int y,ret;
46  uint8_t *out;
47 
48  out = outbuf;
49 
50  for(y = 0; y < h; y ++) {
51  ret = ff_rle_encode(out, out_size, pic->data[0] + pic->linesize[0] * y, bpp, w, 0x7f, 0, -1, 0);
52  if(ret == -1){
53  return -1;
54  }
55  out+= ret;
56  out_size -= ret;
57  }
58 
59  return out - outbuf;
60 }
61 
62 static int targa_encode_normal(uint8_t *outbuf, const AVFrame *pic, int bpp, int w, int h)
63 {
64  int i, n = bpp * w;
65  uint8_t *out = outbuf;
66  uint8_t *ptr = pic->data[0];
67 
68  for(i=0; i < h; i++) {
69  memcpy(out, ptr, n);
70  out += n;
71  ptr += pic->linesize[0];
72  }
73 
74  return out - outbuf;
75 }
76 
78  const AVFrame *p, int *got_packet)
79 {
80  int bpp, picsize, datasize = -1, ret, i;
81  uint8_t *out;
82 
83  if(avctx->width > 0xffff || avctx->height > 0xffff) {
84  av_log(avctx, AV_LOG_ERROR, "image dimensions too large\n");
85  return AVERROR(EINVAL);
86  }
87  picsize = avpicture_get_size(avctx->pix_fmt, avctx->width, avctx->height);
88  if ((ret = ff_alloc_packet2(avctx, pkt, picsize + 45)) < 0)
89  return ret;
90 
91  /* zero out the header and only set applicable fields */
92  memset(pkt->data, 0, 12);
93  AV_WL16(pkt->data+12, avctx->width);
94  AV_WL16(pkt->data+14, avctx->height);
95  /* image descriptor byte: origin is always top-left, bits 0-3 specify alpha */
96  pkt->data[17] = 0x20 | (avctx->pix_fmt == AV_PIX_FMT_BGRA ? 8 : 0);
97 
98  out = pkt->data + 18; /* skip past the header we write */
99 
101  switch(avctx->pix_fmt) {
102  case AV_PIX_FMT_PAL8: {
103  int pal_bpp = 24; /* Only write 32bit palette if there is transparency information */
104  for (i = 0; i < 256; i++)
105  if (AV_RN32(p->data[1] + 4 * i) >> 24 != 0xFF) {
106  pal_bpp = 32;
107  break;
108  }
109  pkt->data[1] = 1; /* palette present */
110  pkt->data[2] = TGA_PAL; /* uncompressed palettised image */
111  pkt->data[6] = 1; /* palette contains 256 entries */
112  pkt->data[7] = pal_bpp; /* palette contains pal_bpp bit entries */
113  pkt->data[16] = 8; /* bpp */
114  for (i = 0; i < 256; i++)
115  if (pal_bpp == 32) {
116  AV_WL32(pkt->data + 18 + 4 * i, *(uint32_t *)(p->data[1] + i * 4));
117  } else {
118  AV_WL24(pkt->data + 18 + 3 * i, *(uint32_t *)(p->data[1] + i * 4));
119  }
120  out += 32 * pal_bpp; /* skip past the palette we just output */
121  break;
122  }
123  case AV_PIX_FMT_GRAY8:
124  pkt->data[2] = TGA_BW; /* uncompressed grayscale image */
125  avctx->bits_per_coded_sample = 0x28;
126  pkt->data[16] = 8; /* bpp */
127  break;
128  case AV_PIX_FMT_RGB555LE:
129  pkt->data[2] = TGA_RGB; /* uncompressed true-color image */
130  avctx->bits_per_coded_sample =
131  pkt->data[16] = 16; /* bpp */
132  break;
133  case AV_PIX_FMT_BGR24:
134  pkt->data[2] = TGA_RGB; /* uncompressed true-color image */
135  pkt->data[16] = 24; /* bpp */
136  break;
137  case AV_PIX_FMT_BGRA:
138  pkt->data[2] = TGA_RGB; /* uncompressed true-color image */
139  pkt->data[16] = 32; /* bpp */
140  break;
141  default:
142  av_log(avctx, AV_LOG_ERROR, "Pixel format '%s' not supported.\n",
143  av_get_pix_fmt_name(avctx->pix_fmt));
144  return AVERROR(EINVAL);
145  }
146  bpp = pkt->data[16] >> 3;
147 
148  /* try RLE compression */
149  if (avctx->coder_type != FF_CODER_TYPE_RAW)
150  datasize = targa_encode_rle(out, picsize, p, bpp, avctx->width, avctx->height);
151 
152  /* if that worked well, mark the picture as RLE compressed */
153  if(datasize >= 0)
154  pkt->data[2] |= TGA_RLE;
155 
156  /* if RLE didn't make it smaller, go back to no compression */
157  else datasize = targa_encode_normal(out, p, bpp, avctx->width, avctx->height);
158 
159  out += datasize;
160 
161  /* The standard recommends including this section, even if we don't use
162  * any of the features it affords. TODO: take advantage of the pixel
163  * aspect ratio and encoder ID fields available? */
164  memcpy(out, "\0\0\0\0\0\0\0\0TRUEVISION-XFILE.", 26);
165 
166  pkt->size = out + 26 - pkt->data;
167  pkt->flags |= AV_PKT_FLAG_KEY;
168  *got_packet = 1;
169 
170  return 0;
171 }
172 
174 {
175  avctx->coded_frame = av_frame_alloc();
176  if (!avctx->coded_frame)
177  return AVERROR(ENOMEM);
178 
179  avctx->coded_frame->key_frame = 1;
181 
182  return 0;
183 }
184 
186 {
187  av_frame_free(&avctx->coded_frame);
188  return 0;
189 }
190 
192  .name = "targa",
193  .long_name = NULL_IF_CONFIG_SMALL("Truevision Targa image"),
194  .type = AVMEDIA_TYPE_VIDEO,
195  .id = AV_CODEC_ID_TARGA,
196  .init = targa_encode_init,
197  .close = targa_encode_close,
198  .encode2 = targa_encode_frame,
199  .pix_fmts = (const enum AVPixelFormat[]){
202  },
203 };
int ff_alloc_packet2(AVCodecContext *avctx, AVPacket *avpkt, int64_t size)
Check AVPacket size and/or allocate data.
Definition: utils.c:1736
const AVPixFmtDescriptor * av_pix_fmt_desc_get(enum AVPixelFormat pix_fmt)
Definition: pixdesc.c:2090
This structure describes decoded (raw) audio or video data.
Definition: frame.h:171
Definition: targa.h:37
Definition: targa.h:38
AVFrame * coded_frame
the picture in the bitstream
Definition: avcodec.h:2745
int av_get_bits_per_pixel(const AVPixFmtDescriptor *pixdesc)
Return the number of bits per pixel used by the pixel format described by pixdesc.
Definition: pixdesc.c:2042
Definition: targa.h:35
packed RGB 5:5:5, 16bpp, (msb)1X 5R 5G 5B(lsb), little-endian, X=unused/undefined ...
Definition: pixfmt.h:117
#define FF_CODER_TYPE_RAW
Definition: avcodec.h:2370
int size
Definition: avcodec.h:1163
enum AVPixelFormat pix_fmt
Pixel format, see AV_PIX_FMT_xxx.
Definition: avcodec.h:1444
static AVPacket pkt
AVCodec.
Definition: avcodec.h:3181
Definition: targa.h:36
targa file common definitions
#define AV_WL24(p, d)
Definition: intreadwrite.h:464
uint8_t
#define av_cold
Definition: attributes.h:74
AVFrame * av_frame_alloc(void)
Allocate an AVFrame and set its fields to default values.
Definition: frame.c:135
8 bit with AV_PIX_FMT_RGB32 palette
Definition: pixfmt.h:74
static int targa_encode_frame(AVCodecContext *avctx, AVPacket *pkt, const AVFrame *p, int *got_packet)
Definition: targaenc.c:77
int coder_type
coder type
Definition: avcodec.h:2380
uint8_t * data
Definition: avcodec.h:1162
static av_cold int targa_encode_close(AVCodecContext *avctx)
Definition: targaenc.c:185
int bits_per_coded_sample
bits per sample/pixel from the demuxer (needed for huffyuv).
Definition: avcodec.h:2720
#define av_log(a,...)
#define AV_PKT_FLAG_KEY
The packet contains a keyframe.
Definition: avcodec.h:1208
#define AV_LOG_ERROR
Something went wrong and cannot losslessly be recovered.
Definition: log.h:176
#define AVERROR(e)
Definition: error.h:43
void av_frame_free(AVFrame **frame)
Free the frame and any dynamically allocated objects in it, e.g.
Definition: frame.c:148
#define NULL_IF_CONFIG_SMALL(x)
Return NULL if CONFIG_SMALL is true, otherwise the argument without modification. ...
Definition: internal.h:175
packed BGRA 8:8:8:8, 32bpp, BGRABGRA...
Definition: pixfmt.h:97
const char * name
Name of the codec implementation.
Definition: avcodec.h:3188
Libavcodec external API header.
int flags
A combination of AV_PKT_FLAG values.
Definition: avcodec.h:1168
common internal API header
enum AVPictureType pict_type
Picture type of the frame.
Definition: frame.h:242
float y
ret
Definition: avfilter.c:974
int width
picture width / height.
Definition: avcodec.h:1414
int n
Definition: avisynth_c.h:547
packed RGB 8:8:8, 24bpp, BGRBGR...
Definition: pixfmt.h:66
int linesize[AV_NUM_DATA_POINTERS]
For video, size in bytes of each picture line.
Definition: frame.h:199
main external API structure.
Definition: avcodec.h:1241
#define AV_RN32(p)
Definition: intreadwrite.h:364
uint8_t * data[AV_NUM_DATA_POINTERS]
pointer to the picture/channel planes.
Definition: frame.h:182
AVCodec ff_targa_encoder
Definition: targaenc.c:191
static int targa_encode_rle(uint8_t *outbuf, int out_size, const AVFrame *pic, int bpp, int w, int h)
RLE compress the image, with maximum size of out_size.
Definition: targaenc.c:42
static int targa_encode_normal(uint8_t *outbuf, const AVFrame *pic, int bpp, int w, int h)
Definition: targaenc.c:62
Y , 8bpp.
Definition: pixfmt.h:71
common internal api header.
#define AV_WL16(p, v)
Definition: intreadwrite.h:412
static av_cold int targa_encode_init(AVCodecContext *avctx)
Definition: targaenc.c:173
int avpicture_get_size(enum AVPixelFormat pix_fmt, int width, int height)
Calculate the size in bytes that a picture of the given width and height would occupy if stored in th...
Definition: avpicture.c:49
int key_frame
1 -> keyframe, 0-> not
Definition: frame.h:237
uint8_t pi<< 24) CONV_FUNC_GROUP(AV_SAMPLE_FMT_FLT, float, AV_SAMPLE_FMT_U8, uint8_t,(*(constuint8_t *) pi-0x80)*(1.0f/(1<< 7))) CONV_FUNC_GROUP(AV_SAMPLE_FMT_DBL, double, AV_SAMPLE_FMT_U8, uint8_t,(*(constuint8_t *) pi-0x80)*(1.0/(1<< 7))) CONV_FUNC_GROUP(AV_SAMPLE_FMT_U8, uint8_t, AV_SAMPLE_FMT_S16, int16_t,(*(constint16_t *) pi >>8)+0x80) CONV_FUNC_GROUP(AV_SAMPLE_FMT_FLT, float, AV_SAMPLE_FMT_S16, int16_t,*(constint16_t *) pi *(1.0f/(1<< 15))) CONV_FUNC_GROUP(AV_SAMPLE_FMT_DBL, double, AV_SAMPLE_FMT_S16, int16_t,*(constint16_t *) pi *(1.0/(1<< 15))) CONV_FUNC_GROUP(AV_SAMPLE_FMT_U8, uint8_t, AV_SAMPLE_FMT_S32, int32_t,(*(constint32_t *) pi >>24)+0x80) CONV_FUNC_GROUP(AV_SAMPLE_FMT_FLT, float, AV_SAMPLE_FMT_S32, int32_t,*(constint32_t *) pi *(1.0f/(1U<< 31))) CONV_FUNC_GROUP(AV_SAMPLE_FMT_DBL, double, AV_SAMPLE_FMT_S32, int32_t,*(constint32_t *) pi *(1.0/(1U<< 31))) CONV_FUNC_GROUP(AV_SAMPLE_FMT_U8, uint8_t, AV_SAMPLE_FMT_FLT, float, av_clip_uint8(lrintf(*(constfloat *) pi *(1<< 7))+0x80)) CONV_FUNC_GROUP(AV_SAMPLE_FMT_S16, int16_t, AV_SAMPLE_FMT_FLT, float, av_clip_int16(lrintf(*(constfloat *) pi *(1<< 15)))) CONV_FUNC_GROUP(AV_SAMPLE_FMT_S32, int32_t, AV_SAMPLE_FMT_FLT, float, av_clipl_int32(llrintf(*(constfloat *) pi *(1U<< 31)))) CONV_FUNC_GROUP(AV_SAMPLE_FMT_U8, uint8_t, AV_SAMPLE_FMT_DBL, double, av_clip_uint8(lrint(*(constdouble *) pi *(1<< 7))+0x80)) CONV_FUNC_GROUP(AV_SAMPLE_FMT_S16, int16_t, AV_SAMPLE_FMT_DBL, double, av_clip_int16(lrint(*(constdouble *) pi *(1<< 15)))) CONV_FUNC_GROUP(AV_SAMPLE_FMT_S32, int32_t, AV_SAMPLE_FMT_DBL, double, av_clipl_int32(llrint(*(constdouble *) pi *(1U<< 31))))#defineSET_CONV_FUNC_GROUP(ofmt, ifmt) staticvoidset_generic_function(AudioConvert *ac){}voidff_audio_convert_free(AudioConvert **ac){if(!*ac) return;ff_dither_free(&(*ac) ->dc);av_freep(ac);}AudioConvert *ff_audio_convert_alloc(AVAudioResampleContext *avr, enumAVSampleFormatout_fmt, enumAVSampleFormatin_fmt, intchannels, intsample_rate, intapply_map){AudioConvert *ac;intin_planar, out_planar;ac=av_mallocz(sizeof(*ac));if(!ac) returnNULL;ac->avr=avr;ac->out_fmt=out_fmt;ac->in_fmt=in_fmt;ac->channels=channels;ac->apply_map=apply_map;if(avr->dither_method!=AV_RESAMPLE_DITHER_NONE &&av_get_packed_sample_fmt(out_fmt)==AV_SAMPLE_FMT_S16 &&av_get_bytes_per_sample(in_fmt)>2){ac->dc=ff_dither_alloc(avr, out_fmt, in_fmt, channels, sample_rate, apply_map);if(!ac->dc){av_free(ac);returnNULL;}returnac;}in_planar=ff_sample_fmt_is_planar(in_fmt, channels);out_planar=ff_sample_fmt_is_planar(out_fmt, channels);if(in_planar==out_planar){ac->func_type=CONV_FUNC_TYPE_FLAT;ac->planes=in_planar?ac->channels:1;}elseif(in_planar) ac->func_type=CONV_FUNC_TYPE_INTERLEAVE;elseac->func_type=CONV_FUNC_TYPE_DEINTERLEAVE;set_generic_function(ac);if(ARCH_AARCH64) ff_audio_convert_init_aarch64(ac);if(ARCH_ARM) ff_audio_convert_init_arm(ac);if(ARCH_X86) ff_audio_convert_init_x86(ac);returnac;}intff_audio_convert(AudioConvert *ac, AudioData *out, AudioData *in){intuse_generic=1;intlen=in->nb_samples;intp;if(ac->dc){av_log(ac->avr, AV_LOG_TRACE,"%dsamples-audio_convert:%sto%s(dithered)\n", len, av_get_sample_fmt_name(ac->in_fmt), av_get_sample_fmt_name(ac->out_fmt));returnff_convert_dither(ac-> out
int ff_rle_encode(uint8_t *outbuf, int out_size, const uint8_t *ptr, int bpp, int w, int add_rep, int xor_rep, int add_raw, int xor_raw)
RLE compress the row, with maximum size of out_size.
Definition: rle.c:58
const char * av_get_pix_fmt_name(enum AVPixelFormat pix_fmt)
Return the short name for a pixel format, NULL in case pix_fmt is unknown.
Definition: pixdesc.c:2011
AVPixelFormat
Pixel format.
Definition: pixfmt.h:61
This structure stores compressed data.
Definition: avcodec.h:1139
#define AV_WL32(p, v)
Definition: intreadwrite.h:426