|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#include "config_components.h" |
|
|
|
#include "a64colors.h" |
|
#include "a64tables.h" |
|
#include "codec_internal.h" |
|
#include "elbg.h" |
|
#include "encode.h" |
|
#include "libavutil/avassert.h" |
|
#include "libavutil/common.h" |
|
#include "libavutil/intreadwrite.h" |
|
|
|
#define DITHERSTEPS 8 |
|
#define CHARSET_CHARS 256 |
|
#define INTERLACED 1 |
|
#define CROP_SCREENS 1 |
|
|
|
#define C64XRES 320 |
|
#define C64YRES 200 |
|
|
|
typedef struct A64Context { |
|
|
|
struct ELBGContext *elbg; |
|
AVLFG randctx; |
|
int mc_lifetime; |
|
int mc_use_5col; |
|
unsigned mc_frame_counter; |
|
int *mc_meta_charset; |
|
int *mc_charmap; |
|
int *mc_best_cb; |
|
int mc_luma_vals[5]; |
|
uint8_t *mc_colram; |
|
uint8_t *mc_palette; |
|
int mc_pal_size; |
|
|
|
|
|
int64_t next_pts; |
|
} A64Context; |
|
|
|
|
|
static const uint8_t mc_colors[5]={0x0,0xb,0xc,0xf,0x1}; |
|
|
|
|
|
|
|
|
|
|
|
static void to_meta_with_crop(AVCodecContext *avctx, |
|
const AVFrame *p, int *dest) |
|
{ |
|
int blockx, blocky, x, y; |
|
int luma = 0; |
|
int height = FFMIN(avctx->height, C64YRES); |
|
int width = FFMIN(avctx->width , C64XRES); |
|
const uint8_t *src = p->data[0]; |
|
|
|
for (blocky = 0; blocky < C64YRES; blocky += 8) { |
|
for (blockx = 0; blockx < C64XRES; blockx += 8) { |
|
for (y = blocky; y < blocky + 8 && y < C64YRES; y++) { |
|
for (x = blockx; x < blockx + 8 && x < C64XRES; x += 2) { |
|
if(x < width && y < height) { |
|
if (x + 1 < width) { |
|
|
|
luma = (src[(x + 0 + y * p->linesize[0])] + |
|
src[(x + 1 + y * p->linesize[0])]) / 2; |
|
} else { |
|
luma = src[(x + y * p->linesize[0])]; |
|
} |
|
|
|
dest[0] = luma; |
|
} |
|
dest++; |
|
} |
|
} |
|
} |
|
} |
|
} |
|
|
|
static void render_charset(AVCodecContext *avctx, uint8_t *charset, |
|
uint8_t *colrammap) |
|
{ |
|
A64Context *c = avctx->priv_data; |
|
uint8_t row1, row2; |
|
int charpos, x, y; |
|
int a, b; |
|
uint8_t pix; |
|
int lowdiff, highdiff; |
|
int *best_cb = c->mc_best_cb; |
|
uint8_t index1[256]; |
|
uint8_t index2[256]; |
|
uint8_t dither[256]; |
|
int i; |
|
int distance; |
|
|
|
|
|
|
|
|
|
|
|
i = 0; |
|
for (a=0; a < 256; a++) { |
|
if(i < c->mc_pal_size -1 && a == c->mc_luma_vals[i + 1]) { |
|
distance = c->mc_luma_vals[i + 1] - c->mc_luma_vals[i]; |
|
for(b = 0; b <= distance; b++) { |
|
dither[c->mc_luma_vals[i] + b] = b * (DITHERSTEPS - 1) / distance; |
|
} |
|
i++; |
|
} |
|
if(i >= c->mc_pal_size - 1) dither[a] = 0; |
|
index1[a] = i; |
|
index2[a] = FFMIN(i + 1, c->mc_pal_size - 1); |
|
} |
|
|
|
|
|
for (charpos = 0; charpos < CHARSET_CHARS; charpos++) { |
|
lowdiff = 0; |
|
highdiff = 0; |
|
for (y = 0; y < 8; y++) { |
|
row1 = 0; row2 = 0; |
|
for (x = 0; x < 4; x++) { |
|
pix = best_cb[y * 4 + x]; |
|
|
|
|
|
if (index1[pix] >= 3) |
|
highdiff += pix - c->mc_luma_vals[3]; |
|
if (index1[pix] < 1) |
|
lowdiff += c->mc_luma_vals[1] - pix; |
|
|
|
row1 <<= 2; |
|
|
|
if (INTERLACED) { |
|
row2 <<= 2; |
|
if (interlaced_dither_patterns[dither[pix]][(y & 3) * 2 + 0][x & 3]) |
|
row1 |= 3-(index2[pix] & 3); |
|
else |
|
row1 |= 3-(index1[pix] & 3); |
|
|
|
if (interlaced_dither_patterns[dither[pix]][(y & 3) * 2 + 1][x & 3]) |
|
row2 |= 3-(index2[pix] & 3); |
|
else |
|
row2 |= 3-(index1[pix] & 3); |
|
} |
|
else { |
|
if (multi_dither_patterns[dither[pix]][(y & 3)][x & 3]) |
|
row1 |= 3-(index2[pix] & 3); |
|
else |
|
row1 |= 3-(index1[pix] & 3); |
|
} |
|
} |
|
charset[y+0x000] = row1; |
|
if (INTERLACED) charset[y+0x800] = row2; |
|
} |
|
|
|
if (highdiff > 0 && lowdiff > 0 && c->mc_use_5col) { |
|
if (lowdiff > highdiff) { |
|
for (x = 0; x < 32; x++) |
|
best_cb[x] = FFMIN(c->mc_luma_vals[3], best_cb[x]); |
|
} else { |
|
for (x = 0; x < 32; x++) |
|
best_cb[x] = FFMAX(c->mc_luma_vals[1], best_cb[x]); |
|
} |
|
charpos--; |
|
|
|
} else { |
|
|
|
best_cb += 32; |
|
charset += 8; |
|
|
|
|
|
colrammap[charpos] = (highdiff > 0); |
|
} |
|
} |
|
} |
|
|
|
static av_cold int a64multi_close_encoder(AVCodecContext *avctx) |
|
{ |
|
A64Context *c = avctx->priv_data; |
|
|
|
avpriv_elbg_free(&c->elbg); |
|
|
|
av_freep(&c->mc_meta_charset); |
|
av_freep(&c->mc_best_cb); |
|
av_freep(&c->mc_charmap); |
|
av_freep(&c->mc_colram); |
|
return 0; |
|
} |
|
|
|
static av_cold int a64multi_encode_init(AVCodecContext *avctx) |
|
{ |
|
A64Context *c = avctx->priv_data; |
|
int a; |
|
av_lfg_init(&c->randctx, 1); |
|
|
|
if (avctx->global_quality < 1) { |
|
c->mc_lifetime = 4; |
|
} else { |
|
c->mc_lifetime = avctx->global_quality / FF_QP2LAMBDA; |
|
} |
|
|
|
av_log(avctx, AV_LOG_INFO, "charset lifetime set to %d frame(s)\n", c->mc_lifetime); |
|
|
|
c->mc_frame_counter = 0; |
|
c->mc_use_5col = avctx->codec->id == AV_CODEC_ID_A64_MULTI5; |
|
c->mc_pal_size = 4 + c->mc_use_5col; |
|
|
|
|
|
for (a = 0; a < c->mc_pal_size; a++) { |
|
c->mc_luma_vals[a]=a64_palette[mc_colors[a]][0] * 0.30 + |
|
a64_palette[mc_colors[a]][1] * 0.59 + |
|
a64_palette[mc_colors[a]][2] * 0.11; |
|
} |
|
|
|
if (!(c->mc_meta_charset = av_calloc(c->mc_lifetime, 32000 * sizeof(int))) || |
|
!(c->mc_best_cb = av_malloc(CHARSET_CHARS * 32 * sizeof(int))) || |
|
!(c->mc_charmap = av_calloc(c->mc_lifetime, 1000 * sizeof(int))) || |
|
!(c->mc_colram = av_mallocz(CHARSET_CHARS * sizeof(uint8_t)))) { |
|
av_log(avctx, AV_LOG_ERROR, "Failed to allocate buffer memory.\n"); |
|
return AVERROR(ENOMEM); |
|
} |
|
|
|
|
|
if (!(avctx->extradata = av_mallocz(8 * 4 + AV_INPUT_BUFFER_PADDING_SIZE))) { |
|
av_log(avctx, AV_LOG_ERROR, "Failed to allocate memory for extradata.\n"); |
|
return AVERROR(ENOMEM); |
|
} |
|
avctx->extradata_size = 8 * 4; |
|
AV_WB32(avctx->extradata, c->mc_lifetime); |
|
AV_WB32(avctx->extradata + 16, INTERLACED); |
|
|
|
if (!avctx->codec_tag) |
|
avctx->codec_tag = AV_RL32("a64m"); |
|
|
|
c->next_pts = AV_NOPTS_VALUE; |
|
|
|
return 0; |
|
} |
|
|
|
static void a64_compress_colram(unsigned char *buf, int *charmap, uint8_t *colram) |
|
{ |
|
int a; |
|
uint8_t temp; |
|
|
|
|
|
for (a = 0; a < 256; a++) { |
|
temp = colram[charmap[a + 0x000]] << 0; |
|
temp |= colram[charmap[a + 0x100]] << 1; |
|
temp |= colram[charmap[a + 0x200]] << 2; |
|
if (a < 0xe8) temp |= colram[charmap[a + 0x300]] << 3; |
|
buf[a] = temp << 2; |
|
} |
|
} |
|
|
|
static int a64multi_encode_frame(AVCodecContext *avctx, AVPacket *pkt, |
|
const AVFrame *p, int *got_packet) |
|
{ |
|
A64Context *c = avctx->priv_data; |
|
|
|
int frame; |
|
int x, y; |
|
int b_height; |
|
int b_width; |
|
|
|
int req_size, ret; |
|
uint8_t *buf = NULL; |
|
|
|
int *charmap = c->mc_charmap; |
|
uint8_t *colram = c->mc_colram; |
|
int *meta = c->mc_meta_charset; |
|
int *best_cb = c->mc_best_cb; |
|
|
|
int charset_size = 0x800 * (INTERLACED + 1); |
|
int colram_size = 0x100 * c->mc_use_5col; |
|
int screen_size; |
|
|
|
if(CROP_SCREENS) { |
|
b_height = FFMIN(avctx->height,C64YRES) >> 3; |
|
b_width = FFMIN(avctx->width ,C64XRES) >> 3; |
|
screen_size = b_width * b_height; |
|
} else { |
|
b_height = C64YRES >> 3; |
|
b_width = C64XRES >> 3; |
|
screen_size = 0x400; |
|
} |
|
|
|
|
|
if (!p) { |
|
|
|
if (!c->mc_lifetime) return 0; |
|
|
|
if (!c->mc_frame_counter) { |
|
c->mc_lifetime = 0; |
|
} |
|
|
|
else c->mc_lifetime = c->mc_frame_counter; |
|
|
|
} else { |
|
|
|
if (c->mc_frame_counter < c->mc_lifetime) { |
|
to_meta_with_crop(avctx, p, meta + 32000 * c->mc_frame_counter); |
|
c->mc_frame_counter++; |
|
if (c->next_pts == AV_NOPTS_VALUE) |
|
c->next_pts = p->pts; |
|
|
|
return 0; |
|
} |
|
} |
|
|
|
|
|
if (c->mc_frame_counter == c->mc_lifetime) { |
|
req_size = 0; |
|
|
|
if (c->mc_lifetime) { |
|
int alloc_size = charset_size + c->mc_lifetime*(screen_size + colram_size); |
|
if ((ret = ff_get_encode_buffer(avctx, pkt, alloc_size, 0)) < 0) |
|
return ret; |
|
buf = pkt->data; |
|
|
|
|
|
ret = avpriv_elbg_do(&c->elbg, meta, 32, 1000 * c->mc_lifetime, |
|
best_cb, CHARSET_CHARS, 50, charmap, &c->randctx, 0); |
|
if (ret < 0) |
|
return ret; |
|
|
|
|
|
render_charset(avctx, buf, colram); |
|
|
|
|
|
buf += charset_size; |
|
req_size += charset_size; |
|
} |
|
|
|
|
|
for (frame = 0; frame < c->mc_lifetime; frame++) { |
|
|
|
for (y = 0; y < b_height; y++) { |
|
for (x = 0; x < b_width; x++) { |
|
buf[y * b_width + x] = charmap[y * b_width + x]; |
|
} |
|
} |
|
|
|
buf += screen_size; |
|
req_size += screen_size; |
|
|
|
|
|
if (c->mc_use_5col) { |
|
a64_compress_colram(buf, charmap, colram); |
|
|
|
buf += colram_size; |
|
req_size += colram_size; |
|
} |
|
|
|
|
|
charmap += 1000; |
|
} |
|
|
|
AV_WB32(avctx->extradata + 4, c->mc_frame_counter); |
|
AV_WB32(avctx->extradata + 8, charset_size); |
|
AV_WB32(avctx->extradata + 12, screen_size + colram_size); |
|
|
|
|
|
c->mc_frame_counter = 0; |
|
|
|
pkt->pts = pkt->dts = c->next_pts; |
|
c->next_pts = AV_NOPTS_VALUE; |
|
|
|
av_assert0(pkt->size == req_size); |
|
*got_packet = !!req_size; |
|
} |
|
return 0; |
|
} |
|
|
|
#if CONFIG_A64MULTI_ENCODER |
|
const FFCodec ff_a64multi_encoder = { |
|
.p.name = "a64multi", |
|
CODEC_LONG_NAME("Multicolor charset for Commodore 64"), |
|
.p.type = AVMEDIA_TYPE_VIDEO, |
|
.p.id = AV_CODEC_ID_A64_MULTI, |
|
.p.capabilities = AV_CODEC_CAP_DR1 | AV_CODEC_CAP_DELAY, |
|
.priv_data_size = sizeof(A64Context), |
|
.init = a64multi_encode_init, |
|
FF_CODEC_ENCODE_CB(a64multi_encode_frame), |
|
.close = a64multi_close_encoder, |
|
.p.pix_fmts = (const enum AVPixelFormat[]) {AV_PIX_FMT_GRAY8, AV_PIX_FMT_NONE}, |
|
.caps_internal = FF_CODEC_CAP_INIT_CLEANUP, |
|
}; |
|
#endif |
|
#if CONFIG_A64MULTI5_ENCODER |
|
const FFCodec ff_a64multi5_encoder = { |
|
.p.name = "a64multi5", |
|
CODEC_LONG_NAME("Multicolor charset for Commodore 64, extended with 5th color (colram)"), |
|
.p.type = AVMEDIA_TYPE_VIDEO, |
|
.p.id = AV_CODEC_ID_A64_MULTI5, |
|
.p.capabilities = AV_CODEC_CAP_DR1 | AV_CODEC_CAP_DELAY, |
|
.priv_data_size = sizeof(A64Context), |
|
.init = a64multi_encode_init, |
|
FF_CODEC_ENCODE_CB(a64multi_encode_frame), |
|
.close = a64multi_close_encoder, |
|
.p.pix_fmts = (const enum AVPixelFormat[]) {AV_PIX_FMT_GRAY8, AV_PIX_FMT_NONE}, |
|
.caps_internal = FF_CODEC_CAP_INIT_CLEANUP, |
|
}; |
|
#endif |
|
|