FFmpeg
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Groups Pages
sgienc.c
Go to the documentation of this file.
1 /*
2  * SGI image encoder
3  * Todd Kirby <doubleshot@pacbell.net>
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 "avcodec.h"
23 #include "bytestream.h"
24 #include "internal.h"
25 #include "sgi.h"
26 #include "rle.h"
27 
28 #define SGI_SINGLE_CHAN 2
29 #define SGI_MULTI_CHAN 3
30 
32 {
33  if (avctx->width > 65535 || avctx->height > 65535) {
34  av_log(avctx, AV_LOG_ERROR,
35  "Unsupported resolution %dx%d.\n", avctx->width, avctx->height);
36  av_log(avctx, AV_LOG_ERROR, "SGI does not support resolutions above 65535x65535\n");
37  return AVERROR_INVALIDDATA;
38  }
39 
40  avctx->coded_frame = av_frame_alloc();
41  if (!avctx->coded_frame)
42  return AVERROR(ENOMEM);
43 
44  return 0;
45 }
46 
48  const AVFrame *frame, int *got_packet)
49 {
50  const AVFrame * const p = frame;
51  uint8_t *offsettab, *lengthtab, *in_buf, *encode_buf, *buf;
52  int x, y, z, length, tablesize, ret;
53  unsigned int width, height, depth, dimension;
54  unsigned int bytes_per_channel, pixmax, put_be;
55  unsigned char *end_buf;
56 
58  avctx->coded_frame->key_frame = 1;
59 
60  width = avctx->width;
61  height = avctx->height;
62  bytes_per_channel = 1;
63  pixmax = 0xFF;
64  put_be = HAVE_BIGENDIAN;
65 
66  switch (avctx->pix_fmt) {
67  case AV_PIX_FMT_GRAY8:
68  dimension = SGI_SINGLE_CHAN;
69  depth = SGI_GRAYSCALE;
70  break;
71  case AV_PIX_FMT_RGB24:
72  dimension = SGI_MULTI_CHAN;
73  depth = SGI_RGB;
74  break;
75  case AV_PIX_FMT_RGBA:
76  dimension = SGI_MULTI_CHAN;
77  depth = SGI_RGBA;
78  break;
80  put_be = !HAVE_BIGENDIAN;
83  bytes_per_channel = 2;
84  pixmax = 0xFFFF;
85  dimension = SGI_SINGLE_CHAN;
86  depth = SGI_GRAYSCALE;
87  break;
88  case AV_PIX_FMT_RGB48LE:
89  put_be = !HAVE_BIGENDIAN;
90  case AV_PIX_FMT_RGB48BE:
92  bytes_per_channel = 2;
93  pixmax = 0xFFFF;
94  dimension = SGI_MULTI_CHAN;
95  depth = SGI_RGB;
96  break;
98  put_be = !HAVE_BIGENDIAN;
100  avctx->coder_type = FF_CODER_TYPE_RAW;
101  bytes_per_channel = 2;
102  pixmax = 0xFFFF;
103  dimension = SGI_MULTI_CHAN;
104  depth = SGI_RGBA;
105  break;
106  default:
107  return AVERROR_INVALIDDATA;
108  }
109 
110  tablesize = depth * height * 4;
111  length = SGI_HEADER_SIZE;
112  if (avctx->coder_type == FF_CODER_TYPE_RAW)
113  length += depth * height * width;
114  else // assume ff_rl_encode() produces at most 2x size of input
115  length += tablesize * 2 + depth * height * (2 * width + 1);
116 
117  if ((ret = ff_alloc_packet2(avctx, pkt, bytes_per_channel * length)) < 0)
118  return ret;
119  buf = pkt->data;
120  end_buf = pkt->data + pkt->size;
121 
122  /* Encode header. */
123  bytestream_put_be16(&buf, SGI_MAGIC);
124  bytestream_put_byte(&buf, avctx->coder_type != FF_CODER_TYPE_RAW); /* RLE 1 - VERBATIM 0*/
125  bytestream_put_byte(&buf, bytes_per_channel);
126  bytestream_put_be16(&buf, dimension);
127  bytestream_put_be16(&buf, width);
128  bytestream_put_be16(&buf, height);
129  bytestream_put_be16(&buf, depth);
130 
131  bytestream_put_be32(&buf, 0L); /* pixmin */
132  bytestream_put_be32(&buf, pixmax);
133  bytestream_put_be32(&buf, 0L); /* dummy */
134 
135  /* name */
136  memset(buf, 0, SGI_HEADER_SIZE);
137  buf += 80;
138 
139  /* colormap */
140  bytestream_put_be32(&buf, 0L);
141 
142  /* The rest of the 512 byte header is unused. */
143  buf += 404;
144  offsettab = buf;
145 
146  if (avctx->coder_type != FF_CODER_TYPE_RAW) {
147  /* Skip RLE offset table. */
148  buf += tablesize;
149  lengthtab = buf;
150 
151  /* Skip RLE length table. */
152  buf += tablesize;
153 
154  /* Make an intermediate consecutive buffer. */
155  if (!(encode_buf = av_malloc(width)))
156  return AVERROR(ENOMEM);
157 
158  for (z = 0; z < depth; z++) {
159  in_buf = p->data[0] + p->linesize[0] * (height - 1) + z;
160 
161  for (y = 0; y < height; y++) {
162  bytestream_put_be32(&offsettab, buf - pkt->data);
163 
164  for (x = 0; x < width; x++)
165  encode_buf[x] = in_buf[depth * x];
166 
167  if ((length = ff_rle_encode(buf, end_buf - buf - 1, encode_buf, 1, width, 0, 0, 0x80, 0)) < 1) {
168  av_free(encode_buf);
169  return -1;
170  }
171 
172  buf += length;
173  bytestream_put_byte(&buf, 0);
174  bytestream_put_be32(&lengthtab, length + 1);
175  in_buf -= p->linesize[0];
176  }
177  }
178 
179  av_free(encode_buf);
180  } else {
181  for (z = 0; z < depth; z++) {
182  in_buf = p->data[0] + p->linesize[0] * (height - 1) + z * bytes_per_channel;
183 
184  for (y = 0; y < height; y++) {
185  for (x = 0; x < width * depth; x += depth)
186  if (bytes_per_channel == 1) {
187  bytestream_put_byte(&buf, in_buf[x]);
188  } else {
189  if (put_be) {
190  bytestream_put_be16(&buf, ((uint16_t *)in_buf)[x]);
191  } else {
192  bytestream_put_le16(&buf, ((uint16_t *)in_buf)[x]);
193  }
194  }
195 
196  in_buf -= p->linesize[0];
197  }
198  }
199  }
200 
201  /* total length */
202  pkt->size = buf - pkt->data;
203  pkt->flags |= AV_PKT_FLAG_KEY;
204  *got_packet = 1;
205 
206  return 0;
207 }
208 
210 {
211  av_frame_free(&avctx->coded_frame);
212  return 0;
213 }
214 
216  .name = "sgi",
217  .long_name = NULL_IF_CONFIG_SMALL("SGI image"),
218  .type = AVMEDIA_TYPE_VIDEO,
219  .id = AV_CODEC_ID_SGI,
220  .init = encode_init,
221  .encode2 = encode_frame,
222  .close = encode_close,
223  .pix_fmts = (const enum AVPixelFormat[]) {
229  },
230 };
int ff_alloc_packet2(AVCodecContext *avctx, AVPacket *avpkt, int64_t size)
Check AVPacket size and/or allocate data.
Definition: utils.c:1736
#define AVERROR_INVALIDDATA
Invalid data found when processing input.
Definition: error.h:59
This structure describes decoded (raw) audio or video data.
Definition: frame.h:171
packed RGB 8:8:8, 24bpp, RGBRGB...
Definition: pixfmt.h:65
AVFrame * coded_frame
the picture in the bitstream
Definition: avcodec.h:2745
#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
#define SGI_MULTI_CHAN
Definition: sgienc.c:29
uint8_t
#define av_cold
Definition: attributes.h:74
#define av_malloc(s)
AVFrame * av_frame_alloc(void)
Allocate an AVFrame and set its fields to default values.
Definition: frame.c:135
packed RGB 16:16:16, 48bpp, 16R, 16G, 16B, the 2-byte value for each R/G/B component is stored as lit...
Definition: pixfmt.h:112
packed RGBA 16:16:16:16, 64bpp, 16R, 16G, 16B, 16A, the 2-byte value for each R/G/B/A component is st...
Definition: pixfmt.h:259
static AVFrame * frame
int coder_type
coder type
Definition: avcodec.h:2380
static int encode_frame(AVCodecContext *avctx, AVPacket *pkt, const AVFrame *frame, int *got_packet)
Definition: sgienc.c:47
uint8_t * data
Definition: avcodec.h:1162
#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
GLsizei GLsizei * length
Definition: opengl_enc.c:115
const char * name
Name of the codec implementation.
Definition: avcodec.h:3188
Libavcodec external API header.
int depth
Definition: v4l.c:61
packed RGBA 8:8:8:8, 32bpp, RGBARGBA...
Definition: pixfmt.h:95
int flags
A combination of AV_PKT_FLAG values.
Definition: avcodec.h:1168
#define SGI_RGBA
Definition: sgi.h:34
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
AVCodec ff_sgi_encoder
Definition: sgienc.c:215
static av_cold int encode_init(AVCodecContext *avctx)
Definition: sgienc.c:31
#define L(x)
Definition: vp56_arith.h:36
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 SGI_HEADER_SIZE
Definition: sgi.h:30
static av_cold int encode_close(AVCodecContext *avctx)
Definition: sgienc.c:209
void * buf
Definition: avisynth_c.h:553
BYTE int const BYTE int int int height
Definition: avisynth_c.h:676
Y , 16bpp, big-endian.
Definition: pixfmt.h:99
#define SGI_GRAYSCALE
Definition: sgi.h:32
#define SGI_RGB
Definition: sgi.h:33
uint8_t * data[AV_NUM_DATA_POINTERS]
pointer to the picture/channel planes.
Definition: frame.h:182
#define SGI_SINGLE_CHAN
Definition: sgienc.c:28
#define SGI_MAGIC
SGI image file signature.
Definition: sgi.h:28
Y , 8bpp.
Definition: pixfmt.h:71
common internal api header.
packed RGB 16:16:16, 48bpp, 16R, 16G, 16B, the 2-byte value for each R/G/B component is stored as big...
Definition: pixfmt.h:111
#define av_free(p)
Y , 16bpp, little-endian.
Definition: pixfmt.h:100
int key_frame
1 -> keyframe, 0-> not
Definition: frame.h:237
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
AVPixelFormat
Pixel format.
Definition: pixfmt.h:61
This structure stores compressed data.
Definition: avcodec.h:1139
packed RGBA 16:16:16:16, 64bpp, 16R, 16G, 16B, 16A, the 2-byte value for each R/G/B/A component is st...
Definition: pixfmt.h:260
static int width