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 typedef struct TargaContext {
34 } TargaContext;
35 
36 /**
37  * RLE compress the image, with maximum size of out_size
38  * @param outbuf Output buffer
39  * @param out_size Maximum output size
40  * @param pic Image to compress
41  * @param bpp Bytes per pixel
42  * @param w Image width
43  * @param h Image height
44  * @return Size of output in bytes, or -1 if larger than out_size
45  */
46 static int targa_encode_rle(uint8_t *outbuf, int out_size, const AVFrame *pic,
47  int bpp, int w, int h)
48 {
49  int y,ret;
50  uint8_t *out;
51 
52  out = outbuf;
53 
54  for(y = 0; y < h; y ++) {
55  ret = ff_rle_encode(out, out_size, pic->data[0] + pic->linesize[0] * y, bpp, w, 0x7f, 0, -1, 0);
56  if(ret == -1){
57  return -1;
58  }
59  out+= ret;
60  out_size -= ret;
61  }
62 
63  return out - outbuf;
64 }
65 
66 static int targa_encode_normal(uint8_t *outbuf, const AVFrame *pic, int bpp, int w, int h)
67 {
68  int i, n = bpp * w;
69  uint8_t *out = outbuf;
70  uint8_t *ptr = pic->data[0];
71 
72  for(i=0; i < h; i++) {
73  memcpy(out, ptr, n);
74  out += n;
75  ptr += pic->linesize[0];
76  }
77 
78  return out - outbuf;
79 }
80 
82  const AVFrame *p, int *got_packet)
83 {
84  int bpp, picsize, datasize = -1, ret, i;
85  uint8_t *out;
86 
87  if(avctx->width > 0xffff || avctx->height > 0xffff) {
88  av_log(avctx, AV_LOG_ERROR, "image dimensions too large\n");
89  return AVERROR(EINVAL);
90  }
91  picsize = avpicture_get_size(avctx->pix_fmt, avctx->width, avctx->height);
92  if ((ret = ff_alloc_packet2(avctx, pkt, picsize + 45)) < 0)
93  return ret;
94 
95  /* zero out the header and only set applicable fields */
96  memset(pkt->data, 0, 12);
97  AV_WL16(pkt->data+12, avctx->width);
98  AV_WL16(pkt->data+14, avctx->height);
99  /* image descriptor byte: origin is always top-left, bits 0-3 specify alpha */
100  pkt->data[17] = 0x20 | (avctx->pix_fmt == AV_PIX_FMT_BGRA ? 8 : 0);
101 
102  out = pkt->data + 18; /* skip past the header we write */
103 
105  switch(avctx->pix_fmt) {
106  case AV_PIX_FMT_PAL8: {
107  int pal_bpp = 24; /* Only write 32bit palette if there is transparency information */
108  for (i = 0; i < 256; i++)
109  if (AV_RN32(p->data[1] + 4 * i) >> 24 != 0xFF) {
110  pal_bpp = 32;
111  break;
112  }
113  pkt->data[1] = 1; /* palette present */
114  pkt->data[2] = TGA_PAL; /* uncompressed palettised image */
115  pkt->data[6] = 1; /* palette contains 256 entries */
116  pkt->data[7] = pal_bpp; /* palette contains pal_bpp bit entries */
117  pkt->data[16] = 8; /* bpp */
118  for (i = 0; i < 256; i++)
119  if (pal_bpp == 32) {
120  AV_WL32(pkt->data + 18 + 4 * i, *(uint32_t *)(p->data[1] + i * 4));
121  } else {
122  AV_WL24(pkt->data + 18 + 3 * i, *(uint32_t *)(p->data[1] + i * 4));
123  }
124  out += 32 * pal_bpp; /* skip past the palette we just output */
125  break;
126  }
127  case AV_PIX_FMT_GRAY8:
128  pkt->data[2] = TGA_BW; /* uncompressed grayscale image */
129  avctx->bits_per_coded_sample = 0x28;
130  pkt->data[16] = 8; /* bpp */
131  break;
132  case AV_PIX_FMT_RGB555LE:
133  pkt->data[2] = TGA_RGB; /* uncompressed true-color image */
134  avctx->bits_per_coded_sample =
135  pkt->data[16] = 16; /* bpp */
136  break;
137  case AV_PIX_FMT_BGR24:
138  pkt->data[2] = TGA_RGB; /* uncompressed true-color image */
139  pkt->data[16] = 24; /* bpp */
140  break;
141  case AV_PIX_FMT_BGRA:
142  pkt->data[2] = TGA_RGB; /* uncompressed true-color image */
143  pkt->data[16] = 32; /* bpp */
144  break;
145  default:
146  av_log(avctx, AV_LOG_ERROR, "Pixel format '%s' not supported.\n",
147  av_get_pix_fmt_name(avctx->pix_fmt));
148  return AVERROR(EINVAL);
149  }
150  bpp = pkt->data[16] >> 3;
151 
152  /* try RLE compression */
153  if (avctx->coder_type != FF_CODER_TYPE_RAW)
154  datasize = targa_encode_rle(out, picsize, p, bpp, avctx->width, avctx->height);
155 
156  /* if that worked well, mark the picture as RLE compressed */
157  if(datasize >= 0)
158  pkt->data[2] |= TGA_RLE;
159 
160  /* if RLE didn't make it smaller, go back to no compression */
161  else datasize = targa_encode_normal(out, p, bpp, avctx->width, avctx->height);
162 
163  out += datasize;
164 
165  /* The standard recommends including this section, even if we don't use
166  * any of the features it affords. TODO: take advantage of the pixel
167  * aspect ratio and encoder ID fields available? */
168  memcpy(out, "\0\0\0\0\0\0\0\0TRUEVISION-XFILE.", 26);
169 
170  pkt->size = out + 26 - pkt->data;
171  pkt->flags |= AV_PKT_FLAG_KEY;
172  *got_packet = 1;
173 
174  return 0;
175 }
176 
178 {
179  TargaContext *s = avctx->priv_data;
180 
182  s->picture.key_frame= 1;
184  avctx->coded_frame= &s->picture;
185 
186  return 0;
187 }
188 
190  .name = "targa",
191  .type = AVMEDIA_TYPE_VIDEO,
192  .id = AV_CODEC_ID_TARGA,
193  .priv_data_size = sizeof(TargaContext),
195  .encode2 = targa_encode_frame,
196  .pix_fmts = (const enum AVPixelFormat[]){
199  },
200  .long_name= NULL_IF_CONFIG_SMALL("Truevision Targa image"),
201 };
const char * s
Definition: avisynth_c.h:668
const AVPixFmtDescriptor * av_pix_fmt_desc_get(enum AVPixelFormat pix_fmt)
Definition: pixdesc.c:1778
This structure describes decoded (raw) audio or video data.
Definition: frame.h:76
Definition: targa.h:37
Definition: targa.h:38
AVFrame * coded_frame
the picture in the bitstream
static av_cold int init(AVCodecContext *avctx)
Definition: avrndec.c:35
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:1731
Definition: targa.h:35
packed RGB 5:5:5, 16bpp, (msb)1A 5R 5G 5B(lsb), little-endian, most significant bit to 0 ...
Definition: pixfmt.h:117
#define FF_CODER_TYPE_RAW
enum AVPixelFormat pix_fmt
Pixel format, see AV_PIX_FMT_xxx.
AVFrame picture
Definition: targaenc.c:33
Definition: targa.h:36
output residual component w
#define AV_WL32(p, darg)
Definition: intreadwrite.h:282
targa file common definitions
#define AV_WL24(p, d)
Definition: intreadwrite.h:456
uint8_t
#define av_cold
Definition: attributes.h:78
8 bit with PIX_FMT_RGB32 palette
Definition: pixfmt.h:79
static AVPacket pkt
Definition: demuxing.c:56
static int targa_encode_frame(AVCodecContext *avctx, AVPacket *pkt, const AVFrame *p, int *got_packet)
Definition: targaenc.c:81
int coder_type
coder type
uint8_t * data
int bits_per_coded_sample
bits per sample/pixel from the demuxer (needed for huffyuv).
struct TargaContext TargaContext
#define AV_PKT_FLAG_KEY
The packet contains a keyframe.
#define AV_WL16(p, darg)
Definition: intreadwrite.h:250
#define NULL_IF_CONFIG_SMALL(x)
Return NULL if CONFIG_SMALL is true, otherwise the argument without modification. ...
packed BGRA 8:8:8:8, 32bpp, BGRABGRA...
Definition: pixfmt.h:99
void av_log(void *avcl, int level, const char *fmt,...)
Definition: log.c:246
const char * name
Name of the codec implementation.
external API header
int flags
A combination of AV_PKT_FLAG values.
common internal API header
enum AVPictureType pict_type
Picture type of the frame.
Definition: frame.h:144
ret
Definition: avfilter.c:821
int width
picture width / height.
packed RGB 8:8:8, 24bpp, BGRBGR...
Definition: pixfmt.h:71
int ff_alloc_packet2(AVCodecContext *avctx, AVPacket *avpkt, int size)
Check AVPacket size and/or allocate data.
int linesize[AV_NUM_DATA_POINTERS]
For video, size in bytes of each picture line.
Definition: frame.h:101
main external API structure.
#define AV_LOG_ERROR
Something went wrong and cannot losslessly be recovered.
Definition: log.h:148
void avcodec_get_frame_defaults(AVFrame *frame)
Set the fields of the given AVFrame to default values.
synthesis window for stochastic i
Filter the word “frame” indicates either a video frame or a group of audio as stored in an AVFilterBuffer structure Format for each input and each output the list of supported formats For video that means pixel format For audio that means channel sample they are references to shared objects When the negotiation mechanism computes the intersection of the formats supported at each end of a all references to both lists are replaced with a reference to the intersection And when a single format is eventually chosen for a link amongst the remaining all references to the list are updated That means that if a filter requires that its input and output have the same format amongst a supported all it has to do is use a reference to the same list of formats query_formats can leave some formats unset and return AVERROR(EAGAIN) to cause the negotiation mechanism toagain later.That can be used by filters with complex requirements to use the format negotiated on one link to set the formats supported on another.Buffer references ownership and permissions
#define AV_RN32(p)
Definition: intreadwrite.h:356
uint8_t * data[AV_NUM_DATA_POINTERS]
pointer to the picture/channel planes.
Definition: frame.h:87
AVCodec ff_targa_encoder
Definition: targaenc.c:189
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:46
static int targa_encode_normal(uint8_t *outbuf, const AVFrame *pic, int bpp, int w, int h)
Definition: targaenc.c:66
Y , 8bpp.
Definition: pixfmt.h:76
common internal api header.
function y
Definition: D.m:1
static av_cold int targa_encode_init(AVCodecContext *avctx)
Definition: targaenc.c:177
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:139
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
uint8_t pi<< 24) CONV_FUNC_GROUP(AV_SAMPLE_FMT_FLT, float, AV_SAMPLE_FMT_U8, uint8_t,(*(const uint8_t *) pi-0x80)*(1.0f/(1<< 7))) CONV_FUNC_GROUP(AV_SAMPLE_FMT_DBL, double, AV_SAMPLE_FMT_U8, uint8_t,(*(const uint8_t *) pi-0x80)*(1.0/(1<< 7))) CONV_FUNC_GROUP(AV_SAMPLE_FMT_U8, uint8_t, AV_SAMPLE_FMT_S16, int16_t,(*(const int16_t *) pi >> 8)+0x80) CONV_FUNC_GROUP(AV_SAMPLE_FMT_FLT, float, AV_SAMPLE_FMT_S16, int16_t,*(const int16_t *) pi *(1.0f/(1<< 15))) CONV_FUNC_GROUP(AV_SAMPLE_FMT_DBL, double, AV_SAMPLE_FMT_S16, int16_t,*(const int16_t *) pi *(1.0/(1<< 15))) CONV_FUNC_GROUP(AV_SAMPLE_FMT_U8, uint8_t, AV_SAMPLE_FMT_S32, int32_t,(*(const int32_t *) pi >> 24)+0x80) CONV_FUNC_GROUP(AV_SAMPLE_FMT_FLT, float, AV_SAMPLE_FMT_S32, int32_t,*(const int32_t *) pi *(1.0f/(1U<< 31))) CONV_FUNC_GROUP(AV_SAMPLE_FMT_DBL, double, AV_SAMPLE_FMT_S32, int32_t,*(const int32_t *) pi *(1.0/(1U<< 31))) CONV_FUNC_GROUP(AV_SAMPLE_FMT_U8, uint8_t, AV_SAMPLE_FMT_FLT, float, av_clip_uint8(lrintf(*(const float *) pi *(1<< 7))+0x80)) CONV_FUNC_GROUP(AV_SAMPLE_FMT_S16, int16_t, AV_SAMPLE_FMT_FLT, float, av_clip_int16(lrintf(*(const float *) pi *(1<< 15)))) CONV_FUNC_GROUP(AV_SAMPLE_FMT_S32, int32_t, AV_SAMPLE_FMT_FLT, float, av_clipl_int32(llrintf(*(const float *) pi *(1U<< 31)))) CONV_FUNC_GROUP(AV_SAMPLE_FMT_U8, uint8_t, AV_SAMPLE_FMT_DBL, double, av_clip_uint8(lrint(*(const double *) pi *(1<< 7))+0x80)) CONV_FUNC_GROUP(AV_SAMPLE_FMT_S16, int16_t, AV_SAMPLE_FMT_DBL, double, av_clip_int16(lrint(*(const double *) pi *(1<< 15)))) CONV_FUNC_GROUP(AV_SAMPLE_FMT_S32, int32_t, AV_SAMPLE_FMT_DBL, double, av_clipl_int32(llrint(*(const double *) pi *(1U<< 31))))#define SET_CONV_FUNC_GROUP(ofmt, ifmt) static void set_generic_function(AudioConvert *ac){}void ff_audio_convert_free(AudioConvert **ac){if(!*ac) return;ff_dither_free(&(*ac) ->dc);av_freep(ac);}AudioConvert *ff_audio_convert_alloc(AVAudioResampleContext *avr, enum AVSampleFormat out_fmt, enum AVSampleFormat in_fmt, int channels, int sample_rate, int apply_map){AudioConvert *ac;int in_planar, out_planar;ac=av_mallocz(sizeof(*ac));if(!ac) return NULL;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);return NULL;}return ac;}in_planar=av_sample_fmt_is_planar(in_fmt);out_planar=av_sample_fmt_is_planar(out_fmt);if(in_planar==out_planar){ac->func_type=CONV_FUNC_TYPE_FLAT;ac->planes=in_planar?ac->channels:1;}else if(in_planar) ac->func_type=CONV_FUNC_TYPE_INTERLEAVE;else ac->func_type=CONV_FUNC_TYPE_DEINTERLEAVE;set_generic_function(ac);if(ARCH_ARM) ff_audio_convert_init_arm(ac);if(ARCH_X86) ff_audio_convert_init_x86(ac);return ac;}int ff_audio_convert(AudioConvert *ac, AudioData *out, AudioData *in){int use_generic=1;int len=in->nb_samples;int p;if(ac->dc){av_dlog(ac->avr,"%d samples - audio_convert: %s to %s (dithered)\n", len, av_get_sample_fmt_name(ac->in_fmt), av_get_sample_fmt_name(ac->out_fmt));return ff_convert_dither(ac-> out
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:1700
AVPixelFormat
Pixel format.
Definition: pixfmt.h:66
This structure stores compressed data.