Libav
utvideodec.c
Go to the documentation of this file.
1 /*
2  * Ut Video decoder
3  * Copyright (c) 2011 Konstantin Shishkov
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 
27 #include <stdlib.h>
28 
29 #include "libavutil/intreadwrite.h"
30 #include "avcodec.h"
31 #include "bytestream.h"
32 #include "get_bits.h"
33 #include "dsputil.h"
34 #include "thread.h"
35 #include "utvideo.h"
36 
37 static int build_huff(const uint8_t *src, VLC *vlc, int *fsym)
38 {
39  int i;
40  HuffEntry he[256];
41  int last;
42  uint32_t codes[256];
43  uint8_t bits[256];
44  uint8_t syms[256];
45  uint32_t code;
46 
47  *fsym = -1;
48  for (i = 0; i < 256; i++) {
49  he[i].sym = i;
50  he[i].len = *src++;
51  }
52  qsort(he, 256, sizeof(*he), ff_ut_huff_cmp_len);
53 
54  if (!he[0].len) {
55  *fsym = he[0].sym;
56  return 0;
57  }
58  if (he[0].len > 32)
59  return -1;
60 
61  last = 255;
62  while (he[last].len == 255 && last)
63  last--;
64 
65  code = 1;
66  for (i = last; i >= 0; i--) {
67  codes[i] = code >> (32 - he[i].len);
68  bits[i] = he[i].len;
69  syms[i] = he[i].sym;
70  code += 0x80000000u >> (he[i].len - 1);
71  }
72 
73  return ff_init_vlc_sparse(vlc, FFMIN(he[last].len, 9), last + 1,
74  bits, sizeof(*bits), sizeof(*bits),
75  codes, sizeof(*codes), sizeof(*codes),
76  syms, sizeof(*syms), sizeof(*syms), 0);
77 }
78 
79 static int decode_plane(UtvideoContext *c, int plane_no,
80  uint8_t *dst, int step, int stride,
81  int width, int height,
82  const uint8_t *src, int use_pred)
83 {
84  int i, j, slice, pix;
85  int sstart, send;
86  VLC vlc;
87  GetBitContext gb;
88  int prev, fsym;
89  const int cmask = ~(!plane_no && c->avctx->pix_fmt == AV_PIX_FMT_YUV420P);
90 
91  if (build_huff(src, &vlc, &fsym)) {
92  av_log(c->avctx, AV_LOG_ERROR, "Cannot build Huffman codes\n");
93  return AVERROR_INVALIDDATA;
94  }
95  if (fsym >= 0) { // build_huff reported a symbol to fill slices with
96  send = 0;
97  for (slice = 0; slice < c->slices; slice++) {
98  uint8_t *dest;
99 
100  sstart = send;
101  send = (height * (slice + 1) / c->slices) & cmask;
102  dest = dst + sstart * stride;
103 
104  prev = 0x80;
105  for (j = sstart; j < send; j++) {
106  for (i = 0; i < width * step; i += step) {
107  pix = fsym;
108  if (use_pred) {
109  prev += pix;
110  pix = prev;
111  }
112  dest[i] = pix;
113  }
114  dest += stride;
115  }
116  }
117  return 0;
118  }
119 
120  src += 256;
121 
122  send = 0;
123  for (slice = 0; slice < c->slices; slice++) {
124  uint8_t *dest;
125  int slice_data_start, slice_data_end, slice_size;
126 
127  sstart = send;
128  send = (height * (slice + 1) / c->slices) & cmask;
129  dest = dst + sstart * stride;
130 
131  // slice offset and size validation was done earlier
132  slice_data_start = slice ? AV_RL32(src + slice * 4 - 4) : 0;
133  slice_data_end = AV_RL32(src + slice * 4);
134  slice_size = slice_data_end - slice_data_start;
135 
136  if (!slice_size) {
137  av_log(c->avctx, AV_LOG_ERROR, "Plane has more than one symbol "
138  "yet a slice has a length of zero.\n");
139  goto fail;
140  }
141 
142  memcpy(c->slice_bits, src + slice_data_start + c->slices * 4,
143  slice_size);
144  memset(c->slice_bits + slice_size, 0, FF_INPUT_BUFFER_PADDING_SIZE);
145  c->dsp.bswap_buf((uint32_t *) c->slice_bits, (uint32_t *) c->slice_bits,
146  (slice_data_end - slice_data_start + 3) >> 2);
147  init_get_bits(&gb, c->slice_bits, slice_size * 8);
148 
149  prev = 0x80;
150  for (j = sstart; j < send; j++) {
151  for (i = 0; i < width * step; i += step) {
152  if (get_bits_left(&gb) <= 0) {
154  "Slice decoding ran out of bits\n");
155  goto fail;
156  }
157  pix = get_vlc2(&gb, vlc.table, vlc.bits, 4);
158  if (pix < 0) {
159  av_log(c->avctx, AV_LOG_ERROR, "Decoding error\n");
160  goto fail;
161  }
162  if (use_pred) {
163  prev += pix;
164  pix = prev;
165  }
166  dest[i] = pix;
167  }
168  dest += stride;
169  }
170  if (get_bits_left(&gb) > 32)
172  "%d bits left after decoding slice\n", get_bits_left(&gb));
173  }
174 
175  ff_free_vlc(&vlc);
176 
177  return 0;
178 fail:
179  ff_free_vlc(&vlc);
180  return AVERROR_INVALIDDATA;
181 }
182 
183 static void restore_rgb_planes(uint8_t *src, int step, int stride, int width,
184  int height)
185 {
186  int i, j;
187  uint8_t r, g, b;
188 
189  for (j = 0; j < height; j++) {
190  for (i = 0; i < width * step; i += step) {
191  r = src[i];
192  g = src[i + 1];
193  b = src[i + 2];
194  src[i] = r + g - 0x80;
195  src[i + 2] = b + g - 0x80;
196  }
197  src += stride;
198  }
199 }
200 
201 static void restore_median(uint8_t *src, int step, int stride,
202  int width, int height, int slices, int rmode)
203 {
204  int i, j, slice;
205  int A, B, C;
206  uint8_t *bsrc;
207  int slice_start, slice_height;
208  const int cmask = ~rmode;
209 
210  for (slice = 0; slice < slices; slice++) {
211  slice_start = ((slice * height) / slices) & cmask;
212  slice_height = ((((slice + 1) * height) / slices) & cmask) -
213  slice_start;
214  if (!slice_height)
215  continue;
216 
217  bsrc = src + slice_start * stride;
218 
219  // first line - left neighbour prediction
220  bsrc[0] += 0x80;
221  A = bsrc[0];
222  for (i = step; i < width * step; i += step) {
223  bsrc[i] += A;
224  A = bsrc[i];
225  }
226  bsrc += stride;
227  if (slice_height == 1)
228  continue;
229  // second line - first element has top prediction, the rest uses median
230  C = bsrc[-stride];
231  bsrc[0] += C;
232  A = bsrc[0];
233  for (i = step; i < width * step; i += step) {
234  B = bsrc[i - stride];
235  bsrc[i] += mid_pred(A, B, (uint8_t)(A + B - C));
236  C = B;
237  A = bsrc[i];
238  }
239  bsrc += stride;
240  // the rest of lines use continuous median prediction
241  for (j = 2; j < slice_height; j++) {
242  for (i = 0; i < width * step; i += step) {
243  B = bsrc[i - stride];
244  bsrc[i] += mid_pred(A, B, (uint8_t)(A + B - C));
245  C = B;
246  A = bsrc[i];
247  }
248  bsrc += stride;
249  }
250  }
251 }
252 
253 /* UtVideo interlaced mode treats every two lines as a single one,
254  * so restoring function should take care of possible padding between
255  * two parts of the same "line".
256  */
257 static void restore_median_il(uint8_t *src, int step, int stride,
258  int width, int height, int slices, int rmode)
259 {
260  int i, j, slice;
261  int A, B, C;
262  uint8_t *bsrc;
263  int slice_start, slice_height;
264  const int cmask = ~(rmode ? 3 : 1);
265  const int stride2 = stride << 1;
266 
267  for (slice = 0; slice < slices; slice++) {
268  slice_start = ((slice * height) / slices) & cmask;
269  slice_height = ((((slice + 1) * height) / slices) & cmask) -
270  slice_start;
271  slice_height >>= 1;
272  if (!slice_height)
273  continue;
274 
275  bsrc = src + slice_start * stride;
276 
277  // first line - left neighbour prediction
278  bsrc[0] += 0x80;
279  A = bsrc[0];
280  for (i = step; i < width * step; i += step) {
281  bsrc[i] += A;
282  A = bsrc[i];
283  }
284  for (i = 0; i < width * step; i += step) {
285  bsrc[stride + i] += A;
286  A = bsrc[stride + i];
287  }
288  bsrc += stride2;
289  if (slice_height == 1)
290  continue;
291  // second line - first element has top prediction, the rest uses median
292  C = bsrc[-stride2];
293  bsrc[0] += C;
294  A = bsrc[0];
295  for (i = step; i < width * step; i += step) {
296  B = bsrc[i - stride2];
297  bsrc[i] += mid_pred(A, B, (uint8_t)(A + B - C));
298  C = B;
299  A = bsrc[i];
300  }
301  for (i = 0; i < width * step; i += step) {
302  B = bsrc[i - stride];
303  bsrc[stride + i] += mid_pred(A, B, (uint8_t)(A + B - C));
304  C = B;
305  A = bsrc[stride + i];
306  }
307  bsrc += stride2;
308  // the rest of lines use continuous median prediction
309  for (j = 2; j < slice_height; j++) {
310  for (i = 0; i < width * step; i += step) {
311  B = bsrc[i - stride2];
312  bsrc[i] += mid_pred(A, B, (uint8_t)(A + B - C));
313  C = B;
314  A = bsrc[i];
315  }
316  for (i = 0; i < width * step; i += step) {
317  B = bsrc[i - stride];
318  bsrc[i + stride] += mid_pred(A, B, (uint8_t)(A + B - C));
319  C = B;
320  A = bsrc[i + stride];
321  }
322  bsrc += stride2;
323  }
324  }
325 }
326 
327 static int decode_frame(AVCodecContext *avctx, void *data, int *got_frame,
328  AVPacket *avpkt)
329 {
330  const uint8_t *buf = avpkt->data;
331  int buf_size = avpkt->size;
332  UtvideoContext *c = avctx->priv_data;
333  int i, j;
334  const uint8_t *plane_start[5];
335  int plane_size, max_slice_size = 0, slice_start, slice_end, slice_size;
336  int ret;
337  GetByteContext gb;
338  ThreadFrame frame = { .f = data };
339 
340  if ((ret = ff_thread_get_buffer(avctx, &frame, 0)) < 0) {
341  av_log(avctx, AV_LOG_ERROR, "get_buffer() failed\n");
342  return ret;
343  }
344 
345  ff_thread_finish_setup(avctx);
346 
347  /* parse plane structure to get frame flags and validate slice offsets */
348  bytestream2_init(&gb, buf, buf_size);
349  for (i = 0; i < c->planes; i++) {
350  plane_start[i] = gb.buffer;
351  if (bytestream2_get_bytes_left(&gb) < 256 + 4 * c->slices) {
352  av_log(avctx, AV_LOG_ERROR, "Insufficient data for a plane\n");
353  return AVERROR_INVALIDDATA;
354  }
355  bytestream2_skipu(&gb, 256);
356  slice_start = 0;
357  slice_end = 0;
358  for (j = 0; j < c->slices; j++) {
359  slice_end = bytestream2_get_le32u(&gb);
360  slice_size = slice_end - slice_start;
361  if (slice_end < 0 || slice_size < 0 ||
362  bytestream2_get_bytes_left(&gb) < slice_end) {
363  av_log(avctx, AV_LOG_ERROR, "Incorrect slice size\n");
364  return AVERROR_INVALIDDATA;
365  }
366  slice_start = slice_end;
367  max_slice_size = FFMAX(max_slice_size, slice_size);
368  }
369  plane_size = slice_end;
370  bytestream2_skipu(&gb, plane_size);
371  }
372  plane_start[c->planes] = gb.buffer;
374  av_log(avctx, AV_LOG_ERROR, "Not enough data for frame information\n");
375  return AVERROR_INVALIDDATA;
376  }
377  c->frame_info = bytestream2_get_le32u(&gb);
378  av_log(avctx, AV_LOG_DEBUG, "frame information flags %X\n", c->frame_info);
379 
380  c->frame_pred = (c->frame_info >> 8) & 3;
381 
382  if (c->frame_pred == PRED_GRADIENT) {
383  avpriv_request_sample(avctx, "Frame with gradient prediction");
384  return AVERROR_PATCHWELCOME;
385  }
386 
388  max_slice_size + FF_INPUT_BUFFER_PADDING_SIZE);
389 
390  if (!c->slice_bits) {
391  av_log(avctx, AV_LOG_ERROR, "Cannot allocate temporary buffer\n");
392  return AVERROR(ENOMEM);
393  }
394 
395  switch (c->avctx->pix_fmt) {
396  case AV_PIX_FMT_RGB24:
397  case AV_PIX_FMT_RGBA:
398  for (i = 0; i < c->planes; i++) {
399  ret = decode_plane(c, i, frame.f->data[0] + ff_ut_rgb_order[i],
400  c->planes, frame.f->linesize[0], avctx->width,
401  avctx->height, plane_start[i],
402  c->frame_pred == PRED_LEFT);
403  if (ret)
404  return ret;
405  if (c->frame_pred == PRED_MEDIAN) {
406  if (!c->interlaced) {
407  restore_median(frame.f->data[0] + ff_ut_rgb_order[i],
408  c->planes, frame.f->linesize[0], avctx->width,
409  avctx->height, c->slices, 0);
410  } else {
411  restore_median_il(frame.f->data[0] + ff_ut_rgb_order[i],
412  c->planes, frame.f->linesize[0],
413  avctx->width, avctx->height, c->slices,
414  0);
415  }
416  }
417  }
418  restore_rgb_planes(frame.f->data[0], c->planes, frame.f->linesize[0],
419  avctx->width, avctx->height);
420  break;
421  case AV_PIX_FMT_YUV420P:
422  for (i = 0; i < 3; i++) {
423  ret = decode_plane(c, i, frame.f->data[i], 1, frame.f->linesize[i],
424  avctx->width >> !!i, avctx->height >> !!i,
425  plane_start[i], c->frame_pred == PRED_LEFT);
426  if (ret)
427  return ret;
428  if (c->frame_pred == PRED_MEDIAN) {
429  if (!c->interlaced) {
430  restore_median(frame.f->data[i], 1, frame.f->linesize[i],
431  avctx->width >> !!i, avctx->height >> !!i,
432  c->slices, !i);
433  } else {
434  restore_median_il(frame.f->data[i], 1, frame.f->linesize[i],
435  avctx->width >> !!i,
436  avctx->height >> !!i,
437  c->slices, !i);
438  }
439  }
440  }
441  break;
442  case AV_PIX_FMT_YUV422P:
443  for (i = 0; i < 3; i++) {
444  ret = decode_plane(c, i, frame.f->data[i], 1, frame.f->linesize[i],
445  avctx->width >> !!i, avctx->height,
446  plane_start[i], c->frame_pred == PRED_LEFT);
447  if (ret)
448  return ret;
449  if (c->frame_pred == PRED_MEDIAN) {
450  if (!c->interlaced) {
451  restore_median(frame.f->data[i], 1, frame.f->linesize[i],
452  avctx->width >> !!i, avctx->height,
453  c->slices, 0);
454  } else {
455  restore_median_il(frame.f->data[i], 1, frame.f->linesize[i],
456  avctx->width >> !!i, avctx->height,
457  c->slices, 0);
458  }
459  }
460  }
461  break;
462  }
463 
464  frame.f->key_frame = 1;
465  frame.f->pict_type = AV_PICTURE_TYPE_I;
466  frame.f->interlaced_frame = !!c->interlaced;
467 
468  *got_frame = 1;
469 
470  /* always report that the buffer was completely consumed */
471  return buf_size;
472 }
473 
475 {
476  UtvideoContext * const c = avctx->priv_data;
477 
478  c->avctx = avctx;
479 
480  ff_dsputil_init(&c->dsp, avctx);
481 
482  if (avctx->extradata_size < 16) {
483  av_log(avctx, AV_LOG_ERROR,
484  "Insufficient extradata size %d, should be at least 16\n",
485  avctx->extradata_size);
486  return AVERROR_INVALIDDATA;
487  }
488 
489  av_log(avctx, AV_LOG_DEBUG, "Encoder version %d.%d.%d.%d\n",
490  avctx->extradata[3], avctx->extradata[2],
491  avctx->extradata[1], avctx->extradata[0]);
492  av_log(avctx, AV_LOG_DEBUG, "Original format %X\n",
493  AV_RB32(avctx->extradata + 4));
494  c->frame_info_size = AV_RL32(avctx->extradata + 8);
495  c->flags = AV_RL32(avctx->extradata + 12);
496 
497  if (c->frame_info_size != 4)
498  avpriv_request_sample(avctx, "Frame info not 4 bytes");
499  av_log(avctx, AV_LOG_DEBUG, "Encoding parameters %08X\n", c->flags);
500  c->slices = (c->flags >> 24) + 1;
501  c->compression = c->flags & 1;
502  c->interlaced = c->flags & 0x800;
503 
504  c->slice_bits_size = 0;
505 
506  switch (avctx->codec_tag) {
507  case MKTAG('U', 'L', 'R', 'G'):
508  c->planes = 3;
509  avctx->pix_fmt = AV_PIX_FMT_RGB24;
510  break;
511  case MKTAG('U', 'L', 'R', 'A'):
512  c->planes = 4;
513  avctx->pix_fmt = AV_PIX_FMT_RGBA;
514  break;
515  case MKTAG('U', 'L', 'Y', '0'):
516  c->planes = 3;
517  avctx->pix_fmt = AV_PIX_FMT_YUV420P;
518  avctx->colorspace = AVCOL_SPC_BT470BG;
519  break;
520  case MKTAG('U', 'L', 'Y', '2'):
521  c->planes = 3;
522  avctx->pix_fmt = AV_PIX_FMT_YUV422P;
523  avctx->colorspace = AVCOL_SPC_BT470BG;
524  break;
525  case MKTAG('U', 'L', 'H', '0'):
526  c->planes = 3;
527  avctx->pix_fmt = AV_PIX_FMT_YUV420P;
528  avctx->colorspace = AVCOL_SPC_BT709;
529  break;
530  case MKTAG('U', 'L', 'H', '2'):
531  c->planes = 3;
532  avctx->pix_fmt = AV_PIX_FMT_YUV422P;
533  avctx->colorspace = AVCOL_SPC_BT709;
534  break;
535  default:
536  av_log(avctx, AV_LOG_ERROR, "Unknown Ut Video FOURCC provided (%08X)\n",
537  avctx->codec_tag);
538  return AVERROR_INVALIDDATA;
539  }
540 
541  return 0;
542 }
543 
545 {
546  UtvideoContext * const c = avctx->priv_data;
547 
548  av_freep(&c->slice_bits);
549 
550  return 0;
551 }
552 
554  .name = "utvideo",
555  .long_name = NULL_IF_CONFIG_SMALL("Ut Video"),
556  .type = AVMEDIA_TYPE_VIDEO,
557  .id = AV_CODEC_ID_UTVIDEO,
558  .priv_data_size = sizeof(UtvideoContext),
559  .init = decode_init,
560  .close = decode_end,
561  .decode = decode_frame,
562  .capabilities = CODEC_CAP_DR1 | CODEC_CAP_FRAME_THREADS,
563 };
static void restore_median(uint8_t *src, int step, int stride, int width, int height, int slices, int rmode)
Definition: utvideodec.c:201
av_cold void ff_dsputil_init(DSPContext *c, AVCodecContext *avctx)
Definition: dsputil.c:2440
#define AVERROR_INVALIDDATA
Invalid data found when processing input.
Definition: error.h:54
#define B
Definition: dsputil.c:1836
uint32_t flags
Definition: utvideo.h:70
#define AV_LOG_WARNING
Something somehow does not look correct.
Definition: log.h:129
AVFrame * f
Definition: thread.h:36
packed RGB 8:8:8, 24bpp, RGBRGB...
Definition: pixfmt.h:67
int slice_bits_size
Definition: utvideo.h:79
int size
Definition: avcodec.h:974
static int decode_plane(UtvideoContext *c, int plane_no, uint8_t *dst, int step, int stride, int width, int height, const uint8_t *src, int use_pred)
Definition: utvideodec.c:79
static av_cold int decode_end(AVCodecContext *avctx)
Definition: utvideodec.c:544
enum AVPixelFormat pix_fmt
Pixel format, see AV_PIX_FMT_xxx.
Definition: avcodec.h:1247
static av_always_inline void bytestream2_init(GetByteContext *g, const uint8_t *buf, int buf_size)
Definition: bytestream.h:130
int stride
Definition: mace.c:144
AVCodec.
Definition: avcodec.h:2755
void av_freep(void *arg)
Free a memory block which has been allocated with av_malloc(z)() or av_realloc() and set the pointer ...
Definition: mem.c:198
int interlaced
Definition: utvideo.h:74
static int decode(MimicContext *ctx, int quality, int num_coeffs, int is_iframe)
Definition: mimic.c:269
void void avpriv_request_sample(void *avc, const char *msg,...) av_printf_format(2
Log a generic warning message about a missing feature.
int ff_init_vlc_sparse(VLC *vlc, int nb_bits, int nb_codes, const void *bits, int bits_wrap, int bits_size, const void *codes, int codes_wrap, int codes_size, const void *symbols, int symbols_wrap, int symbols_size, int flags)
Definition: bitstream.c:266
uint8_t bits
Definition: crc.c:216
uint8_t
#define av_cold
Definition: attributes.h:66
#define AV_RB32
Definition: intreadwrite.h:130
Multithreading support functions.
#define b
Definition: input.c:52
uint8_t * extradata
some codecs need / can use extradata like Huffman tables.
Definition: avcodec.h:1162
uint32_t frame_info
Definition: utvideo.h:70
static void restore_median_il(uint8_t *src, int step, int stride, int width, int height, int slices, int rmode)
Definition: utvideodec.c:257
#define CODEC_CAP_DR1
Codec uses get_buffer() for allocating buffers and supports custom allocators.
Definition: avcodec.h:711
const char data[16]
Definition: mxf.c:66
uint8_t * data
Definition: avcodec.h:973
const uint8_t * buffer
Definition: bytestream.h:33
static av_always_inline void bytestream2_skipu(GetByteContext *g, unsigned int size)
Definition: bytestream.h:165
bitstream reader API header.
int interlaced_frame
The content of the picture is interlaced.
Definition: frame.h:292
void ff_thread_finish_setup(AVCodecContext *avctx)
If the codec defines update_thread_context(), call this when they are ready for the next thread to st...
const int ff_ut_rgb_order[4]
Definition: utvideo.c:33
#define r
Definition: input.c:51
static int build_huff(const uint8_t *src, VLC *vlc, int *fsym)
Definition: utvideodec.c:37
static int get_bits_left(GetBitContext *gb)
Definition: get_bits.h:555
#define AV_LOG_ERROR
Something went wrong and cannot losslessly be recovered.
Definition: log.h:123
static av_cold int decode_init(AVCodecContext *avctx)
Definition: utvideodec.c:474
void(* bswap_buf)(uint32_t *dst, const uint32_t *src, int w)
Definition: dsputil.h:202
#define AVERROR(e)
Definition: error.h:43
uint8_t sym
Definition: utvideo.h:83
#define NULL_IF_CONFIG_SMALL(x)
Return NULL if CONFIG_SMALL is true, otherwise the argument without modification. ...
Definition: internal.h:142
AVCodecContext * avctx
Definition: utvideo.h:67
g
Definition: yuv2rgb.c:535
#define AV_LOG_DEBUG
Stuff which is only useful for libav* developers.
Definition: log.h:144
static av_always_inline unsigned int bytestream2_get_bytes_left(GetByteContext *g)
Definition: bytestream.h:149
void av_log(void *avcl, int level, const char *fmt,...)
Definition: log.c:148
const char * name
Name of the codec implementation.
Definition: avcodec.h:2762
uint32_t frame_info_size
Definition: utvideo.h:70
#define FFMAX(a, b)
Definition: common.h:55
packed RGBA 8:8:8:8, 32bpp, RGBARGBA...
Definition: pixfmt.h:96
Definition: get_bits.h:64
planar YUV 4:2:2, 16bpp, (1 Cr & Cb sample per 2x1 Y samples)
Definition: pixfmt.h:69
#define FF_INPUT_BUFFER_PADDING_SIZE
Required number of additionally allocated bytes at the end of the input bitstream for decoding...
Definition: avcodec.h:509
int compression
Definition: utvideo.h:73
DSPContext dsp
Definition: utvideo.h:68
enum AVPictureType pict_type
Picture type of the frame.
Definition: frame.h:168
#define FFMIN(a, b)
Definition: common.h:57
int width
picture width / height.
Definition: avcodec.h:1217
static av_always_inline int get_vlc2(GetBitContext *s, VLC_TYPE(*table)[2], int bits, int max_depth)
Parse a vlc code.
Definition: get_bits.h:522
#define AV_RL32
Definition: intreadwrite.h:146
Definition: vf_drawbox.c:37
int bits
Definition: get_bits.h:65
#define AVERROR_PATCHWELCOME
Not yet implemented in Libav, patches welcome.
Definition: error.h:57
static void restore_rgb_planes(uint8_t *src, int step, int stride, int width, int height)
Definition: utvideodec.c:183
static int decode_frame(AVCodecContext *avctx, void *data, int *got_frame, AVPacket *avpkt)
Definition: utvideodec.c:327
Common Ut Video header.
static int width
Definition: utils.c:156
int frame_pred
Definition: utvideo.h:75
uint8_t len
Definition: utvideo.h:84
also ITU-R BT1361 / IEC 61966-2-4 xvYCC709 / SMPTE RP177 Annex B
Definition: avcodec.h:581
Libavcodec external API header.
int linesize[AV_NUM_DATA_POINTERS]
For video, size in bytes of each picture line.
Definition: frame.h:125
int ff_thread_get_buffer(AVCodecContext *avctx, ThreadFrame *f, int flags)
Wrapper around get_buffer() for frame-multithreaded codecs.
main external API structure.
Definition: avcodec.h:1054
static void close(AVCodecParserContext *s)
Definition: h264_parser.c:489
unsigned int codec_tag
fourcc (LSB first, so "ABCD" -> ('D'<<24) + ('C'<<16) + ('B'<<8) + 'A').
Definition: avcodec.h:1080
int extradata_size
Definition: avcodec.h:1163
enum AVColorSpace colorspace
YUV colorspace type.
Definition: avcodec.h:1747
static int init_get_bits(GetBitContext *s, const uint8_t *buffer, int bit_size)
Initialize GetBitContext.
Definition: get_bits.h:375
#define mid_pred
Definition: mathops.h:94
static int step
Definition: avplay.c:247
uint8_t * slice_bits
Definition: utvideo.h:78
int ff_ut_huff_cmp_len(const void *a, const void *b)
Definition: utvideo.c:35
uint8_t * data[AV_NUM_DATA_POINTERS]
pointer to the picture/channel planes.
Definition: frame.h:113
int height
Definition: gxfenc.c:72
void av_fast_malloc(void *ptr, unsigned int *size, size_t min_size)
Allocate a buffer, reusing the given one if large enough.
Definition: mem.c:368
planar YUV 4:2:0, 12bpp, (1 Cr & Cb sample per 2x2 Y samples)
Definition: pixfmt.h:65
#define CODEC_CAP_FRAME_THREADS
Codec supports frame-level multithreading.
Definition: avcodec.h:782
static av_cold int init(AVCodecParserContext *s)
Definition: h264_parser.c:498
DSP utils.
static int slice_end(AVCodecContext *avctx, AVFrame *pict)
Handle slice ends.
Definition: mpeg12dec.c:1986
void * priv_data
Definition: avcodec.h:1090
int len
VLC_TYPE(* table)[2]
code, bits
Definition: get_bits.h:66
int key_frame
1 -> keyframe, 0-> not
Definition: frame.h:163
also ITU-R BT601-6 625 / ITU-R BT1358 625 / ITU-R BT1700 625 PAL & SECAM / IEC 61966-2-4 xvYCC601 ...
Definition: avcodec.h:584
#define MKTAG(a, b, c, d)
Definition: common.h:238
AVCodec ff_utvideo_decoder
Definition: utvideodec.c:553
This structure stores compressed data.
Definition: avcodec.h:950
void ff_free_vlc(VLC *vlc)
Definition: bitstream.c:333