FFmpeg  3.4.9
dpx.c
Go to the documentation of this file.
1 /*
2  * DPX (.dpx) image decoder
3  * Copyright (c) 2009 Jimmy Christensen
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 "libavutil/intreadwrite.h"
23 #include "libavutil/intfloat.h"
24 #include "libavutil/imgutils.h"
25 #include "bytestream.h"
26 #include "avcodec.h"
27 #include "internal.h"
28 
29 static unsigned int read16(const uint8_t **ptr, int is_big)
30 {
31  unsigned int temp;
32  if (is_big) {
33  temp = AV_RB16(*ptr);
34  } else {
35  temp = AV_RL16(*ptr);
36  }
37  *ptr += 2;
38  return temp;
39 }
40 
41 static unsigned int read32(const uint8_t **ptr, int is_big)
42 {
43  unsigned int temp;
44  if (is_big) {
45  temp = AV_RB32(*ptr);
46  } else {
47  temp = AV_RL32(*ptr);
48  }
49  *ptr += 4;
50  return temp;
51 }
52 
53 static uint16_t read10in32(const uint8_t **ptr, uint32_t * lbuf,
54  int * n_datum, int is_big)
55 {
56  if (*n_datum)
57  (*n_datum)--;
58  else {
59  *lbuf = read32(ptr, is_big);
60  *n_datum = 2;
61  }
62 
63  *lbuf = (*lbuf << 10) | (*lbuf >> 22);
64 
65  return *lbuf & 0x3FF;
66 }
67 
68 static int decode_frame(AVCodecContext *avctx,
69  void *data,
70  int *got_frame,
71  AVPacket *avpkt)
72 {
73  const uint8_t *buf = avpkt->data;
74  int buf_size = avpkt->size;
75  AVFrame *const p = data;
77 
78  unsigned int offset;
79  int magic_num, endian;
80  int x, y, stride, i, ret;
81  int w, h, bits_per_color, descriptor, elements, packing;
82  int encoding, need_align = 0;
83 
84  unsigned int rgbBuffer = 0;
85  int n_datum = 0;
86 
87  if (avpkt->size <= 1634) {
88  av_log(avctx, AV_LOG_ERROR, "Packet too small for DPX header\n");
89  return AVERROR_INVALIDDATA;
90  }
91 
92  magic_num = AV_RB32(buf);
93  buf += 4;
94 
95  /* Check if the files "magic number" is "SDPX" which means it uses
96  * big-endian or XPDS which is for little-endian files */
97  if (magic_num == AV_RL32("SDPX")) {
98  endian = 0;
99  } else if (magic_num == AV_RB32("SDPX")) {
100  endian = 1;
101  } else {
102  av_log(avctx, AV_LOG_ERROR, "DPX marker not found\n");
103  return AVERROR_INVALIDDATA;
104  }
105 
106  offset = read32(&buf, endian);
107  if (avpkt->size <= offset) {
108  av_log(avctx, AV_LOG_ERROR, "Invalid data start offset\n");
109  return AVERROR_INVALIDDATA;
110  }
111 
112  // Check encryption
113  buf = avpkt->data + 660;
114  ret = read32(&buf, endian);
115  if (ret != 0xFFFFFFFF) {
116  avpriv_report_missing_feature(avctx, "Encryption");
117  av_log(avctx, AV_LOG_WARNING, "The image is encrypted and may "
118  "not properly decode.\n");
119  }
120 
121  // Need to end in 0x304 offset from start of file
122  buf = avpkt->data + 0x304;
123  w = read32(&buf, endian);
124  h = read32(&buf, endian);
125 
126  if ((ret = ff_set_dimensions(avctx, w, h)) < 0)
127  return ret;
128 
129  // Need to end in 0x320 to read the descriptor
130  buf += 20;
131  descriptor = buf[0];
132 
133  // Need to end in 0x323 to read the bits per color
134  buf += 3;
135  avctx->bits_per_raw_sample =
136  bits_per_color = buf[0];
137  buf++;
138  packing = read16(&buf, endian);
139  encoding = read16(&buf, endian);
140 
141  if (packing > 1) {
142  avpriv_report_missing_feature(avctx, "Packing %d", packing);
143  return AVERROR_PATCHWELCOME;
144  }
145  if (encoding) {
146  avpriv_report_missing_feature(avctx, "Encoding %d", encoding);
147  return AVERROR_PATCHWELCOME;
148  }
149 
150  if (bits_per_color > 32)
151  return AVERROR_INVALIDDATA;
152 
153  buf += 820;
154  avctx->sample_aspect_ratio.num = read32(&buf, endian);
155  avctx->sample_aspect_ratio.den = read32(&buf, endian);
156  if (avctx->sample_aspect_ratio.num > 0 && avctx->sample_aspect_ratio.den > 0)
159  0x10000);
160  else
161  avctx->sample_aspect_ratio = (AVRational){ 0, 1 };
162 
163  if (offset >= 1724 + 4) {
164  buf = avpkt->data + 1724;
165  i = read32(&buf, endian);
166  if(i) {
167  AVRational q = av_d2q(av_int2float(i), 4096);
168  if (q.num > 0 && q.den > 0)
169  avctx->framerate = q;
170  }
171  }
172 
173  switch (descriptor) {
174  case 6: // Y
175  elements = 1;
176  break;
177  case 52: // ABGR
178  case 51: // RGBA
179  case 103: // UYVA4444
180  elements = 4;
181  break;
182  case 50: // RGB
183  case 102: // UYV444
184  elements = 3;
185  break;
186  case 100: // UYVY422
187  elements = 2;
188  break;
189  default:
190  avpriv_report_missing_feature(avctx, "Descriptor %d", descriptor);
191  return AVERROR_PATCHWELCOME;
192  }
193 
194  switch (bits_per_color) {
195  case 8:
196  stride = avctx->width * elements;
197  break;
198  case 10:
199  if (!packing) {
200  av_log(avctx, AV_LOG_ERROR, "Packing to 32bit required\n");
201  return -1;
202  }
203  stride = (avctx->width * elements + 2) / 3 * 4;
204  break;
205  case 12:
206  if (!packing) {
207  av_log(avctx, AV_LOG_ERROR, "Packing to 16bit required\n");
208  return -1;
209  }
210  stride = 2 * avctx->width * elements;
211  break;
212  case 16:
213  stride = 2 * avctx->width * elements;
214  break;
215  case 1:
216  case 32:
217  case 64:
218  avpriv_report_missing_feature(avctx, "Depth %d", bits_per_color);
219  return AVERROR_PATCHWELCOME;
220  default:
221  return AVERROR_INVALIDDATA;
222  }
223 
224  // Table 3c: Runs will always break at scan line boundaries. Packing
225  // will always break to the next 32-bit word at scan-line boundaries.
226  // Unfortunately, the encoder produced invalid files, so attempt
227  // to detect it
228  need_align = FFALIGN(stride, 4);
229  if (need_align*avctx->height + (int64_t)offset > avpkt->size) {
230  // Alignment seems unappliable, try without
231  if (stride*avctx->height + (int64_t)offset > avpkt->size) {
232  av_log(avctx, AV_LOG_ERROR, "Overread buffer. Invalid header?\n");
233  return AVERROR_INVALIDDATA;
234  } else {
235  av_log(avctx, AV_LOG_INFO, "Decoding DPX without scanline "
236  "alignment.\n");
237  need_align = 0;
238  }
239  } else {
240  need_align -= stride;
241  stride = FFALIGN(stride, 4);
242  }
243 
244  switch (1000 * descriptor + 10 * bits_per_color + endian) {
245  case 6081:
246  case 6080:
247  avctx->pix_fmt = AV_PIX_FMT_GRAY8;
248  break;
249  case 6121:
250  case 6120:
251  avctx->pix_fmt = AV_PIX_FMT_GRAY12;
252  break;
253  case 50081:
254  case 50080:
255  avctx->pix_fmt = AV_PIX_FMT_RGB24;
256  break;
257  case 52081:
258  case 52080:
259  avctx->pix_fmt = AV_PIX_FMT_ABGR;
260  break;
261  case 51081:
262  case 51080:
263  avctx->pix_fmt = AV_PIX_FMT_RGBA;
264  break;
265  case 50100:
266  case 50101:
267  avctx->pix_fmt = AV_PIX_FMT_GBRP10;
268  break;
269  case 51100:
270  case 51101:
271  avctx->pix_fmt = AV_PIX_FMT_GBRAP10;
272  break;
273  case 50120:
274  case 50121:
275  avctx->pix_fmt = AV_PIX_FMT_GBRP12;
276  break;
277  case 51120:
278  case 51121:
279  avctx->pix_fmt = AV_PIX_FMT_GBRAP12;
280  break;
281  case 6161:
282  avctx->pix_fmt = AV_PIX_FMT_GRAY16BE;
283  break;
284  case 6160:
285  avctx->pix_fmt = AV_PIX_FMT_GRAY16LE;
286  break;
287  case 50161:
288  avctx->pix_fmt = AV_PIX_FMT_RGB48BE;
289  break;
290  case 50160:
291  avctx->pix_fmt = AV_PIX_FMT_RGB48LE;
292  break;
293  case 51161:
294  avctx->pix_fmt = AV_PIX_FMT_RGBA64BE;
295  break;
296  case 51160:
297  avctx->pix_fmt = AV_PIX_FMT_RGBA64LE;
298  break;
299  case 100081:
300  avctx->pix_fmt = AV_PIX_FMT_UYVY422;
301  break;
302  case 102081:
303  avctx->pix_fmt = AV_PIX_FMT_YUV444P;
304  break;
305  case 103081:
306  avctx->pix_fmt = AV_PIX_FMT_YUVA444P;
307  break;
308  default:
309  av_log(avctx, AV_LOG_ERROR, "Unsupported format\n");
310  return AVERROR_PATCHWELCOME;
311  }
312 
313  ff_set_sar(avctx, avctx->sample_aspect_ratio);
314 
315  if ((ret = ff_get_buffer(avctx, p, 0)) < 0)
316  return ret;
317 
318  // Move pointer to offset from start of file
319  buf = avpkt->data + offset;
320 
321  for (i=0; i<AV_NUM_DATA_POINTERS; i++)
322  ptr[i] = p->data[i];
323 
324  switch (bits_per_color) {
325  case 10:
326  for (x = 0; x < avctx->height; x++) {
327  uint16_t *dst[4] = {(uint16_t*)ptr[0],
328  (uint16_t*)ptr[1],
329  (uint16_t*)ptr[2],
330  (uint16_t*)ptr[3]};
331  for (y = 0; y < avctx->width; y++) {
332  *dst[2]++ = read10in32(&buf, &rgbBuffer,
333  &n_datum, endian);
334  *dst[0]++ = read10in32(&buf, &rgbBuffer,
335  &n_datum, endian);
336  *dst[1]++ = read10in32(&buf, &rgbBuffer,
337  &n_datum, endian);
338  if (elements == 4)
339  *dst[3]++ =
340  read10in32(&buf, &rgbBuffer,
341  &n_datum, endian);
342  }
343  n_datum = 0;
344  for (i = 0; i < elements; i++)
345  ptr[i] += p->linesize[i];
346  }
347  break;
348  case 12:
349  for (x = 0; x < avctx->height; x++) {
350  uint16_t *dst[4] = {(uint16_t*)ptr[0],
351  (uint16_t*)ptr[1],
352  (uint16_t*)ptr[2],
353  (uint16_t*)ptr[3]};
354  for (y = 0; y < avctx->width; y++) {
355  if (elements >= 3)
356  *dst[2]++ = read16(&buf, endian) >> 4;
357  *dst[0] = read16(&buf, endian) >> 4;
358  dst[0]++;
359  if (elements >= 2)
360  *dst[1]++ = read16(&buf, endian) >> 4;
361  if (elements == 4)
362  *dst[3]++ = read16(&buf, endian) >> 4;
363  }
364  for (i = 0; i < elements; i++)
365  ptr[i] += p->linesize[i];
366  // Jump to next aligned position
367  buf += need_align;
368  }
369  break;
370  case 16:
371  elements *= 2;
372  case 8:
373  if ( avctx->pix_fmt == AV_PIX_FMT_YUVA444P
374  || avctx->pix_fmt == AV_PIX_FMT_YUV444P) {
375  for (x = 0; x < avctx->height; x++) {
376  ptr[0] = p->data[0] + x * p->linesize[0];
377  ptr[1] = p->data[1] + x * p->linesize[1];
378  ptr[2] = p->data[2] + x * p->linesize[2];
379  ptr[3] = p->data[3] + x * p->linesize[3];
380  for (y = 0; y < avctx->width; y++) {
381  *ptr[1]++ = *buf++;
382  *ptr[0]++ = *buf++;
383  *ptr[2]++ = *buf++;
384  if (avctx->pix_fmt == AV_PIX_FMT_YUVA444P)
385  *ptr[3]++ = *buf++;
386  }
387  }
388  } else {
389  av_image_copy_plane(ptr[0], p->linesize[0],
390  buf, stride,
391  elements * avctx->width, avctx->height);
392  }
393  break;
394  }
395 
396  *got_frame = 1;
397 
398  return buf_size;
399 }
400 
402  .name = "dpx",
403  .long_name = NULL_IF_CONFIG_SMALL("DPX (Digital Picture Exchange) image"),
404  .type = AVMEDIA_TYPE_VIDEO,
405  .id = AV_CODEC_ID_DPX,
406  .decode = decode_frame,
407  .capabilities = AV_CODEC_CAP_DR1,
408 };
packed YUV 4:2:2, 16bpp, Cb Y0 Cr Y1
Definition: pixfmt.h:86
static int decode_frame(AVCodecContext *avctx, void *data, int *got_frame, AVPacket *avpkt)
Definition: dpx.c:68
AVRational framerate
Definition: avcodec.h:3460
#define AVERROR_INVALIDDATA
Invalid data found when processing input.
Definition: error.h:59
#define AV_NUM_DATA_POINTERS
Definition: frame.h:202
This structure describes decoded (raw) audio or video data.
Definition: frame.h:201
#define AV_PIX_FMT_GBRAP10
Definition: pixfmt.h:403
planar YUV 4:4:4, 24bpp, (1 Cr & Cb sample per 1x1 Y samples)
Definition: pixfmt.h:71
misc image utilities
#define AV_LOG_WARNING
Something somehow does not look correct.
Definition: log.h:182
packed RGB 8:8:8, 24bpp, RGBRGB...
Definition: pixfmt.h:68
else temp
Definition: vf_mcdeint.c:256
int ff_set_dimensions(AVCodecContext *s, int width, int height)
Check that the provided frame dimensions are valid and set them on the codec context.
Definition: utils.c:211
static av_always_inline float av_int2float(uint32_t i)
Reinterpret a 32-bit integer as a float.
Definition: intfloat.h:40
int num
Numerator.
Definition: rational.h:59
int size
Definition: avcodec.h:1680
#define AV_PIX_FMT_GBRP10
Definition: pixfmt.h:399
AVRational sample_aspect_ratio
sample aspect ratio (0 if unknown) That is the width of a pixel divided by the height of the pixel...
Definition: avcodec.h:2172
enum AVPixelFormat pix_fmt
Pixel format, see AV_PIX_FMT_xxx.
Definition: avcodec.h:1989
#define AV_RL16
Definition: intreadwrite.h:42
int bits_per_raw_sample
Bits per sample/pixel of internal libavcodec pixel/sample format.
Definition: avcodec.h:3164
int stride
Definition: mace.c:144
AVCodec.
Definition: avcodec.h:3739
#define AV_PIX_FMT_GRAY12
Definition: pixfmt.h:366
uint8_t
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:115
AVCodec ff_dpx_decoder
Definition: dpx.c:401
#define AV_RB32
Definition: intreadwrite.h:130
static unsigned int read16(const uint8_t **ptr, int is_big)
Definition: dpx.c:29
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:221
packed ABGR 8:8:8:8, 32bpp, ABGRABGR...
Definition: pixfmt.h:99
const char data[16]
Definition: mxf.c:90
uint8_t * data
Definition: avcodec.h:1679
int ff_set_sar(AVCodecContext *avctx, AVRational sar)
Check that the provided sample aspect ratio is valid and set it on the codec context.
Definition: utils.c:226
static unsigned int read32(const uint8_t **ptr, int is_big)
Definition: dpx.c:41
int av_reduce(int *dst_num, int *dst_den, int64_t num, int64_t den, int64_t max)
Reduce a fraction.
Definition: rational.c:35
#define FFALIGN(x, a)
Definition: macros.h:48
#define av_log(a,...)
#define AV_LOG_ERROR
Something went wrong and cannot losslessly be recovered.
Definition: log.h:176
#define AV_RB16
Definition: intreadwrite.h:53
#define NULL_IF_CONFIG_SMALL(x)
Return NULL if CONFIG_SMALL is true, otherwise the argument without modification. ...
Definition: internal.h:181
#define AV_PIX_FMT_GBRAP12
Definition: pixfmt.h:404
const char * name
Name of the codec implementation.
Definition: avcodec.h:3746
static const uint8_t offset[127][2]
Definition: vf_spp.c:92
packed RGBA 8:8:8:8, 32bpp, RGBARGBA...
Definition: pixfmt.h:98
int width
picture width / height.
Definition: avcodec.h:1948
static const ElemCat * elements[ELEMENT_COUNT]
Definition: signature.h:566
#define AV_RL32
Definition: intreadwrite.h:146
#define AVERROR_PATCHWELCOME
Not yet implemented in FFmpeg, patches welcome.
Definition: error.h:62
#define AV_LOG_INFO
Standard information.
Definition: log.h:187
Libavcodec external API header.
int linesize[AV_NUM_DATA_POINTERS]
For video, size in bytes of each picture line.
Definition: frame.h:232
static uint16_t read10in32(const uint8_t **ptr, uint32_t *lbuf, int *n_datum, int is_big)
Definition: dpx.c:53
planar YUV 4:4:4 32bpp, (1 Cr & Cb sample per 1x1 Y & A samples)
Definition: pixfmt.h:193
main external API structure.
Definition: avcodec.h:1761
int ff_get_buffer(AVCodecContext *avctx, AVFrame *frame, int flags)
Get a buffer for a frame.
Definition: decode.c:1669
void * buf
Definition: avisynth_c.h:690
Y , 16bpp, big-endian.
Definition: pixfmt.h:102
Rational number (pair of numerator and denominator).
Definition: rational.h:58
#define AV_PIX_FMT_GBRP12
Definition: pixfmt.h:400
void avpriv_report_missing_feature(void *avc, const char *msg,...) av_printf_format(2
Log a generic warning message about a missing feature.
uint8_t * data[AV_NUM_DATA_POINTERS]
pointer to the picture/channel planes.
Definition: frame.h:215
AVRational av_d2q(double d, int max)
Convert a double precision floating point number to a rational.
Definition: rational.c:106
Y , 8bpp.
Definition: pixfmt.h:74
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:114
int den
Denominator.
Definition: rational.h:60
Y , 16bpp, little-endian.
Definition: pixfmt.h:103
void av_image_copy_plane(uint8_t *dst, int dst_linesize, const uint8_t *src, int src_linesize, int bytewidth, int height)
Copy image plane from src to dst.
Definition: imgutils.c:337
This structure stores compressed data.
Definition: avcodec.h:1656
#define AV_CODEC_CAP_DR1
Codec uses get_buffer() for allocating buffers and supports custom allocators.
Definition: avcodec.h:1002
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:222