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;
243 const int is_chroma = !!
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;
306 mb_h = (height + 15) >> 4;
309 num_mbs = mb_w * mb_h * 4;
311 for (i = 0; i < 3; i++)
316 for (mb_y = 0; mb_y < mb_h; mb_y++) {
317 for (mb_x = 0; mb_x < mb_w; mb_x++) {
318 if (mask && !mask[mb_x * 2] && !mask[mb_x * 2 + 1] &&
319 !mask[mb_x * 2 + mask_stride] &&
320 !mask[mb_x * 2 + 1 + mask_stride]) {
324 for (j = 0; j < 2; j++) {
325 for (i = 0; i < 2; i++) {
326 if (mask && !mask[mb_x * 2 + i + j * mask_stride])
330 c->
block[i + j * 2])) != 0)
335 for (i = 1; i < 3; i++) {
341 for (j = 0; j < 16; j++) {
342 uint8_t *
out = dst + bx * 3 + (by + j) * dst_stride;
343 for (i = 0; i < 16; i++) {
346 Y = c->
block[(j >> 3) * 2 + (i >> 3)][(i & 7) + (j & 7) * 8];
347 U = c->
block[4][(i >> 1) + (j >> 1) * 8] - 128;
348 V = c->
block[5][(i >> 1) + (j >> 1) * 8] - 128;
349 yuv2rgb(out + i * 3, ridx, Y, U, V);
360 mask += mask_stride * 2;
366 #define LOAD_NEIGHBOURS(x) \
367 W = curr_row[(x) - 1]; \
368 N = above_row[(x)]; \
369 WW = curr_row[(x) - 2]; \
370 NW = above_row[(x) - 1]; \
371 NE = above_row[(x) + 1]; \
372 NN = above2_row[(x)]; \
373 NNW = above2_row[(x) - 1]; \
374 NWW = above_row[(x) - 2]; \
375 NNE = above2_row[(x) + 1]
377 #define UPDATE_NEIGHBOURS(x) \
383 NE = above_row[(x) + 1]; \
384 NNE = above2_row[(x) + 1]
395 h = (h * 33) ^ ((key >> 24) & 0xFF);
396 h = (h * 33) ^ ((key >> 16) & 0xFF);
397 h = (h * 33) ^ ((key >> 8) & 0xFF);
398 h = (h * 33) ^ (key & 0xFF);
405 memset(hash, 0,
sizeof(*hash));
414 if (bucket[i].pix_id == key)
433 hash->
bucket[idx] = bucket;
438 memset(ret, 0,
sizeof(*ret));
457 new_elem->
pixel = pix;
459 hash_elem->
list = new_elem;
499 if (dc->
stack[i] == pix)
505 #define TOSIGNED(val) (((val) >> 1) ^ -((val) & 1))
508 int N,
int W,
int NW)
515 const uint32_t *curr_row,
516 const uint32_t *above_row)
520 int GN, GW, GNW,
R,
G,
B;
525 NW = above_row[x - 1];
536 ((NW >>
R_shift) & 0xFF) - GNW);
541 ((NW >>
B_shift) & 0xFF) - GNW);
544 pred = curr_row[x - 1];
558 if (R<0 || G<0 || B<0) {
567 uint32_t *pPix, uint32_t pix)
578 const uint32_t *curr_row,
579 const uint32_t *above_row, uint32_t *pPix)
592 pix = curr_row[x - 1];
609 const uint32_t *curr_row,
610 const uint32_t *above_row,
611 const uint32_t *above2_row,
612 uint32_t *pPix,
int *pRun)
614 int idx, got_pixel = 0, WWneW, old_WWneW = 0;
615 uint32_t
W, WW,
N, NN, NW, NE, NWW, NNW, NNE;
625 idx = (WW !=
W) << 7 |
650 NWneW = *pRun ? NWneW : NW !=
W;
653 switch (((NW != N) << 2) | (NWneW << 1) | WWneW) {
662 (*pRun ? old_WWneW : WW !=
W) << 7 |
687 if (x + *pRun >= tile_width - 1)
692 if (!NWneW && NW == N && N == NE) {
694 int start_pos = x + *pRun;
697 uint32_t pix = above_row[start_pos + 1];
698 for (pos = start_pos + 2; pos < tile_width; pos++)
699 if (!(above_row[pos] == pix))
701 run = pos - start_pos - 1;
702 idx = av_ceil_log2(run);
708 for (pos = idx - 1, rle = 0, flag = 0; pos >= 0; pos--) {
709 if ((1 << pos) + rle < run &&
720 if (x + *pRun >= tile_width - 1)
744 uint32_t *pPix, uint32_t pix)
755 int tile_width,
const uint32_t *curr_row,
756 const uint32_t *above_row, uint32_t *pPix)
762 uint32_t NW = above_row[x - 1];
771 if (pos < tile_width - 1 && y) {
772 uint32_t NE = above_row[pos + 1];
787 if (!hash_elem || !hash_elem->
list)
790 list = hash_elem->
list;
795 if (list != hash_elem->
list) {
798 hash_elem->
list = list;
812 int tile_width,
int stride)
816 uint32_t *curr_row =
NULL, *above_row =
NULL, *above2_row;
818 for (y = 0; y < tile_height; y++, out +=
stride) {
819 above2_row = above_row;
820 above_row = curr_row;
821 curr_row = (uint32_t *) out;
827 pix = curr_row[x - 1];
829 if (y >= 1 && x >= 2 &&
830 pix != curr_row[x - 2] && pix != above_row[x - 1] &&
831 pix != above_row[x - 2] && pix != above_row[x] &&
839 if (y < 2 || x < 2 || x == tile_width - 1) {
845 above2_row, &pix, &run);
851 tile_width, curr_row,
853 uint32_t ref_pix = curr_row[x - 1];
865 for (; run > 0; x++, run--)
879 int extrabytes, tile_width, tile_height, awidth, aheight;
889 for (extrabytes = 0; (prefix &
mask) && (extrabytes < 7); extrabytes++)
891 if (extrabytes > 3 || src_size < extrabytes) {
896 els_dsize = prefix & ((0x80 >> extrabytes) - 1);
897 while (extrabytes-- > 0) {
898 els_dsize = (els_dsize << 8) | *src++;
902 if (src_size < els_dsize) {
904 els_dsize, src_size);
910 awidth =
FFALIGN(tile_width, 16);
911 aheight =
FFALIGN(tile_height, 16);
918 memset(&c->
ec, 0,
sizeof(c->
ec));
928 "ePIC: couldn't decode transparency pixel!\n");
940 "ePIC: tile decoding failed, frame=%d, tile_x=%d, tile_y=%d\n",
949 for (j = 0; j < tile_height; j++) {
951 in = (uint32_t *) buf;
952 for (i = 0; i < tile_width; i++) {
953 out[0] = (in[i] >>
R_shift) & 0xFF;
954 out[1] = (in[i] >>
G_shift) & 0xFF;
955 out[2] = (in[i] >>
B_shift) & 0xFF;
962 if (src_size > els_dsize) {
965 int bstride =
FFALIGN(tile_width, 16) >> 3;
970 src_size -= els_dsize;
976 (aheight >> 3) * bstride *
sizeof(*c->
kempf_flags));
977 for (j = 0; j < tile_height; j += 8) {
978 for (i = 0; i < tile_width; i += 8) {
980 for (k = 0; k < 8 * 8; k++) {
981 if (in[i + (k & 7) + (k >> 3) * estride] == tr) {
1000 for (j = 0; j < tile_height; j++) {
1001 for (i = 0; i < tile_width; i++)
1003 memcpy(dst + i * 3, jpg + i * 3, 3);
1021 const uint8_t *jpeg_tile,
int tile_stride,
1023 const uint8_t *pal,
int npal,
int tidx)
1028 int align_width =
FFALIGN(width, 16);
1033 if (npal <= 2) nb = 1;
1034 else if (npal <= 4) nb = 2;
1035 else if (npal <= 16) nb = 4;
1038 for (j = 0; j <
height; j++, dst +=
stride, jpeg_tile += tile_stride) {
1041 for (i = 0; i <
width; i++) {
1044 memcpy(dst + i * 3, pal + col * 3, 3);
1046 memcpy(dst + i * 3, jpeg_tile + i * 3, 3);
1058 int hdr, zsize, npal, tidx = -1, ret;
1060 const uint8_t *src_end = src + src_size;
1064 int nblocks, cblocks, bstride;
1065 int bits, bitbuf, coded;
1076 sub_type = hdr >> 5;
1077 if (sub_type == 0) {
1079 memcpy(transp, src, 3);
1082 for (i = 0; i <
width; i++)
1083 memcpy(dst + i * 3, transp, 3);
1085 }
else if (sub_type == 1) {
1090 if (sub_type != 2) {
1091 memcpy(transp, src, 3);
1095 if (src_end - src < npal * 3)
1097 memcpy(pal, src, npal * 3);
1099 if (sub_type != 2) {
1100 for (i = 0; i < npal; i++) {
1101 if (!memcmp(pal + i * 3, transp, 3)) {
1108 if (src_end - src < 2)
1110 zsize = (src[0] << 8) | src[1];
1113 if (src_end - src < zsize + (sub_type != 2))
1116 ret = uncompress(c->
kempf_buf, &dlen, src, zsize);
1121 if (sub_type == 2) {
1123 NULL, 0, width, height, pal, npal, tidx);
1127 nblocks = *src++ + 1;
1129 bstride =
FFALIGN(width, 16) >> 3;
1132 for (i = 0; i < (FFALIGN(height, 16) >> 4); i++) {
1133 for (j = 0; j < (FFALIGN(width, 16) >> 4); j++) {
1144 if (cblocks > nblocks)
1149 c->
kempf_flags[j * 2 + 1 + (i * 2 + 1) * bstride] = coded;
1160 width, height, pal, npal, tidx);
1171 aligned_height = c->
height + 15;
1215 uint32_t cur_size, cursor_w, cursor_h, cursor_stride;
1216 uint32_t cursor_hot_x, cursor_hot_y;
1217 int cursor_fmt, err;
1219 cur_size = bytestream2_get_be32(gb);
1220 cursor_w = bytestream2_get_byte(gb);
1221 cursor_h = bytestream2_get_byte(gb);
1222 cursor_hot_x = bytestream2_get_byte(gb);
1223 cursor_hot_y = bytestream2_get_byte(gb);
1224 cursor_fmt = bytestream2_get_byte(gb);
1226 cursor_stride =
FFALIGN(cursor_w, cursor_fmt==1 ? 32 : 1) * 4;
1228 if (cursor_w < 1 || cursor_w > 256 ||
1229 cursor_h < 1 || cursor_h > 256) {
1231 cursor_w, cursor_h);
1234 if (cursor_hot_x > cursor_w || cursor_hot_y > cursor_h) {
1236 cursor_hot_x, cursor_hot_y);
1237 cursor_hot_x =
FFMIN(cursor_hot_x, cursor_w - 1);
1238 cursor_hot_y =
FFMIN(cursor_hot_y, cursor_h - 1);
1246 if (cursor_fmt != 1 && cursor_fmt != 32) {
1267 for (j = 0; j < c->
cursor_h; j++) {
1268 for (i = 0; i < c->
cursor_w; i += 32) {
1269 bits = bytestream2_get_be32(gb);
1270 for (k = 0; k < 32; k++) {
1271 dst[0] = !!(bits & 0x80000000);
1279 for (j = 0; j < c->
cursor_h; j++) {
1280 for (i = 0; i < c->
cursor_w; i += 32) {
1281 bits = bytestream2_get_be32(gb);
1282 for (k = 0; k < 32; k++) {
1283 int mask_bit = !!(bits & 0x80000000);
1284 switch (dst[0] * 2 + mask_bit) {
1312 for (j = 0; j < c->
cursor_h; j++) {
1313 for (i = 0; i < c->
cursor_w; i++) {
1314 int val = bytestream2_get_be32(gb);
1328 #define APPLY_ALPHA(src, new, alpha) \
1329 src = (src * (256 - alpha) + new * alpha) >> 8
1347 if (x + w > c->
width)
1366 for (j = 0; j <
h; j++) {
1367 for (i = 0; i < w; i++) {
1369 APPLY_ALPHA(dst[i * 3 + 0], cursor[i * 4 + 1], alpha);
1370 APPLY_ALPHA(dst[i * 3 + 1], cursor[i * 4 + 2], alpha);
1371 APPLY_ALPHA(dst[i * 3 + 2], cursor[i * 4 + 3], alpha);
1379 int *got_picture_ptr,
AVPacket *avpkt)
1382 int buf_size = avpkt->
size;
1388 uint32_t chunk_size, r_mask, g_mask, b_mask;
1393 if (buf_size < 12) {
1395 "Frame should have at least 12 bytes, got %d instead\n",
1402 magic = bytestream2_get_be32(&bc);
1403 if ((magic & ~0xF) !=
MKBETAG(
'G',
'2',
'M',
'0') ||
1404 (magic & 0xF) < 2 || (magic & 0xF) > 5) {
1412 chunk_size = bytestream2_get_le32(&bc) - 1;
1413 chunk_type = bytestream2_get_byte(&bc);
1417 chunk_size, chunk_type);
1420 switch (chunk_type) {
1424 if (chunk_size < 21) {
1429 c->
width = bytestream2_get_be32(&bc);
1430 c->
height = bytestream2_get_be32(&bc);
1433 "Invalid frame dimensions %dx%d\n",
1446 "Unknown compression method %d\n",
1458 "Invalid tile dimensions %dx%d\n",
1465 c->
bpp = bytestream2_get_byte(&bc);
1468 (chunk_size - 21) < 16) {
1470 "Display info: missing bitmasks!\n");
1474 r_mask = bytestream2_get_be32(&bc);
1475 g_mask = bytestream2_get_be32(&bc);
1476 b_mask = bytestream2_get_be32(&bc);
1477 if (r_mask != 0xFF0000 || g_mask != 0xFF00 || b_mask != 0xFF) {
1479 "Invalid or unsupported bitmasks: R=%"PRIX32
", G=%"PRIX32
", B=%"PRIX32
"\n",
1480 r_mask, g_mask, b_mask);
1498 "No display info - skipping tile\n");
1501 if (chunk_size < 2) {
1506 c->
tile_x = bytestream2_get_byte(&bc);
1507 c->
tile_y = bytestream2_get_byte(&bc);
1510 "Invalid tile pos %d,%d (in %dx%d grid)\n",
1519 chunk_size - 2, avctx);
1532 if (chunk_size < 5) {
1537 c->
cursor_x = bytestream2_get_be16(&bc);
1538 c->
cursor_y = bytestream2_get_be16(&bc);
1541 if (chunk_size < 8) {
1571 for (i = 0; i < avctx->
height; i++)
1577 *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)
const char const char void * val
#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.
ptrdiff_t const GLvoid * data
void(* clear_block)(int16_t *block)
static av_cold void jpg_free_context(JPGContext *ctx)
static int chunk_start(AVFormatContext *s)
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)
static av_cold int init(AVCodecContext *avctx)
uint8_t nw_pred_rung[256]
Entropy Logarithmic-Scale binary arithmetic coder.
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]
int ff_init_vlc_sparse(VLC *vlc_arg, 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)
void(* clear_blocks)(int16_t *blocks)
#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 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)
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
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)
static double alpha(void *priv, double x, double y)
#define AV_LOG_ERROR
Something went wrong and cannot losslessly be recovered.
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]
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 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]
static const float pred[4]
#define AVERROR_PATCHWELCOME
Not yet implemented in FFmpeg, 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)
static int 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)
int linesize[AV_NUM_DATA_POINTERS]
For video, size in bytes of each picture line.
#define APPLY_ALPHA(src, new, alpha)
static int init_get_bits8(GetBitContext *s, const uint8_t *buffer, int byte_size)
Initialize GetBitContext.
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 mpeg1 dc style vlc (sign bit + mantissa with no MSB).
int ff_get_buffer(AVCodecContext *avctx, AVFrame *frame, int flags)
Get a buffer for a frame.
uint8_t pi<< 24) CONV_FUNC_GROUP(AV_SAMPLE_FMT_FLT, float, AV_SAMPLE_FMT_U8, uint8_t,(*(constuint8_t *) pi-0x80)*(1.0f/(1<< 7))) CONV_FUNC_GROUP(AV_SAMPLE_FMT_DBL, double, AV_SAMPLE_FMT_U8, uint8_t,(*(constuint8_t *) pi-0x80)*(1.0/(1<< 7))) CONV_FUNC_GROUP(AV_SAMPLE_FMT_U8, uint8_t, AV_SAMPLE_FMT_S16, int16_t,(*(constint16_t *) pi >>8)+0x80) CONV_FUNC_GROUP(AV_SAMPLE_FMT_FLT, float, AV_SAMPLE_FMT_S16, int16_t,*(constint16_t *) pi *(1.0f/(1<< 15))) CONV_FUNC_GROUP(AV_SAMPLE_FMT_DBL, double, AV_SAMPLE_FMT_S16, int16_t,*(constint16_t *) pi *(1.0/(1<< 15))) CONV_FUNC_GROUP(AV_SAMPLE_FMT_U8, uint8_t, AV_SAMPLE_FMT_S32, int32_t,(*(constint32_t *) pi >>24)+0x80) CONV_FUNC_GROUP(AV_SAMPLE_FMT_FLT, float, AV_SAMPLE_FMT_S32, int32_t,*(constint32_t *) pi *(1.0f/(1U<< 31))) CONV_FUNC_GROUP(AV_SAMPLE_FMT_DBL, double, AV_SAMPLE_FMT_S32, int32_t,*(constint32_t *) pi *(1.0/(1U<< 31))) CONV_FUNC_GROUP(AV_SAMPLE_FMT_U8, uint8_t, AV_SAMPLE_FMT_FLT, float, av_clip_uint8(lrintf(*(constfloat *) pi *(1<< 7))+0x80)) CONV_FUNC_GROUP(AV_SAMPLE_FMT_S16, int16_t, AV_SAMPLE_FMT_FLT, float, av_clip_int16(lrintf(*(constfloat *) pi *(1<< 15)))) CONV_FUNC_GROUP(AV_SAMPLE_FMT_S32, int32_t, AV_SAMPLE_FMT_FLT, float, av_clipl_int32(llrintf(*(constfloat *) pi *(1U<< 31)))) CONV_FUNC_GROUP(AV_SAMPLE_FMT_U8, uint8_t, AV_SAMPLE_FMT_DBL, double, av_clip_uint8(lrint(*(constdouble *) pi *(1<< 7))+0x80)) CONV_FUNC_GROUP(AV_SAMPLE_FMT_S16, int16_t, AV_SAMPLE_FMT_DBL, double, av_clip_int16(lrint(*(constdouble *) pi *(1<< 15)))) CONV_FUNC_GROUP(AV_SAMPLE_FMT_S32, int32_t, AV_SAMPLE_FMT_DBL, double, av_clipl_int32(llrint(*(constdouble *) pi *(1U<< 31))))#defineSET_CONV_FUNC_GROUP(ofmt, ifmt) staticvoidset_generic_function(AudioConvert *ac){}voidff_audio_convert_free(AudioConvert **ac){if(!*ac) return;ff_dither_free(&(*ac) ->dc);av_freep(ac);}AudioConvert *ff_audio_convert_alloc(AVAudioResampleContext *avr, enumAVSampleFormatout_fmt, enumAVSampleFormatin_fmt, intchannels, intsample_rate, intapply_map){AudioConvert *ac;intin_planar, out_planar;ac=av_mallocz(sizeof(*ac));if(!ac) returnNULL;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);returnNULL;}returnac;}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;}elseif(in_planar) ac->func_type=CONV_FUNC_TYPE_INTERLEAVE;elseac->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);returnac;}intff_audio_convert(AudioConvert *ac, AudioData *out, AudioData *in){intuse_generic=1;intlen=in->nb_samples;intp;if(ac->dc){av_log(ac->avr, AV_LOG_TRACE,"%dsamples-audio_convert:%sto%s(dithered)\n", len, av_get_sample_fmt_name(ac->in_fmt), av_get_sample_fmt_name(ac->out_fmt));returnff_convert_dither(ac-> in
const uint8_t avpriv_mjpeg_val_dc[12]
BYTE int const BYTE int int int height
static int djb2_hash(uint32_t key)
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]
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)
static int decode(AVCodecContext *avctx, void *data, int *got_sub, AVPacket *avpkt)
GLint GLenum GLboolean GLsizei stride
common internal api header.
void * av_realloc(void *ptr, size_t size)
Allocate or reallocate a block of memory.
int av_reallocp(void *ptr, size_t size)
Allocate or reallocate a block of memory.
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
uint8_t pi<< 24) CONV_FUNC_GROUP(AV_SAMPLE_FMT_FLT, float, AV_SAMPLE_FMT_U8, uint8_t,(*(constuint8_t *) pi-0x80)*(1.0f/(1<< 7))) CONV_FUNC_GROUP(AV_SAMPLE_FMT_DBL, double, AV_SAMPLE_FMT_U8, uint8_t,(*(constuint8_t *) pi-0x80)*(1.0/(1<< 7))) CONV_FUNC_GROUP(AV_SAMPLE_FMT_U8, uint8_t, AV_SAMPLE_FMT_S16, int16_t,(*(constint16_t *) pi >>8)+0x80) CONV_FUNC_GROUP(AV_SAMPLE_FMT_FLT, float, AV_SAMPLE_FMT_S16, int16_t,*(constint16_t *) pi *(1.0f/(1<< 15))) CONV_FUNC_GROUP(AV_SAMPLE_FMT_DBL, double, AV_SAMPLE_FMT_S16, int16_t,*(constint16_t *) pi *(1.0/(1<< 15))) CONV_FUNC_GROUP(AV_SAMPLE_FMT_U8, uint8_t, AV_SAMPLE_FMT_S32, int32_t,(*(constint32_t *) pi >>24)+0x80) CONV_FUNC_GROUP(AV_SAMPLE_FMT_FLT, float, AV_SAMPLE_FMT_S32, int32_t,*(constint32_t *) pi *(1.0f/(1U<< 31))) CONV_FUNC_GROUP(AV_SAMPLE_FMT_DBL, double, AV_SAMPLE_FMT_S32, int32_t,*(constint32_t *) pi *(1.0/(1U<< 31))) CONV_FUNC_GROUP(AV_SAMPLE_FMT_U8, uint8_t, AV_SAMPLE_FMT_FLT, float, av_clip_uint8(lrintf(*(constfloat *) pi *(1<< 7))+0x80)) CONV_FUNC_GROUP(AV_SAMPLE_FMT_S16, int16_t, AV_SAMPLE_FMT_FLT, float, av_clip_int16(lrintf(*(constfloat *) pi *(1<< 15)))) CONV_FUNC_GROUP(AV_SAMPLE_FMT_S32, int32_t, AV_SAMPLE_FMT_FLT, float, av_clipl_int32(llrintf(*(constfloat *) pi *(1U<< 31)))) CONV_FUNC_GROUP(AV_SAMPLE_FMT_U8, uint8_t, AV_SAMPLE_FMT_DBL, double, av_clip_uint8(lrint(*(constdouble *) pi *(1<< 7))+0x80)) CONV_FUNC_GROUP(AV_SAMPLE_FMT_S16, int16_t, AV_SAMPLE_FMT_DBL, double, av_clip_int16(lrint(*(constdouble *) pi *(1<< 15)))) CONV_FUNC_GROUP(AV_SAMPLE_FMT_S32, int32_t, AV_SAMPLE_FMT_DBL, double, av_clipl_int32(llrint(*(constdouble *) pi *(1U<< 31))))#defineSET_CONV_FUNC_GROUP(ofmt, ifmt) staticvoidset_generic_function(AudioConvert *ac){}voidff_audio_convert_free(AudioConvert **ac){if(!*ac) return;ff_dither_free(&(*ac) ->dc);av_freep(ac);}AudioConvert *ff_audio_convert_alloc(AVAudioResampleContext *avr, enumAVSampleFormatout_fmt, enumAVSampleFormatin_fmt, intchannels, intsample_rate, intapply_map){AudioConvert *ac;intin_planar, out_planar;ac=av_mallocz(sizeof(*ac));if(!ac) returnNULL;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);returnNULL;}returnac;}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;}elseif(in_planar) ac->func_type=CONV_FUNC_TYPE_INTERLEAVE;elseac->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);returnac;}intff_audio_convert(AudioConvert *ac, AudioData *out, AudioData *in){intuse_generic=1;intlen=in->nb_samples;intp;if(ac->dc){av_log(ac->avr, AV_LOG_TRACE,"%dsamples-audio_convert:%sto%s(dithered)\n", len, av_get_sample_fmt_name(ac->in_fmt), av_get_sample_fmt_name(ac->out_fmt));returnff_convert_dither(ac-> dc
int ff_els_decode_bit(ElsDecCtx *ctx, uint8_t *rung)
static void * av_mallocz_array(size_t nmemb, size_t size)
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)
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.
void(* idct)(int16_t *block)