FFmpeg  4.4.7
notchlc.c
Go to the documentation of this file.
1 /*
2  * NotchLC decoder
3  * Copyright (c) 2020 Paul B Mahol
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 <stdio.h>
23 #include <stdlib.h>
24 #include <string.h>
25 
26 #define BITSTREAM_READER_LE
27 #include "libavutil/intreadwrite.h"
28 #include "avcodec.h"
29 #include "bytestream.h"
30 #include "get_bits.h"
31 #include "internal.h"
32 #include "lzf.h"
33 #include "thread.h"
34 
35 typedef struct NotchLCContext {
36  unsigned compressed_size;
37  unsigned format;
38 
41 
44 
45  unsigned texture_size_x;
46  unsigned texture_size_y;
51  unsigned y_data_offset;
52  unsigned uv_data_offset;
53  unsigned y_data_size;
54  unsigned a_data_offset;
55  unsigned uv_count_offset;
56  unsigned a_count_size;
57  unsigned data_end;
58 
62 
64 {
67  avctx->colorspace = AVCOL_SPC_RGB;
70 
71  return 0;
72 }
73 
74 #define HISTORY_SIZE (64 * 1024)
75 
76 static int lz4_decompress(AVCodecContext *avctx,
77  GetByteContext *gb,
78  PutByteContext *pb)
79 {
80  unsigned reference_pos, match_length, delta, pos = 0;
81  uint8_t history[64 * 1024] = { 0 };
82 
83  while (bytestream2_get_bytes_left(gb) > 0) {
84  uint8_t token = bytestream2_get_byte(gb);
85  unsigned num_literals = token >> 4;
86 
87  if (num_literals == 15) {
88  unsigned char current;
89  do {
90  current = bytestream2_get_byte(gb);
91  if (current > INT_MAX - num_literals)
92  return AVERROR_INVALIDDATA;
93  num_literals += current;
94  } while (current == 255);
95  }
96 
97  if (bytestream2_get_bytes_left(gb) < num_literals)
98  return AVERROR_INVALIDDATA;
99 
100  if (pos + num_literals < HISTORY_SIZE) {
101  bytestream2_get_buffer(gb, history + pos, num_literals);
102  pos += num_literals;
103  } else {
104  while (num_literals-- > 0) {
105  history[pos++] = bytestream2_get_byte(gb);
106  if (pos == HISTORY_SIZE) {
107  bytestream2_put_buffer(pb, history, HISTORY_SIZE);
108  pos = 0;
109  }
110  }
111  }
112 
113  if (bytestream2_get_bytes_left(gb) <= 0)
114  break;
115 
116  delta = bytestream2_get_le16(gb);
117  if (delta == 0)
118  return 0;
119  match_length = 4 + (token & 0x0F);
120  if (match_length == 4 + 0x0F) {
121  uint8_t current;
122 
123  do {
124  current = bytestream2_get_byte(gb);
125  if (current > INT_MAX - match_length)
126  return AVERROR_INVALIDDATA;
127  match_length += current;
128  } while (current == 255);
129  }
130  reference_pos = (pos >= delta) ? (pos - delta) : (HISTORY_SIZE + pos - delta);
131  if (pos + match_length < HISTORY_SIZE && reference_pos + match_length < HISTORY_SIZE) {
132  if (pos >= reference_pos + match_length || reference_pos >= pos + match_length) {
133  memcpy(history + pos, history + reference_pos, match_length);
134  pos += match_length;
135  } else {
136  while (match_length-- > 0)
137  history[pos++] = history[reference_pos++];
138  }
139  } else {
140  while (match_length-- > 0) {
141  history[pos++] = history[reference_pos++];
142  if (pos == HISTORY_SIZE) {
143  bytestream2_put_buffer(pb, history, HISTORY_SIZE);
144  pos = 0;
145  }
146  reference_pos %= HISTORY_SIZE;
147  }
148  }
149  }
150 
151  bytestream2_put_buffer(pb, history, pos);
152 
153  return bytestream2_tell_p(pb);
154 }
155 
157  unsigned uncompressed_size)
158 {
159  NotchLCContext *s = avctx->priv_data;
160  GetByteContext rgb, dgb, *gb = &s->gb;
162  int ylinesize, ulinesize, vlinesize, alinesize;
163  uint16_t *dsty, *dstu, *dstv, *dsta;
164  int ret;
165 
166  s->texture_size_x = bytestream2_get_le32(gb);
167  s->texture_size_y = bytestream2_get_le32(gb);
168 
169  ret = ff_set_dimensions(avctx, s->texture_size_x, s->texture_size_y);
170  if (ret < 0)
171  return ret;
172 
173  s->uv_offset_data_offset = bytestream2_get_le32(gb);
174  if (s->uv_offset_data_offset >= UINT_MAX / 4)
175  return AVERROR_INVALIDDATA;
176  s->uv_offset_data_offset *= 4;
177  if (s->uv_offset_data_offset >= uncompressed_size)
178  return AVERROR_INVALIDDATA;
179 
180  s->y_control_data_offset = bytestream2_get_le32(gb);
181  if (s->y_control_data_offset >= UINT_MAX / 4)
182  return AVERROR_INVALIDDATA;
183  s->y_control_data_offset *= 4;
184  if (s->y_control_data_offset >= uncompressed_size)
185  return AVERROR_INVALIDDATA;
186 
187  s->a_control_word_offset = bytestream2_get_le32(gb);
188  if (s->a_control_word_offset >= UINT_MAX / 4)
189  return AVERROR_INVALIDDATA;
190  s->a_control_word_offset *= 4;
191  if (s->a_control_word_offset >= uncompressed_size)
192  return AVERROR_INVALIDDATA;
193 
194  s->uv_data_offset = bytestream2_get_le32(gb);
195  if (s->uv_data_offset >= UINT_MAX / 4)
196  return AVERROR_INVALIDDATA;
197  s->uv_data_offset *= 4;
198  if (s->uv_data_offset >= uncompressed_size)
199  return AVERROR_INVALIDDATA;
200 
201  s->y_data_size = bytestream2_get_le32(gb);
202  if (s->y_data_size >= UINT_MAX / 4)
203  return AVERROR_INVALIDDATA;
204 
205  s->a_data_offset = bytestream2_get_le32(gb);
206  if (s->a_data_offset >= UINT_MAX / 4)
207  return AVERROR_INVALIDDATA;
208  s->a_data_offset *= 4;
209  if (s->a_data_offset >= uncompressed_size)
210  return AVERROR_INVALIDDATA;
211 
212  s->a_count_size = bytestream2_get_le32(gb);
213  if (s->a_count_size >= UINT_MAX / 4)
214  return AVERROR_INVALIDDATA;
215  s->a_count_size *= 4;
216  if (s->a_count_size >= uncompressed_size)
217  return AVERROR_INVALIDDATA;
218 
219  s->data_end = bytestream2_get_le32(gb);
220  if (s->data_end > uncompressed_size)
221  return AVERROR_INVALIDDATA;
222 
223  s->y_data_row_offsets = bytestream2_tell(gb);
224  if (s->data_end <= s->y_data_size)
225  return AVERROR_INVALIDDATA;
226  s->y_data_offset = s->data_end - s->y_data_size;
227  if (s->y_data_offset <= s->a_data_offset)
228  return AVERROR_INVALIDDATA;
229  s->uv_count_offset = s->y_data_offset - s->a_data_offset;
230 
231  if ((ret = ff_thread_get_buffer(avctx, frame, 0)) < 0)
232  return ret;
233 
234  rgb = *gb;
235  dgb = *gb;
236  bytestream2_seek(&rgb, s->y_data_row_offsets, SEEK_SET);
237  bytestream2_seek(gb, s->y_control_data_offset, SEEK_SET);
238 
239  if (bytestream2_get_bytes_left(gb) < (avctx->height + 3) / 4 * ((avctx->width + 3) / 4) * 4)
240  return AVERROR_INVALIDDATA;
241 
242  dsty = (uint16_t *)p->data[0];
243  dsta = (uint16_t *)p->data[3];
244  ylinesize = p->linesize[0] / 2;
245  alinesize = p->linesize[3] / 2;
246 
247  for (int y = 0; y < avctx->height; y += 4) {
248  const unsigned row_offset = bytestream2_get_le32(&rgb);
249 
250  bytestream2_seek(&dgb, s->y_data_offset + row_offset, SEEK_SET);
251 
253  if (ret < 0)
254  return ret;
255  for (int x = 0; x < avctx->width; x += 4) {
256  unsigned item = bytestream2_get_le32(gb);
257  unsigned y_min = item & 4095;
258  unsigned y_max = (item >> 12) & 4095;
259  unsigned y_diff = y_max - y_min;
260  unsigned control[4];
261 
262  control[0] = (item >> 24) & 3;
263  control[1] = (item >> 26) & 3;
264  control[2] = (item >> 28) & 3;
265  control[3] = (item >> 30) & 3;
266 
267  for (int i = 0; i < 4; i++) {
268  const int nb_bits = control[i] + 1;
269  const int div = (1 << nb_bits) - 1;
270  const int add = div - 1;
271 
272  dsty[x + i * ylinesize + 0] = av_clip_uintp2(y_min + ((y_diff * get_bits(&bit, nb_bits) + add) / div), 12);
273  dsty[x + i * ylinesize + 1] = av_clip_uintp2(y_min + ((y_diff * get_bits(&bit, nb_bits) + add) / div), 12);
274  dsty[x + i * ylinesize + 2] = av_clip_uintp2(y_min + ((y_diff * get_bits(&bit, nb_bits) + add) / div), 12);
275  dsty[x + i * ylinesize + 3] = av_clip_uintp2(y_min + ((y_diff * get_bits(&bit, nb_bits) + add) / div), 12);
276  }
277  }
278 
279  dsty += 4 * ylinesize;
280  }
281 
282  rgb = *gb;
283  dgb = *gb;
284  bytestream2_seek(gb, s->a_control_word_offset, SEEK_SET);
285  if (s->uv_count_offset == s->a_control_word_offset) {
286  for (int y = 0; y < avctx->height; y++) {
287  for (int x = 0; x < avctx->width; x++)
288  dsta[x] = 4095;
289  dsta += alinesize;
290  }
291  } else {
292  if (bytestream2_get_bytes_left(gb) < (avctx->height + 15) / 16 * ((avctx->width + 15) / 16) * 8)
293  return AVERROR_INVALIDDATA;
294 
295  for (int y = 0; y < avctx->height; y += 16) {
296  for (int x = 0; x < avctx->width; x += 16) {
297  unsigned m = bytestream2_get_le32(gb);
298  unsigned offset = bytestream2_get_le32(gb);
299  unsigned alpha0, alpha1;
300  uint64_t control;
301 
302  if (offset >= UINT_MAX / 4)
303  return AVERROR_INVALIDDATA;
304  offset = offset * 4 + s->uv_data_offset + s->a_data_offset;
305  if (offset >= s->data_end)
306  return AVERROR_INVALIDDATA;
307 
308  bytestream2_seek(&dgb, offset, SEEK_SET);
309  control = bytestream2_get_le64(&dgb);
310  alpha0 = control & 0xFF;
311  alpha1 = (control >> 8) & 0xFF;
312  control = control >> 16;
313 
314  for (int by = 0; by < 4; by++) {
315  for (int bx = 0; bx < 4; bx++) {
316  switch (m & 3) {
317  case 0:
318  for (int i = 0; i < 4; i++) {
319  for (int j = 0; j < 4; j++) {
320  dsta[x + (i + by * 4) * alinesize + bx * 4 + j] = 0;
321  }
322  }
323  break;
324  case 1:
325  for (int i = 0; i < 4; i++) {
326  for (int j = 0; j < 4; j++) {
327  dsta[x + (i + by * 4) * alinesize + bx * 4 + j] = 4095;
328  }
329  }
330  break;
331  case 2:
332  for (int i = 0; i < 4; i++) {
333  for (int j = 0; j < 4; j++) {
334  dsta[x + (i + by * 4) * alinesize + bx * 4 + j] = (alpha0 + (alpha1 - alpha0) * (control & 7)) << 4;
335  }
336  }
337  break;
338  default:
339  return AVERROR_INVALIDDATA;
340  }
341 
342  control >>= 3;
343  m >>= 2;
344  }
345  }
346  }
347 
348  dsta += 16 * alinesize;
349  }
350  }
351 
352  bytestream2_seek(&rgb, s->uv_offset_data_offset, SEEK_SET);
353 
354  dstu = (uint16_t *)p->data[1];
355  dstv = (uint16_t *)p->data[2];
356  ulinesize = p->linesize[1] / 2;
357  vlinesize = p->linesize[2] / 2;
358 
359  for (int y = 0; y < avctx->height; y += 16) {
360  for (int x = 0; x < avctx->width; x += 16) {
361  unsigned offset = bytestream2_get_le32(&rgb) * 4;
362  int u[16][16] = { 0 }, v[16][16] = { 0 };
363  int u0, v0, u1, v1, udif, vdif;
364  unsigned escape, is8x8, loc;
365 
366  bytestream2_seek(&dgb, s->uv_data_offset + offset, SEEK_SET);
367 
368  is8x8 = bytestream2_get_le16(&dgb);
369  escape = bytestream2_get_le16(&dgb);
370 
371  if (escape == 0 && is8x8 == 0) {
372  u0 = bytestream2_get_byte(&dgb);
373  v0 = bytestream2_get_byte(&dgb);
374  u1 = bytestream2_get_byte(&dgb);
375  v1 = bytestream2_get_byte(&dgb);
376  loc = bytestream2_get_le32(&dgb);
377  u0 = (u0 << 4) | (u0 & 0xF);
378  v0 = (v0 << 4) | (v0 & 0xF);
379  u1 = (u1 << 4) | (u1 & 0xF);
380  v1 = (v1 << 4) | (v1 & 0xF);
381  udif = u1 - u0;
382  vdif = v1 - v0;
383 
384  for (int i = 0; i < 16; i += 4) {
385  for (int j = 0; j < 16; j += 4) {
386  for (int ii = 0; ii < 4; ii++) {
387  for (int jj = 0; jj < 4; jj++) {
388  u[i + ii][j + jj] = u0 + ((udif * (int)(loc & 3) + 2) / 3);
389  v[i + ii][j + jj] = v0 + ((vdif * (int)(loc & 3) + 2) / 3);
390  }
391  }
392 
393  loc >>= 2;
394  }
395  }
396  } else {
397  for (int i = 0; i < 16; i += 8) {
398  for (int j = 0; j < 16; j += 8) {
399  if (is8x8 & 1) {
400  u0 = bytestream2_get_byte(&dgb);
401  v0 = bytestream2_get_byte(&dgb);
402  u1 = bytestream2_get_byte(&dgb);
403  v1 = bytestream2_get_byte(&dgb);
404  loc = bytestream2_get_le32(&dgb);
405  u0 = (u0 << 4) | (u0 & 0xF);
406  v0 = (v0 << 4) | (v0 & 0xF);
407  u1 = (u1 << 4) | (u1 & 0xF);
408  v1 = (v1 << 4) | (v1 & 0xF);
409  udif = u1 - u0;
410  vdif = v1 - v0;
411 
412  for (int ii = 0; ii < 8; ii += 2) {
413  for (int jj = 0; jj < 8; jj += 2) {
414  for (int iii = 0; iii < 2; iii++) {
415  for (int jjj = 0; jjj < 2; jjj++) {
416  u[i + ii + iii][j + jj + jjj] = u0 + ((udif * (int)(loc & 3) + 2) / 3);
417  v[i + ii + iii][j + jj + jjj] = v0 + ((vdif * (int)(loc & 3) + 2) / 3);
418  }
419  }
420 
421  loc >>= 2;
422  }
423  }
424  } else if (escape) {
425  for (int ii = 0; ii < 8; ii += 4) {
426  for (int jj = 0; jj < 8; jj += 4) {
427  u0 = bytestream2_get_byte(&dgb);
428  v0 = bytestream2_get_byte(&dgb);
429  u1 = bytestream2_get_byte(&dgb);
430  v1 = bytestream2_get_byte(&dgb);
431  loc = bytestream2_get_le32(&dgb);
432  u0 = (u0 << 4) | (u0 & 0xF);
433  v0 = (v0 << 4) | (v0 & 0xF);
434  u1 = (u1 << 4) | (u1 & 0xF);
435  v1 = (v1 << 4) | (v1 & 0xF);
436  udif = u1 - u0;
437  vdif = v1 - v0;
438 
439  for (int iii = 0; iii < 4; iii++) {
440  for (int jjj = 0; jjj < 4; jjj++) {
441  u[i + ii + iii][j + jj + jjj] = u0 + ((udif * (int)(loc & 3) + 2) / 3);
442  v[i + ii + iii][j + jj + jjj] = v0 + ((vdif * (int)(loc & 3) + 2) / 3);
443 
444  loc >>= 2;
445  }
446  }
447  }
448  }
449  }
450 
451  is8x8 >>= 1;
452  }
453  }
454  }
455 
456  for (int i = 0; i < 16; i++) {
457  for (int j = 0; j < 16; j++) {
458  dstu[x + i * ulinesize + j] = u[i][j];
459  dstv[x + i * vlinesize + j] = v[i][j];
460  }
461  }
462  }
463 
464  dstu += 16 * ulinesize;
465  dstv += 16 * vlinesize;
466  }
467 
468  return 0;
469 }
470 
471 static int decode_frame(AVCodecContext *avctx,
472  void *data, int *got_frame,
473  AVPacket *avpkt)
474 {
475  NotchLCContext *s = avctx->priv_data;
476  ThreadFrame frame = { .f = data };
477  GetByteContext *gb = &s->gb;
478  PutByteContext *pb = &s->pb;
479  unsigned uncompressed_size;
480  AVFrame *p = data;
481  int ret;
482 
483  if (avpkt->size <= 40)
484  return AVERROR_INVALIDDATA;
485 
486  bytestream2_init(gb, avpkt->data, avpkt->size);
487 
488  if (bytestream2_get_le32(gb) != MKBETAG('N','L','C','1'))
489  return AVERROR_INVALIDDATA;
490 
491  uncompressed_size = bytestream2_get_le32(gb);
492  s->compressed_size = bytestream2_get_le32(gb);
493  s->format = bytestream2_get_le32(gb);
494 
495  if (s->format > 2)
496  return AVERROR_PATCHWELCOME;
497 
498  if (s->format == 0) {
499  ret = ff_lzf_uncompress(gb, &s->lzf_buffer, &s->lzf_size);
500  if (ret < 0)
501  return ret;
502 
503  if (uncompressed_size > s->lzf_size)
504  return AVERROR_INVALIDDATA;
505 
506  bytestream2_init(gb, s->lzf_buffer, uncompressed_size);
507  } else if (s->format == 1) {
508  if (bytestream2_get_bytes_left(gb) < uncompressed_size / 255)
509  return AVERROR_INVALIDDATA;
510 
511  av_fast_padded_malloc(&s->uncompressed_buffer, &s->uncompressed_size,
512  uncompressed_size);
513  if (!s->uncompressed_buffer)
514  return AVERROR(ENOMEM);
515 
516  bytestream2_init_writer(pb, s->uncompressed_buffer, s->uncompressed_size);
517 
518  ret = lz4_decompress(avctx, gb, pb);
519  if (ret != uncompressed_size)
520  return AVERROR_INVALIDDATA;
521 
522  bytestream2_init(gb, s->uncompressed_buffer, uncompressed_size);
523  }
524 
525  ret = decode_blocks(avctx, p, &frame, uncompressed_size);
526  if (ret < 0)
527  return ret;
528 
530  p->key_frame = 1;
531 
532  *got_frame = 1;
533 
534  return avpkt->size;
535 }
536 
538 {
539  NotchLCContext *s = avctx->priv_data;
540 
541  av_freep(&s->uncompressed_buffer);
542  s->uncompressed_size = 0;
543  av_freep(&s->lzf_buffer);
544  s->lzf_size = 0;
545 
546  return 0;
547 }
548 
550  .name = "notchlc",
551  .long_name = NULL_IF_CONFIG_SMALL("NotchLC"),
552  .type = AVMEDIA_TYPE_VIDEO,
553  .id = AV_CODEC_ID_NOTCHLC,
554  .priv_data_size = sizeof(NotchLCContext),
555  .init = decode_init,
556  .close = decode_end,
557  .decode = decode_frame,
559 };
#define av_cold
Definition: attributes.h:88
uint8_t
Libavcodec external API header.
static av_cold int init(AVCodecContext *avctx)
Definition: avrndec.c:31
static av_always_inline unsigned int bytestream2_get_buffer(GetByteContext *g, uint8_t *dst, unsigned int size)
Definition: bytestream.h:267
static av_always_inline void bytestream2_init_writer(PutByteContext *p, uint8_t *buf, int buf_size)
Definition: bytestream.h:147
static av_always_inline int bytestream2_tell_p(PutByteContext *p)
Definition: bytestream.h:197
static av_always_inline int bytestream2_get_bytes_left(GetByteContext *g)
Definition: bytestream.h:158
static av_always_inline void bytestream2_init(GetByteContext *g, const uint8_t *buf, int buf_size)
Definition: bytestream.h:137
static av_always_inline int bytestream2_seek(GetByteContext *g, int offset, int whence)
Definition: bytestream.h:212
static av_always_inline int bytestream2_tell(GetByteContext *g)
Definition: bytestream.h:192
static av_always_inline unsigned int bytestream2_put_buffer(PutByteContext *p, const uint8_t *src, unsigned int size)
Definition: bytestream.h:286
#define u(width, name, range_min, range_max)
Definition: cbs_h2645.c:264
#define bit(string, value)
Definition: cbs_mpeg2.c:58
#define s(width, name)
Definition: cbs_vp9.c:257
#define MKBETAG(a, b, c, d)
Definition: common.h:479
#define av_clip_uintp2
Definition: common.h:146
long long int64_t
Definition: coverity.c:34
static void decode(AVCodecContext *dec_ctx, AVPacket *pkt, AVFrame *frame, FILE *outfile)
Definition: decode_audio.c:71
static AVFrame * frame
static float add(float src0, float src1)
int
bitstream reader API header.
static int init_get_bits8(GetBitContext *s, const uint8_t *buffer, int byte_size)
Initialize GetBitContext.
Definition: get_bits.h:677
static unsigned int get_bits(GetBitContext *s, int n)
Read 1-25 bits.
Definition: get_bits.h:379
#define AV_CODEC_CAP_DR1
Codec uses get_buffer() or get_encode_buffer() for allocating buffers and supports custom allocators.
Definition: codec.h:52
#define AV_CODEC_CAP_FRAME_THREADS
Codec supports frame-level multithreading.
Definition: codec.h:108
@ AV_CODEC_ID_NOTCHLC
Definition: codec_id.h:301
void av_fast_padded_malloc(void *ptr, unsigned int *size, size_t min_size)
Same behaviour av_fast_malloc but the buffer has additional AV_INPUT_BUFFER_PADDING_SIZE at the end w...
Definition: utils.c:50
#define AVERROR_PATCHWELCOME
Not yet implemented in FFmpeg, patches welcome.
Definition: error.h:62
#define AVERROR_INVALIDDATA
Invalid data found when processing input.
Definition: error.h:59
#define AVERROR(e)
Definition: error.h:43
@ AVMEDIA_TYPE_VIDEO
Definition: avutil.h:201
@ AV_PICTURE_TYPE_I
Intra.
Definition: avutil.h:274
int i
Definition: input.c:407
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:84
common internal API header
#define NULL_IF_CONFIG_SMALL(x)
Return NULL if CONFIG_SMALL is true, otherwise the argument without modification.
Definition: internal.h:117
int ff_lzf_uncompress(GetByteContext *gb, uint8_t **buf, int64_t *size)
Definition: lzf.c:40
const char data[16]
Definition: mxf.c:142
#define HISTORY_SIZE
Definition: notchlc.c:74
AVCodec ff_notchlc_decoder
Definition: notchlc.c:549
static int decode_blocks(AVCodecContext *avctx, AVFrame *p, ThreadFrame *frame, unsigned uncompressed_size)
Definition: notchlc.c:156
static av_cold int decode_init(AVCodecContext *avctx)
Definition: notchlc.c:63
static av_cold int decode_end(AVCodecContext *avctx)
Definition: notchlc.c:537
static int decode_frame(AVCodecContext *avctx, void *data, int *got_frame, AVPacket *avpkt)
Definition: notchlc.c:471
static int lz4_decompress(AVCodecContext *avctx, GetByteContext *gb, PutByteContext *pb)
Definition: notchlc.c:76
@ AVCOL_RANGE_JPEG
Full range content.
Definition: pixfmt.h:586
@ AVCOL_PRI_BT709
also ITU-R BT1361 / IEC 61966-2-4 / SMPTE RP177 Annex B
Definition: pixfmt.h:460
@ AVCOL_TRC_IEC61966_2_1
IEC 61966-2-1 (sRGB or sYCC)
Definition: pixfmt.h:497
#define AV_PIX_FMT_YUVA444P12
Definition: pixfmt.h:440
@ AVCOL_SPC_RGB
order of coefficients is actually GBR, also IEC 61966-2-1 (sRGB)
Definition: pixfmt.h:513
FF_ENABLE_DEPRECATION_WARNINGS int ff_thread_get_buffer(AVCodecContext *avctx, ThreadFrame *f, int flags)
Wrapper around get_buffer() for frame-multithreaded codecs.
#define v0
Definition: regdef.h:26
static const SheerTable rgb[2]
unsigned int pos
Definition: spdifenc.c:412
main external API structure.
Definition: avcodec.h:536
enum AVPixelFormat pix_fmt
Pixel format, see AV_PIX_FMT_xxx.
Definition: avcodec.h:746
int width
picture width / height.
Definition: avcodec.h:709
enum AVColorRange color_range
MPEG vs JPEG YUV range.
Definition: avcodec.h:1171
enum AVColorPrimaries color_primaries
Chromaticity coordinates of the source primaries.
Definition: avcodec.h:1150
enum AVColorSpace colorspace
YUV colorspace type.
Definition: avcodec.h:1164
enum AVColorTransferCharacteristic color_trc
Color Transfer Characteristic.
Definition: avcodec.h:1157
void * priv_data
Definition: avcodec.h:563
AVCodec.
Definition: codec.h:197
const char * name
Name of the codec implementation.
Definition: codec.h:204
This structure describes decoded (raw) audio or video data.
Definition: frame.h:318
uint8_t * data[AV_NUM_DATA_POINTERS]
pointer to the picture/channel planes.
Definition: frame.h:332
int key_frame
1 -> keyframe, 0-> not
Definition: frame.h:396
int linesize[AV_NUM_DATA_POINTERS]
For video, size in bytes of each picture line.
Definition: frame.h:349
enum AVPictureType pict_type
Picture type of the frame.
Definition: frame.h:401
This structure stores compressed data.
Definition: packet.h:346
int size
Definition: packet.h:370
uint8_t * data
Definition: packet.h:369
const uint8_t * buffer
Definition: bytestream.h:34
uint8_t * uncompressed_buffer
Definition: notchlc.c:39
unsigned y_data_offset
Definition: notchlc.c:51
unsigned uncompressed_size
Definition: notchlc.c:40
unsigned a_count_size
Definition: notchlc.c:56
unsigned format
Definition: notchlc.c:37
unsigned texture_size_x
Definition: notchlc.c:45
unsigned y_control_data_offset
Definition: notchlc.c:49
unsigned uv_count_offset
Definition: notchlc.c:55
uint8_t * lzf_buffer
Definition: notchlc.c:42
PutByteContext pb
Definition: notchlc.c:60
unsigned uv_data_offset
Definition: notchlc.c:52
int64_t lzf_size
Definition: notchlc.c:43
GetByteContext gb
Definition: notchlc.c:59
unsigned uv_offset_data_offset
Definition: notchlc.c:48
unsigned texture_size_y
Definition: notchlc.c:46
unsigned a_data_offset
Definition: notchlc.c:54
unsigned y_data_row_offsets
Definition: notchlc.c:47
unsigned a_control_word_offset
Definition: notchlc.c:50
unsigned data_end
Definition: notchlc.c:57
unsigned y_data_size
Definition: notchlc.c:53
unsigned compressed_size
Definition: notchlc.c:36
Definition: rpzaenc.c:58
#define av_freep(p)
static const uint8_t offset[127][2]
Definition: vf_spp.c:107
float delta