43 #define EPIC_PIX_STACK_SIZE 1024 44 #define EPIC_PIX_STACK_MAX (EPIC_PIX_STACK_SIZE - 1) 61 8, 6, 5, 8, 12, 20, 26, 31,
62 6, 6, 7, 10, 13, 29, 30, 28,
63 7, 7, 8, 12, 20, 29, 35, 28,
64 7, 9, 11, 15, 26, 44, 40, 31,
65 9, 11, 19, 28, 34, 55, 52, 39,
66 12, 18, 28, 32, 41, 52, 57, 46,
67 25, 32, 39, 44, 52, 61, 60, 51,
68 36, 46, 48, 49, 56, 50, 52, 50
72 9, 9, 12, 24, 50, 50, 50, 50,
73 9, 11, 13, 33, 50, 50, 50, 50,
74 12, 13, 28, 50, 50, 50, 50, 50,
75 24, 33, 50, 50, 50, 50, 50, 50,
76 50, 50, 50, 50, 50, 50, 50, 50,
77 50, 50, 50, 50, 50, 50, 50, 50,
78 50, 50, 50, 50, 50, 50, 50, 50,
79 50, 50, 50, 50, 50, 50, 50, 50,
93 #define EPIC_HASH_SIZE 256 161 const uint8_t *val_table,
int nb_codes,
164 uint8_t huff_size[256] = { 0 };
165 uint16_t huff_code[256];
166 uint16_t huff_sym[256];
171 for (i = 0; i < 256; i++)
172 huff_sym[i] = i + 16 * is_ac;
175 huff_sym[0] = 16 * 256;
178 huff_code, 2, 2, huff_sym, 2, 2, 0);
214 for (i = 0; i < 2; i++) {
225 const uint8_t *src_end = src + src_size;
228 while (src < src_end) {
233 if (x == 0xFF && !*src)
236 *dst_size = dst - dst_start;
240 int plane, int16_t *
block)
243 const int is_chroma = !!plane;
252 dc = dc * qmat[0] + c->
prev_dc[plane];
278 out[ridx] = av_clip_uint8(Y + (91881 * V + 32768 >> 16));
279 out[1] = av_clip_uint8(Y + (-22554 * U - 46802 * V + 32768 >> 16));
280 out[2 - ridx] = av_clip_uint8(Y + (116130 * U + 32768 >> 16));
290 int mb_w, mb_h, mb_x, mb_y, i, j;
294 const int ridx = swapuv ? 2 : 0;
305 mb_h = (height + 15) >> 4;
308 num_mbs = mb_w * mb_h * 4;
310 for (i = 0; i < 3; i++)
315 for (mb_y = 0; mb_y < mb_h; mb_y++) {
316 for (mb_x = 0; mb_x < mb_w; mb_x++) {
317 if (mask && !mask[mb_x * 2] && !mask[mb_x * 2 + 1] &&
318 !mask[mb_x * 2 + mask_stride] &&
319 !mask[mb_x * 2 + 1 + mask_stride]) {
323 for (j = 0; j < 2; j++) {
324 for (i = 0; i < 2; i++) {
325 if (mask && !mask[mb_x * 2 + i + j * mask_stride])
329 c->
block[i + j * 2])) != 0)
334 for (i = 1; i < 3; i++) {
340 for (j = 0; j < 16; j++) {
341 uint8_t *
out = dst + bx * 3 + (by + j) * dst_stride;
342 for (i = 0; i < 16; i++) {
345 Y = c->
block[(j >> 3) * 2 + (i >> 3)][(i & 7) + (j & 7) * 8];
346 U = c->
block[4][(i >> 1) + (j >> 1) * 8] - 128;
347 V = c->
block[5][(i >> 1) + (j >> 1) * 8] - 128;
348 yuv2rgb(out + i * 3, ridx, Y, U, V);
359 mask += mask_stride * 2;
365 #define LOAD_NEIGHBOURS(x) \ 366 W = curr_row[(x) - 1]; \ 367 N = above_row[(x)]; \ 368 WW = curr_row[(x) - 2]; \ 369 NW = above_row[(x) - 1]; \ 370 NE = above_row[(x) + 1]; \ 371 NN = above2_row[(x)]; \ 372 NNW = above2_row[(x) - 1]; \ 373 NWW = above_row[(x) - 2]; \ 374 NNE = above2_row[(x) + 1] 376 #define UPDATE_NEIGHBOURS(x) \ 382 NE = above_row[(x) + 1]; \ 383 NNE = above2_row[(x) + 1] 394 h = (h * 33) ^ ((key >> 24) & 0xFF);
395 h = (h * 33) ^ ((key >> 16) & 0xFF);
396 h = (h * 33) ^ ((key >> 8) & 0xFF);
397 h = (h * 33) ^ (key & 0xFF);
404 memset(hash, 0,
sizeof(*hash));
413 if (bucket[i].pix_id == key)
432 hash->
bucket[idx] = bucket;
437 memset(ret, 0,
sizeof(*ret));
456 new_elem->
pixel = pix;
458 hash_elem->
list = new_elem;
498 if (dc->
stack[i] == pix)
504 #define TOSIGNED(val) (((val) >> 1) ^ -((val) & 1)) 507 int N,
int W,
int NW)
514 const uint32_t *curr_row,
515 const uint32_t *above_row)
517 uint32_t N,
W, NW,
pred;
519 int GN, GW, GNW,
R,
G,
B;
524 NW = above_row[x - 1];
535 ((NW >>
R_shift) & 0xFF) - GNW);
540 ((NW >>
B_shift) & 0xFF) - GNW);
543 pred = curr_row[x - 1];
561 uint32_t *pPix, uint32_t pix)
572 const uint32_t *curr_row,
573 const uint32_t *above_row, uint32_t *pPix)
586 pix = curr_row[x - 1];
603 const uint32_t *curr_row,
604 const uint32_t *above_row,
605 const uint32_t *above2_row,
606 uint32_t *pPix,
int *pRun)
608 int idx, got_pixel = 0, WWneW, old_WWneW = 0;
609 uint32_t
W, WW, N, NN, NW, NE, NWW, NNW, NNE;
619 idx = (WW !=
W) << 7 |
642 NWneW = *pRun ? NWneW : NW !=
W;
645 switch (((NW != N) << 2) | (NWneW << 1) | WWneW) {
654 (*pRun ? old_WWneW : WW !=
W) << 7 |
679 if (x + *pRun >= tile_width - 1)
684 if (!NWneW && NW == N && N == NE) {
686 int start_pos = x + *pRun;
689 uint32_t pix = above_row[start_pos + 1];
690 for (pos = start_pos + 2; pos < tile_width; pos++)
691 if (!(above_row[pos] == pix))
693 run = pos - start_pos - 1;
694 idx = av_ceil_log2(run);
700 for (pos = idx - 1, rle = 0, flag = 0; pos >= 0; pos--) {
701 if ((1 << pos) + rle < run &&
712 if (x + *pRun >= tile_width - 1)
736 uint32_t *pPix, uint32_t pix)
747 int tile_width,
const uint32_t *curr_row,
748 const uint32_t *above_row, uint32_t *pPix)
754 uint32_t NW = above_row[x - 1];
763 if (pos < tile_width - 1 && y) {
764 uint32_t NE = above_row[pos + 1];
779 if (!hash_elem || !hash_elem->
list)
782 list = hash_elem->
list;
787 if (list != hash_elem->
list) {
790 hash_elem->
list = list;
804 int tile_width,
int stride)
808 uint32_t *curr_row =
NULL, *above_row =
NULL, *above2_row;
810 for (y = 0; y < tile_height; y++, out +=
stride) {
811 above2_row = above_row;
812 above_row = curr_row;
813 curr_row = (uint32_t *) out;
819 pix = curr_row[x - 1];
821 if (y >= 1 && x >= 2 &&
822 pix != curr_row[x - 2] && pix != above_row[x - 1] &&
823 pix != above_row[x - 2] && pix != above_row[x] &&
831 if (y < 2 || x < 2 || x == tile_width - 1) {
837 above2_row, &pix, &run);
840 tile_width, curr_row,
842 uint32_t ref_pix = curr_row[x - 1];
854 for (; run > 0; x++, run--)
868 int extrabytes, tile_width, tile_height, awidth, aheight;
878 for (extrabytes = 0; (prefix &
mask) && (extrabytes < 7); extrabytes++)
880 if (extrabytes > 3 || src_size < extrabytes) {
885 els_dsize = prefix & ((0x80 >> extrabytes) - 1);
886 while (extrabytes-- > 0) {
887 els_dsize = (els_dsize << 8) | *src++;
891 if (src_size < els_dsize) {
893 els_dsize, src_size);
899 awidth =
FFALIGN(tile_width, 16);
900 aheight =
FFALIGN(tile_height, 16);
904 uint8_t tr_r, tr_g, tr_b, *buf;
907 memset(&c->
ec, 0,
sizeof(c->
ec));
917 "ePIC: couldn't decode transparency pixel!\n");
929 "ePIC: tile decoding failed, frame=%d, tile_x=%d, tile_y=%d\n",
938 for (j = 0; j < tile_height; j++) {
940 in = (uint32_t *) buf;
941 for (i = 0; i < tile_width; i++) {
942 out[0] = (in[i] >>
R_shift) & 0xFF;
943 out[1] = (in[i] >>
G_shift) & 0xFF;
944 out[2] = (in[i] >>
B_shift) & 0xFF;
951 if (src_size > els_dsize) {
954 int bstride =
FFALIGN(tile_width, 16) >> 3;
959 src_size -= els_dsize;
965 (aheight >> 3) * bstride *
sizeof(*c->
kempf_flags));
966 for (j = 0; j < tile_height; j += 8) {
967 for (i = 0; i < tile_width; i += 8) {
969 for (k = 0; k < 8 * 8; k++) {
970 if (in[i + (k & 7) + (k >> 3) * estride] == tr) {
989 for (j = 0; j < tile_height; j++) {
990 for (i = 0; i < tile_width; i++)
992 memcpy(dst + i * 3, jpg + i * 3, 3);
1010 const uint8_t *jpeg_tile,
int tile_stride,
1012 const uint8_t *pal,
int npal,
int tidx)
1016 int align_width =
FFALIGN(width, 16);
1020 if (npal <= 2) nb = 1;
1021 else if (npal <= 4) nb = 2;
1022 else if (npal <= 16) nb = 4;
1025 for (j = 0; j <
height; j++, dst +=
stride, jpeg_tile += tile_stride) {
1028 for (i = 0; i <
width; i++) {
1031 memcpy(dst + i * 3, pal + col * 3, 3);
1033 memcpy(dst + i * 3, jpeg_tile + i * 3, 3);
1043 int hdr, zsize, npal, tidx = -1, ret;
1045 const uint8_t *src_end = src + src_size;
1049 int nblocks, cblocks, bstride;
1050 int bits, bitbuf, coded;
1061 sub_type = hdr >> 5;
1062 if (sub_type == 0) {
1064 memcpy(transp, src, 3);
1067 for (i = 0; i <
width; i++)
1068 memcpy(dst + i * 3, transp, 3);
1070 }
else if (sub_type == 1) {
1075 if (sub_type != 2) {
1076 memcpy(transp, src, 3);
1080 memcpy(pal, src, npal * 3);
1082 if (sub_type != 2) {
1083 for (i = 0; i < npal; i++) {
1084 if (!memcmp(pal + i * 3, transp, 3)) {
1091 if (src_end - src < 2)
1093 zsize = (src[0] << 8) | src[1];
1096 if (src_end - src < zsize)
1099 ret = uncompress(c->
kempf_buf, &dlen, src, zsize);
1104 if (sub_type == 2) {
1106 NULL, 0, width, height, pal, npal, tidx);
1110 nblocks = *src++ + 1;
1112 bstride =
FFALIGN(width, 16) >> 3;
1115 for (i = 0; i < (FFALIGN(height, 16) >> 4); i++) {
1116 for (j = 0; j < (FFALIGN(width, 16) >> 4); j++) {
1125 if (cblocks > nblocks)
1130 c->
kempf_flags[j * 2 + 1 + (i * 2 + 1) * bstride] = coded;
1141 width, height, pal, npal, tidx);
1195 uint32_t cur_size, cursor_w, cursor_h, cursor_stride;
1196 uint32_t cursor_hot_x, cursor_hot_y;
1197 int cursor_fmt, err;
1199 cur_size = bytestream2_get_be32(gb);
1200 cursor_w = bytestream2_get_byte(gb);
1201 cursor_h = bytestream2_get_byte(gb);
1202 cursor_hot_x = bytestream2_get_byte(gb);
1203 cursor_hot_y = bytestream2_get_byte(gb);
1204 cursor_fmt = bytestream2_get_byte(gb);
1206 cursor_stride =
FFALIGN(cursor_w, 32) * 4;
1208 if (cursor_w < 1 || cursor_w > 256 ||
1209 cursor_h < 1 || cursor_h > 256) {
1211 cursor_w, cursor_h);
1214 if (cursor_hot_x > cursor_w || cursor_hot_y > cursor_h) {
1216 cursor_hot_x, cursor_hot_y);
1217 cursor_hot_x =
FFMIN(cursor_hot_x, cursor_w - 1);
1218 cursor_hot_y =
FFMIN(cursor_hot_y, cursor_h - 1);
1226 if (cursor_fmt != 1 && cursor_fmt != 32) {
1247 for (j = 0; j < c->
cursor_h; j++) {
1248 for (i = 0; i < c->
cursor_w; i += 32) {
1249 bits = bytestream2_get_be32(gb);
1250 for (k = 0; k < 32; k++) {
1251 dst[0] = !!(bits & 0x80000000);
1260 for (j = 0; j < c->
cursor_h; j++) {
1261 for (i = 0; i < c->
cursor_w; i += 32) {
1262 bits = bytestream2_get_be32(gb);
1263 for (k = 0; k < 32; k++) {
1264 int mask_bit = !!(bits & 0x80000000);
1265 switch (dst[0] * 2 + mask_bit) {
1294 for (j = 0; j < c->
cursor_h; j++) {
1295 for (i = 0; i < c->
cursor_w; i++) {
1296 int val = bytestream2_get_be32(gb);
1311 #define APPLY_ALPHA(src, new, alpha) \ 1312 src = (src * (256 - alpha) + new * alpha) >> 8 1330 if (x + w > c->
width)
1349 for (j = 0; j < h; j++) {
1350 for (i = 0; i < w; i++) {
1351 uint8_t alpha = cursor[i * 4];
1352 APPLY_ALPHA(dst[i * 3 + 0], cursor[i * 4 + 1], alpha);
1353 APPLY_ALPHA(dst[i * 3 + 1], cursor[i * 4 + 2], alpha);
1354 APPLY_ALPHA(dst[i * 3 + 2], cursor[i * 4 + 3], alpha);
1362 int *got_picture_ptr,
AVPacket *avpkt)
1365 int buf_size = avpkt->
size;
1371 uint32_t chunk_size, r_mask, g_mask, b_mask;
1372 int chunk_type, chunk_start;
1376 if (buf_size < 12) {
1378 "Frame should have at least 12 bytes, got %d instead\n",
1385 magic = bytestream2_get_be32(&bc);
1386 if ((magic & ~0xF) !=
MKBETAG(
'G',
'2',
'M',
'0') ||
1387 (magic & 0xF) < 2 || (magic & 0xF) > 5) {
1395 chunk_size = bytestream2_get_le32(&bc) - 1;
1396 chunk_type = bytestream2_get_byte(&bc);
1400 chunk_size, chunk_type);
1403 switch (chunk_type) {
1406 if (chunk_size < 21) {
1411 c->
width = bytestream2_get_be32(&bc);
1412 c->
height = bytestream2_get_be32(&bc);
1415 "Invalid frame dimensions %dx%d\n",
1428 "Unknown compression method %d\n",
1437 "Invalid tile dimensions %dx%d\n",
1444 c->
bpp = bytestream2_get_byte(&bc);
1447 (chunk_size - 21) < 16) {
1449 "Display info: missing bitmasks!\n");
1452 r_mask = bytestream2_get_be32(&bc);
1453 g_mask = bytestream2_get_be32(&bc);
1454 b_mask = bytestream2_get_be32(&bc);
1455 if (r_mask != 0xFF0000 || g_mask != 0xFF00 || b_mask != 0xFF) {
1457 "Invalid or unsupported bitmasks: R=%"PRIX32
", G=%"PRIX32
", B=%"PRIX32
"\n",
1458 r_mask, g_mask, b_mask);
1474 "No display info - skipping tile\n");
1477 if (chunk_size < 2) {
1482 c->
tile_x = bytestream2_get_byte(&bc);
1483 c->
tile_y = bytestream2_get_byte(&bc);
1486 "Invalid tile pos %d,%d (in %dx%d grid)\n",
1495 chunk_size - 2, avctx);
1508 if (chunk_size < 5) {
1513 c->
cursor_x = bytestream2_get_be16(&bc);
1514 c->
cursor_y = bytestream2_get_be16(&bc);
1517 if (chunk_size < 8) {
1549 for (i = 0; i < avctx->
height; i++)
1555 *got_picture_ptr = 1;
#define LOAD_NEIGHBOURS(x)
static int epic_predict_from_NW_NE(ePICContext *dc, int x, int y, int run, int tile_width, const uint32_t *curr_row, const uint32_t *above_row, uint32_t *pPix)
#define AVERROR_INVALIDDATA
Invalid data found when processing input.
static int epic_handle_edges(ePICContext *dc, int x, int y, const uint32_t *curr_row, const uint32_t *above_row, uint32_t *pPix)
static int kempf_decode_tile(G2MContext *c, int tile_x, int tile_y, const uint8_t *src, int src_size)
static int epic_add_pixel_to_cache(ePICPixHash *hash, uint32_t key, uint32_t pix)
This structure describes decoded (raw) audio or video data.
static av_cold void jpg_free_context(JPGContext *ctx)
static unsigned int get_bits(GetBitContext *s, int n)
Read 1-25 bits.
#define AV_LOG_WARNING
Something somehow does not look correct.
packed RGB 8:8:8, 24bpp, RGBRGB...
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.
static int epic_predict_pixel(ePICContext *dc, uint8_t *rung, uint32_t *pPix, uint32_t pix)
static void skip_bits_long(GetBitContext *s, int n)
uint8_t nw_pred_rung[256]
Entropy Logarithmic-Scale binary arithmetic coder.
void(* clear_block)(int16_t *block)
static void yuv2rgb(uint8_t *out, int ridx, int Y, int U, int V)
static int epic_decode_tile(ePICContext *dc, uint8_t *out, int tile_height, int tile_width, int stride)
uint32_t stack[EPIC_PIX_STACK_SIZE]
static void kempf_restore_buf(const uint8_t *src, int len, uint8_t *dst, int stride, const uint8_t *jpeg_tile, int tile_stride, int width, int height, const uint8_t *pal, int npal, int tidx)
av_log(ac->avr, AV_LOG_TRACE, "%d samples - audio_convert: %s to %s (%s)\, len, av_get_sample_fmt_name(ac->in_fmt), av_get_sample_fmt_name(ac->out_fmt), use_generic ? ac->func_descr_generic :ac->func_descr)
#define DECLARE_ALIGNED(n, t, v)
enum AVPixelFormat pix_fmt
Pixel format, see AV_PIX_FMT_xxx.
static av_always_inline void bytestream2_init(GetByteContext *g, const uint8_t *buf, int buf_size)
static int g2m_init_buffers(G2MContext *c)
MJPEG encoder and decoder.
static void jpg_unescape(const uint8_t *src, int src_size, uint8_t *dst, int *dst_size)
void av_freep(void *arg)
Free a memory block which has been allocated with av_malloc(z)() or av_realloc() and set the pointer ...
void void avpriv_request_sample(void *avc, const char *msg,...) av_printf_format(2
Log a generic warning message about a missing feature.
#define FF_CODEC_CAP_INIT_THREADSAFE
The codec does not modify any global variables in the init function, allowing to call the init functi...
void ff_mjpeg_build_huffman_codes(uint8_t *huff_size, uint16_t *huff_code, const uint8_t *bits_table, const uint8_t *val_table)
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)
static int epic_cache_entries_for_pixel(const ePICPixHash *hash, uint32_t pix)
static ePICPixHashElem * epic_hash_find(const ePICPixHash *hash, uint32_t key)
static int epic_decode_component_pred(ePICContext *dc, int N, int W, int NW)
static int is_pixel_on_stack(const ePICContext *dc, uint32_t pix)
const uint8_t avpriv_mjpeg_bits_dc_luminance[17]
struct ePICPixListElem * list
int av_reallocp(void *ptr, size_t size)
Allocate or reallocate a block of memory.
bitstream reader API header.
static void epic_free_pixel_cache(ePICPixHash *hash)
static av_cold int g2m_decode_init(AVCodecContext *avctx)
static av_cold int jpg_init(AVCodecContext *avctx, JPGContext *c)
#define AV_LOG_ERROR
Something went wrong and cannot losslessly be recovered.
void av_free(void *ptr)
Free a memory block which has been allocated with av_malloc(z)() or av_realloc(). ...
ElsUnsignedRung unsigned_rung
static const uint16_t mask[17]
static int g2m_load_cursor(AVCodecContext *avctx, G2MContext *c, GetByteContext *gb)
static av_cold int g2m_decode_end(AVCodecContext *avctx)
static av_always_inline void bytestream2_skip(GetByteContext *g, unsigned int size)
const uint8_t avpriv_mjpeg_bits_dc_chrominance[17]
void(* clear_blocks)(int16_t *blocks)
uint8_t runlen_zeroes[14]
#define NULL_IF_CONFIG_SMALL(x)
Return NULL if CONFIG_SMALL is true, otherwise the argument without modification. ...
static int epic_jb_decode_tile(G2MContext *c, int tile_x, int tile_y, const uint8_t *src, size_t src_size, AVCodecContext *avctx)
static av_always_inline unsigned int bytestream2_get_bytes_left(GetByteContext *g)
const char * name
Name of the codec implementation.
void ff_els_decoder_init(ElsDecCtx *ctx, const uint8_t *in, size_t data_size)
static ePICPixHashElem * epic_hash_add(ePICPixHash *hash, uint32_t key)
static int jpg_decode_block(JPGContext *c, GetBitContext *gb, int plane, int16_t *block)
uint8_t prev_row_rung[14]
enum AVPictureType pict_type
Picture type of the frame.
static int jpg_decode_data(JPGContext *c, int width, int height, const uint8_t *src, int src_size, uint8_t *dst, int dst_stride, const uint8_t *mask, int mask_stride, int num_mbs, int swapuv)
static int g2m_decode_frame(AVCodecContext *avctx, void *data, int *got_picture_ptr, AVPacket *avpkt)
int width
picture width / height.
static int decode(AVCodecContext *avctx, AVFrame *frame, int *got_frame, AVPacket *pkt)
static int epic_predict_pixel2(ePICContext *dc, uint8_t *rung, uint32_t *pPix, uint32_t pix)
static void g2m_paint_cursor(G2MContext *c, uint8_t *dst, int stride)
static av_always_inline int get_vlc2(GetBitContext *s, VLC_TYPE(*table)[2], int bits, int max_depth)
Parse a vlc code.
uint8_t idct_permutation[64]
IDCT input permutation.
uint8_t ne_pred_rung[256]
if(ac->has_optimized_func)
static const float pred[4]
#define AVERROR_PATCHWELCOME
Not yet implemented in Libav, patches welcome.
static uint32_t epic_decode_pixel_pred(ePICContext *dc, int x, int y, const uint32_t *curr_row, const uint32_t *above_row)
static av_always_inline int bytestream2_tell(GetByteContext *g)
#define EPIC_PIX_STACK_MAX
Libavcodec external API header.
av_cold void ff_blockdsp_init(BlockDSPContext *c, AVCodecContext *avctx)
int linesize[AV_NUM_DATA_POINTERS]
For video, size in bytes of each picture line.
#define APPLY_ALPHA(src, new, alpha)
int bucket_size[EPIC_HASH_SIZE]
main external API structure.
static av_cold int build_vlc(VLC *vlc, const uint8_t *bits_table, const uint8_t *val_table, int nb_codes, int is_ac)
static int get_xbits(GetBitContext *s, int n)
Read MPEG-1 dc-style VLC (sign bit + mantisse with no MSB).
int ff_get_buffer(AVCodecContext *avctx, AVFrame *frame, int flags)
Get a buffer for a frame.
const uint8_t avpriv_mjpeg_val_dc[12]
uint8_t pi<< 24) CONV_FUNC_GROUP(AV_SAMPLE_FMT_FLT, float, AV_SAMPLE_FMT_U8, uint8_t,(*(const uint8_t *) pi - 0x80) *(1.0f/(1<< 7))) CONV_FUNC_GROUP(AV_SAMPLE_FMT_DBL, double, AV_SAMPLE_FMT_U8, uint8_t,(*(const uint8_t *) pi - 0x80) *(1.0/(1<< 7))) CONV_FUNC_GROUP(AV_SAMPLE_FMT_U8, uint8_t, AV_SAMPLE_FMT_S16, int16_t,(*(const int16_t *) pi >> 8)+0x80) CONV_FUNC_GROUP(AV_SAMPLE_FMT_FLT, float, AV_SAMPLE_FMT_S16, int16_t, *(const int16_t *) pi *(1.0f/(1<< 15))) CONV_FUNC_GROUP(AV_SAMPLE_FMT_DBL, double, AV_SAMPLE_FMT_S16, int16_t, *(const int16_t *) pi *(1.0/(1<< 15))) CONV_FUNC_GROUP(AV_SAMPLE_FMT_U8, uint8_t, AV_SAMPLE_FMT_S32, int32_t,(*(const int32_t *) pi >> 24)+0x80) CONV_FUNC_GROUP(AV_SAMPLE_FMT_FLT, float, AV_SAMPLE_FMT_S32, int32_t, *(const int32_t *) pi *(1.0f/(1U<< 31))) CONV_FUNC_GROUP(AV_SAMPLE_FMT_DBL, double, AV_SAMPLE_FMT_S32, int32_t, *(const int32_t *) pi *(1.0/(1U<< 31))) CONV_FUNC_GROUP(AV_SAMPLE_FMT_U8, uint8_t, AV_SAMPLE_FMT_FLT, float, av_clip_uint8(lrintf(*(const float *) pi *(1<< 7))+0x80)) CONV_FUNC_GROUP(AV_SAMPLE_FMT_S16, int16_t, AV_SAMPLE_FMT_FLT, float, av_clip_int16(lrintf(*(const float *) pi *(1<< 15)))) CONV_FUNC_GROUP(AV_SAMPLE_FMT_S32, int32_t, AV_SAMPLE_FMT_FLT, float, av_clipl_int32(llrintf(*(const float *) pi *(1U<< 31)))) CONV_FUNC_GROUP(AV_SAMPLE_FMT_U8, uint8_t, AV_SAMPLE_FMT_DBL, double, av_clip_uint8(lrint(*(const double *) pi *(1<< 7))+0x80)) CONV_FUNC_GROUP(AV_SAMPLE_FMT_S16, int16_t, AV_SAMPLE_FMT_DBL, double, av_clip_int16(lrint(*(const double *) pi *(1<< 15)))) CONV_FUNC_GROUP(AV_SAMPLE_FMT_S32, int32_t, AV_SAMPLE_FMT_DBL, double, av_clipl_int32(llrint(*(const double *) pi *(1U<< 31)))) #define SET_CONV_FUNC_GROUP(ofmt, ifmt) static void set_generic_function(AudioConvert *ac) { } void ff_audio_convert_free(AudioConvert **ac) { if(! *ac) return;ff_dither_free(&(*ac) ->dc);av_freep(ac);} AudioConvert *ff_audio_convert_alloc(AVAudioResampleContext *avr, enum AVSampleFormat out_fmt, enum AVSampleFormat in_fmt, int channels, int sample_rate, int apply_map) { AudioConvert *ac;int in_planar, out_planar;ac=av_mallocz(sizeof(*ac));if(!ac) return NULL;ac->avr=avr;ac->out_fmt=out_fmt;ac->in_fmt=in_fmt;ac->channels=channels;ac->apply_map=apply_map;if(avr->dither_method !=AV_RESAMPLE_DITHER_NONE &&av_get_packed_sample_fmt(out_fmt)==AV_SAMPLE_FMT_S16 &&av_get_bytes_per_sample(in_fmt) > 2) { ac->dc=ff_dither_alloc(avr, out_fmt, in_fmt, channels, sample_rate, apply_map);if(!ac->dc) { av_free(ac);return NULL;} return ac;} in_planar=ff_sample_fmt_is_planar(in_fmt, channels);out_planar=ff_sample_fmt_is_planar(out_fmt, channels);if(in_planar==out_planar) { ac->func_type=CONV_FUNC_TYPE_FLAT;ac->planes=in_planar ? ac->channels :1;} else if(in_planar) ac->func_type=CONV_FUNC_TYPE_INTERLEAVE;else ac->func_type=CONV_FUNC_TYPE_DEINTERLEAVE;set_generic_function(ac);if(ARCH_AARCH64) ff_audio_convert_init_aarch64(ac);if(ARCH_ARM) ff_audio_convert_init_arm(ac);if(ARCH_X86) ff_audio_convert_init_x86(ac);return ac;} int ff_audio_convert(AudioConvert *ac, AudioData *out, AudioData *in) { int use_generic=1;int len=in->nb_samples;int p;if(ac->dc) { av_log(ac->avr, AV_LOG_TRACE, "%d samples - audio_convert: %s to %s (dithered)\", len, av_get_sample_fmt_name(ac->in_fmt), av_get_sample_fmt_name(ac->out_fmt));return ff_convert_dither(ac-> in
static int djb2_hash(uint32_t key)
static int init_get_bits(GetBitContext *s, const uint8_t *buffer, int bit_size)
Initialize GetBitContext.
const uint8_t ff_zigzag_direct[64]
ePICPixHashElem * bucket[EPIC_HASH_SIZE]
const uint8_t avpriv_mjpeg_bits_ac_chrominance[17]
unsigned ff_els_decode_unsigned(ElsDecCtx *ctx, ElsUnsignedRung *ur)
static const uint8_t chroma_quant[64]
uint8_t pi<< 24) CONV_FUNC_GROUP(AV_SAMPLE_FMT_FLT, float, AV_SAMPLE_FMT_U8, uint8_t,(*(const uint8_t *) pi - 0x80) *(1.0f/(1<< 7))) CONV_FUNC_GROUP(AV_SAMPLE_FMT_DBL, double, AV_SAMPLE_FMT_U8, uint8_t,(*(const uint8_t *) pi - 0x80) *(1.0/(1<< 7))) CONV_FUNC_GROUP(AV_SAMPLE_FMT_U8, uint8_t, AV_SAMPLE_FMT_S16, int16_t,(*(const int16_t *) pi >> 8)+0x80) CONV_FUNC_GROUP(AV_SAMPLE_FMT_FLT, float, AV_SAMPLE_FMT_S16, int16_t, *(const int16_t *) pi *(1.0f/(1<< 15))) CONV_FUNC_GROUP(AV_SAMPLE_FMT_DBL, double, AV_SAMPLE_FMT_S16, int16_t, *(const int16_t *) pi *(1.0/(1<< 15))) CONV_FUNC_GROUP(AV_SAMPLE_FMT_U8, uint8_t, AV_SAMPLE_FMT_S32, int32_t,(*(const int32_t *) pi >> 24)+0x80) CONV_FUNC_GROUP(AV_SAMPLE_FMT_FLT, float, AV_SAMPLE_FMT_S32, int32_t, *(const int32_t *) pi *(1.0f/(1U<< 31))) CONV_FUNC_GROUP(AV_SAMPLE_FMT_DBL, double, AV_SAMPLE_FMT_S32, int32_t, *(const int32_t *) pi *(1.0/(1U<< 31))) CONV_FUNC_GROUP(AV_SAMPLE_FMT_U8, uint8_t, AV_SAMPLE_FMT_FLT, float, av_clip_uint8(lrintf(*(const float *) pi *(1<< 7))+0x80)) CONV_FUNC_GROUP(AV_SAMPLE_FMT_S16, int16_t, AV_SAMPLE_FMT_FLT, float, av_clip_int16(lrintf(*(const float *) pi *(1<< 15)))) CONV_FUNC_GROUP(AV_SAMPLE_FMT_S32, int32_t, AV_SAMPLE_FMT_FLT, float, av_clipl_int32(llrintf(*(const float *) pi *(1U<< 31)))) CONV_FUNC_GROUP(AV_SAMPLE_FMT_U8, uint8_t, AV_SAMPLE_FMT_DBL, double, av_clip_uint8(lrint(*(const double *) pi *(1<< 7))+0x80)) CONV_FUNC_GROUP(AV_SAMPLE_FMT_S16, int16_t, AV_SAMPLE_FMT_DBL, double, av_clip_int16(lrint(*(const double *) pi *(1<< 15)))) CONV_FUNC_GROUP(AV_SAMPLE_FMT_S32, int32_t, AV_SAMPLE_FMT_DBL, double, av_clipl_int32(llrint(*(const double *) pi *(1U<< 31)))) #define SET_CONV_FUNC_GROUP(ofmt, ifmt) static void set_generic_function(AudioConvert *ac) { } void ff_audio_convert_free(AudioConvert **ac) { if(! *ac) return;ff_dither_free(&(*ac) ->dc);av_freep(ac);} AudioConvert *ff_audio_convert_alloc(AVAudioResampleContext *avr, enum AVSampleFormat out_fmt, enum AVSampleFormat in_fmt, int channels, int sample_rate, int apply_map) { AudioConvert *ac;int in_planar, out_planar;ac=av_mallocz(sizeof(*ac));if(!ac) return NULL;ac->avr=avr;ac->out_fmt=out_fmt;ac->in_fmt=in_fmt;ac->channels=channels;ac->apply_map=apply_map;if(avr->dither_method !=AV_RESAMPLE_DITHER_NONE &&av_get_packed_sample_fmt(out_fmt)==AV_SAMPLE_FMT_S16 &&av_get_bytes_per_sample(in_fmt) > 2) { ac->dc=ff_dither_alloc(avr, out_fmt, in_fmt, channels, sample_rate, apply_map);if(!ac->dc) { av_free(ac);return NULL;} return ac;} in_planar=ff_sample_fmt_is_planar(in_fmt, channels);out_planar=ff_sample_fmt_is_planar(out_fmt, channels);if(in_planar==out_planar) { ac->func_type=CONV_FUNC_TYPE_FLAT;ac->planes=in_planar ? ac->channels :1;} else if(in_planar) ac->func_type=CONV_FUNC_TYPE_INTERLEAVE;else ac->func_type=CONV_FUNC_TYPE_DEINTERLEAVE;set_generic_function(ac);if(ARCH_AARCH64) ff_audio_convert_init_aarch64(ac);if(ARCH_ARM) ff_audio_convert_init_arm(ac);if(ARCH_X86) ff_audio_convert_init_x86(ac);return ac;} int ff_audio_convert(AudioConvert *ac, AudioData *out, AudioData *in) { int use_generic=1;int len=in->nb_samples;int p;if(ac->dc) { av_log(ac->avr, AV_LOG_TRACE, "%d samples - audio_convert: %s to %s (dithered)\", len, av_get_sample_fmt_name(ac->in_fmt), av_get_sample_fmt_name(ac->out_fmt));return ff_convert_dither(ac-> dc
const uint8_t avpriv_mjpeg_val_ac_chrominance[]
static int epic_decode_from_cache(ePICContext *dc, uint32_t W, uint32_t *pPix)
void avpriv_report_missing_feature(void *avc, const char *msg,...) av_printf_format(2
Log a generic warning message about a missing feature.
struct ePICPixListElem * next
int bucket_fill[EPIC_HASH_SIZE]
uint8_t * data[AV_NUM_DATA_POINTERS]
pointer to the picture/channel planes.
static void epic_hash_init(ePICPixHash *hash)
common internal api header.
void * av_realloc(void *ptr, size_t size)
Allocate or reallocate a block of memory.
static av_cold int init(AVCodecParserContext *s)
static const uint8_t luma_quant[64]
#define MKBETAG(a, b, c, d)
#define AV_INPUT_BUFFER_PADDING_SIZE
Required number of additionally allocated bytes at the end of the input bitstream for decoding...
const uint8_t avpriv_mjpeg_bits_ac_luminance[17]
av_cold void ff_init_scantable(uint8_t *permutation, ScanTable *st, const uint8_t *src_scantable)
av_cold void ff_idctdsp_init(IDCTDSPContext *c, AVCodecContext *avctx)
#define UPDATE_NEIGHBOURS(x)
const uint8_t avpriv_mjpeg_val_ac_luminance[]
#define EPIC_PIX_STACK_SIZE
VLC_TYPE(* table)[2]
code, bits
void ff_els_decoder_uninit(ElsUnsignedRung *rung)
int key_frame
1 -> keyframe, 0-> not
int ff_els_decode_bit(ElsDecCtx *ctx, uint8_t *rung)
int frame_number
Frame counter, set by libavcodec.
static int epic_decode_run_length(ePICContext *dc, int x, int y, int tile_width, const uint32_t *curr_row, const uint32_t *above_row, const uint32_t *above2_row, uint32_t *pPix, int *pRun)
void(* idct)(int16_t *block)
This structure stores compressed data.
void ff_free_vlc(VLC *vlc)
void * av_mallocz(size_t size)
Allocate a block of size bytes with alignment suitable for all memory accesses (including vectors if ...
#define AV_CODEC_CAP_DR1
Codec uses get_buffer() for allocating buffers and supports custom allocators.