26 #define BITSTREAM_READER_LE
74 #define HISTORY_SIZE (64 * 1024)
80 unsigned reference_pos, match_length,
delta,
pos = 0;
81 uint8_t history[64 * 1024] = { 0 };
84 uint8_t token = bytestream2_get_byte(gb);
85 unsigned num_literals = token >> 4;
87 if (num_literals == 15) {
88 unsigned char current;
90 current = bytestream2_get_byte(gb);
91 if (current > INT_MAX - num_literals)
93 num_literals += current;
94 }
while (current == 255);
104 while (num_literals-- > 0) {
105 history[
pos++] = bytestream2_get_byte(gb);
116 delta = bytestream2_get_le16(gb);
119 match_length = 4 + (token & 0x0F);
120 if (match_length == 4 + 0x0F) {
124 current = bytestream2_get_byte(gb);
125 if (current > INT_MAX - match_length)
127 match_length += current;
128 }
while (current == 255);
132 if (
pos >= reference_pos + match_length || reference_pos >=
pos + match_length) {
133 memcpy(history +
pos, history + reference_pos, match_length);
136 while (match_length-- > 0)
137 history[
pos++] = history[reference_pos++];
140 while (match_length-- > 0) {
141 history[
pos++] = history[reference_pos++];
157 unsigned uncompressed_size)
162 int ylinesize, ulinesize, vlinesize, alinesize;
163 uint16_t *dsty, *dstu, *dstv, *dsta;
166 s->texture_size_x = bytestream2_get_le32(gb);
167 s->texture_size_y = bytestream2_get_le32(gb);
173 s->uv_offset_data_offset = bytestream2_get_le32(gb);
174 if (
s->uv_offset_data_offset >= UINT_MAX / 4)
176 s->uv_offset_data_offset *= 4;
177 if (
s->uv_offset_data_offset >= uncompressed_size)
180 s->y_control_data_offset = bytestream2_get_le32(gb);
181 if (
s->y_control_data_offset >= UINT_MAX / 4)
183 s->y_control_data_offset *= 4;
184 if (
s->y_control_data_offset >= uncompressed_size)
187 s->a_control_word_offset = bytestream2_get_le32(gb);
188 if (
s->a_control_word_offset >= UINT_MAX / 4)
190 s->a_control_word_offset *= 4;
191 if (
s->a_control_word_offset >= uncompressed_size)
194 s->uv_data_offset = bytestream2_get_le32(gb);
195 if (
s->uv_data_offset >= UINT_MAX / 4)
197 s->uv_data_offset *= 4;
198 if (
s->uv_data_offset >= uncompressed_size)
201 s->y_data_size = bytestream2_get_le32(gb);
202 if (
s->y_data_size >= UINT_MAX / 4)
205 s->a_data_offset = bytestream2_get_le32(gb);
206 if (
s->a_data_offset >= UINT_MAX / 4)
208 s->a_data_offset *= 4;
209 if (
s->a_data_offset >= uncompressed_size)
212 s->a_count_size = bytestream2_get_le32(gb);
213 if (
s->a_count_size >= UINT_MAX / 4)
215 s->a_count_size *= 4;
216 if (
s->a_count_size >= uncompressed_size)
219 s->data_end = bytestream2_get_le32(gb);
220 if (
s->data_end > uncompressed_size)
224 if (
s->data_end <=
s->y_data_size)
226 s->y_data_offset =
s->data_end -
s->y_data_size;
227 if (
s->y_data_offset <=
s->a_data_offset)
229 s->uv_count_offset =
s->y_data_offset -
s->a_data_offset;
242 dsty = (uint16_t *)p->
data[0];
243 dsta = (uint16_t *)p->
data[3];
247 for (
int y = 0; y < avctx->
height; y += 4) {
248 const unsigned row_offset = bytestream2_get_le32(&
rgb);
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;
262 control[0] = (item >> 24) & 3;
263 control[1] = (item >> 26) & 3;
264 control[2] = (item >> 28) & 3;
265 control[3] = (item >> 30) & 3;
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;
279 dsty += 4 * ylinesize;
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++)
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;
302 if (
offset >= UINT_MAX / 4)
309 control = bytestream2_get_le64(&dgb);
310 alpha0 = control & 0xFF;
311 alpha1 = (control >> 8) & 0xFF;
312 control = control >> 16;
314 for (
int by = 0; by < 4; by++) {
315 for (
int bx = 0; bx < 4; bx++) {
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;
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;
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;
348 dsta += 16 * alinesize;
354 dstu = (uint16_t *)p->
data[1];
355 dstv = (uint16_t *)p->
data[2];
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;
368 is8x8 = bytestream2_get_le16(&dgb);
369 escape = bytestream2_get_le16(&dgb);
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);
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);
397 for (
int i = 0;
i < 16;
i += 8) {
398 for (
int j = 0; j < 16; j += 8) {
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);
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);
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);
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);
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];
464 dstu += 16 * ulinesize;
465 dstv += 16 * vlinesize;
472 void *
data,
int *got_frame,
479 unsigned uncompressed_size;
483 if (avpkt->
size <= 40)
488 if (bytestream2_get_le32(gb) !=
MKBETAG(
'N',
'L',
'C',
'1'))
491 uncompressed_size = bytestream2_get_le32(gb);
492 s->compressed_size = bytestream2_get_le32(gb);
493 s->format = bytestream2_get_le32(gb);
498 if (
s->format == 0) {
503 if (uncompressed_size >
s->lzf_size)
507 }
else if (
s->format == 1) {
513 if (!
s->uncompressed_buffer)
519 if (ret != uncompressed_size)
542 s->uncompressed_size = 0;
Libavcodec external API header.
static av_cold int init(AVCodecContext *avctx)
static av_always_inline unsigned int bytestream2_get_buffer(GetByteContext *g, uint8_t *dst, unsigned int size)
static av_always_inline void bytestream2_init_writer(PutByteContext *p, uint8_t *buf, int buf_size)
static av_always_inline int bytestream2_tell_p(PutByteContext *p)
static av_always_inline int bytestream2_get_bytes_left(GetByteContext *g)
static av_always_inline void bytestream2_init(GetByteContext *g, const uint8_t *buf, int buf_size)
static av_always_inline int bytestream2_seek(GetByteContext *g, int offset, int whence)
static av_always_inline int bytestream2_tell(GetByteContext *g)
static av_always_inline unsigned int bytestream2_put_buffer(PutByteContext *p, const uint8_t *src, unsigned int size)
#define u(width, name, range_min, range_max)
#define bit(string, value)
#define MKBETAG(a, b, c, d)
static void decode(AVCodecContext *dec_ctx, AVPacket *pkt, AVFrame *frame, FILE *outfile)
static float add(float src0, float src1)
bitstream reader API header.
static int init_get_bits8(GetBitContext *s, const uint8_t *buffer, int byte_size)
Initialize GetBitContext.
static unsigned int get_bits(GetBitContext *s, int n)
Read 1-25 bits.
#define AV_CODEC_CAP_DR1
Codec uses get_buffer() or get_encode_buffer() for allocating buffers and supports custom allocators.
#define AV_CODEC_CAP_FRAME_THREADS
Codec supports frame-level multithreading.
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...
#define AVERROR_PATCHWELCOME
Not yet implemented in FFmpeg, patches welcome.
#define AVERROR_INVALIDDATA
Invalid data found when processing input.
@ AV_PICTURE_TYPE_I
Intra.
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.
common internal API header
#define NULL_IF_CONFIG_SMALL(x)
Return NULL if CONFIG_SMALL is true, otherwise the argument without modification.
int ff_lzf_uncompress(GetByteContext *gb, uint8_t **buf, int64_t *size)
AVCodec ff_notchlc_decoder
static int decode_blocks(AVCodecContext *avctx, AVFrame *p, ThreadFrame *frame, unsigned uncompressed_size)
static av_cold int decode_init(AVCodecContext *avctx)
static av_cold int decode_end(AVCodecContext *avctx)
static int decode_frame(AVCodecContext *avctx, void *data, int *got_frame, AVPacket *avpkt)
static int lz4_decompress(AVCodecContext *avctx, GetByteContext *gb, PutByteContext *pb)
@ AVCOL_RANGE_JPEG
Full range content.
@ AVCOL_PRI_BT709
also ITU-R BT1361 / IEC 61966-2-4 / SMPTE RP177 Annex B
@ AVCOL_TRC_IEC61966_2_1
IEC 61966-2-1 (sRGB or sYCC)
#define AV_PIX_FMT_YUVA444P12
@ AVCOL_SPC_RGB
order of coefficients is actually GBR, also IEC 61966-2-1 (sRGB)
FF_ENABLE_DEPRECATION_WARNINGS int ff_thread_get_buffer(AVCodecContext *avctx, ThreadFrame *f, int flags)
Wrapper around get_buffer() for frame-multithreaded codecs.
static const SheerTable rgb[2]
main external API structure.
enum AVPixelFormat pix_fmt
Pixel format, see AV_PIX_FMT_xxx.
int width
picture width / height.
enum AVColorRange color_range
MPEG vs JPEG YUV range.
enum AVColorPrimaries color_primaries
Chromaticity coordinates of the source primaries.
enum AVColorSpace colorspace
YUV colorspace type.
enum AVColorTransferCharacteristic color_trc
Color Transfer Characteristic.
const char * name
Name of the codec implementation.
This structure describes decoded (raw) audio or video data.
uint8_t * data[AV_NUM_DATA_POINTERS]
pointer to the picture/channel planes.
int key_frame
1 -> keyframe, 0-> not
int linesize[AV_NUM_DATA_POINTERS]
For video, size in bytes of each picture line.
enum AVPictureType pict_type
Picture type of the frame.
This structure stores compressed data.
uint8_t * uncompressed_buffer
unsigned uncompressed_size
unsigned y_control_data_offset
unsigned uv_offset_data_offset
unsigned y_data_row_offsets
unsigned a_control_word_offset
static const uint8_t offset[127][2]