mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-03-28 12:32:17 +02:00
avcodec/hapdec : add support for hapqa decoding
This commit is contained in:
parent
fca8919961
commit
2053832d1c
@ -73,6 +73,7 @@ typedef struct HapContext {
|
|||||||
int *chunk_results; /* Results from threaded operations */
|
int *chunk_results; /* Results from threaded operations */
|
||||||
|
|
||||||
int tex_rat; /* Compression ratio */
|
int tex_rat; /* Compression ratio */
|
||||||
|
int tex_rat2; /* Compression ratio of the second texture */
|
||||||
const uint8_t *tex_data; /* Compressed texture */
|
const uint8_t *tex_data; /* Compressed texture */
|
||||||
uint8_t *tex_buf; /* Buffer for compressed texture */
|
uint8_t *tex_buf; /* Buffer for compressed texture */
|
||||||
size_t tex_size; /* Size of the compressed texture */
|
size_t tex_size; /* Size of the compressed texture */
|
||||||
@ -82,9 +83,11 @@ typedef struct HapContext {
|
|||||||
int slice_count; /* Number of slices for threaded operations */
|
int slice_count; /* Number of slices for threaded operations */
|
||||||
|
|
||||||
int texture_count; /* 2 for HAQA, 1 for other version */
|
int texture_count; /* 2 for HAQA, 1 for other version */
|
||||||
|
int texture_section_size; /* size of the part of the texture section (for HAPQA) */
|
||||||
|
|
||||||
/* Pointer to the selected compress or decompress function */
|
/* Pointer to the selected compress or decompress function */
|
||||||
int (*tex_fun)(uint8_t *dst, ptrdiff_t stride, const uint8_t *block);
|
int (*tex_fun)(uint8_t *dst, ptrdiff_t stride, const uint8_t *block);
|
||||||
|
int (*tex_fun2)(uint8_t *dst, ptrdiff_t stride, const uint8_t *block);
|
||||||
} HapContext;
|
} HapContext;
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
@ -3,6 +3,8 @@
|
|||||||
* Copyright (C) 2015 Vittorio Giovara <vittorio.giovara@gmail.com>
|
* Copyright (C) 2015 Vittorio Giovara <vittorio.giovara@gmail.com>
|
||||||
* Copyright (C) 2015 Tom Butterworth <bangnoise@gmail.com>
|
* Copyright (C) 2015 Tom Butterworth <bangnoise@gmail.com>
|
||||||
*
|
*
|
||||||
|
* HapQA and HAPAlphaOnly added by Jokyo Images
|
||||||
|
*
|
||||||
* This file is part of FFmpeg.
|
* This file is part of FFmpeg.
|
||||||
*
|
*
|
||||||
* FFmpeg is free software; you can redistribute it and/or
|
* FFmpeg is free software; you can redistribute it and/or
|
||||||
@ -157,14 +159,16 @@ static int hap_parse_frame_header(AVCodecContext *avctx)
|
|||||||
const char *compressorstr;
|
const char *compressorstr;
|
||||||
int i, ret;
|
int i, ret;
|
||||||
|
|
||||||
ret = parse_section_header(gbc, §ion_size, §ion_type);
|
ret = parse_section_header(gbc, &ctx->texture_section_size, §ion_type);
|
||||||
if (ret != 0)
|
if (ret != 0)
|
||||||
return ret;
|
return ret;
|
||||||
|
|
||||||
if ((avctx->codec_tag == MKTAG('H','a','p','1') && (section_type & 0x0F) != HAP_FMT_RGBDXT1) ||
|
if ((avctx->codec_tag == MKTAG('H','a','p','1') && (section_type & 0x0F) != HAP_FMT_RGBDXT1) ||
|
||||||
(avctx->codec_tag == MKTAG('H','a','p','5') && (section_type & 0x0F) != HAP_FMT_RGBADXT5) ||
|
(avctx->codec_tag == MKTAG('H','a','p','5') && (section_type & 0x0F) != HAP_FMT_RGBADXT5) ||
|
||||||
(avctx->codec_tag == MKTAG('H','a','p','Y') && (section_type & 0x0F) != HAP_FMT_YCOCGDXT5) ||
|
(avctx->codec_tag == MKTAG('H','a','p','Y') && (section_type & 0x0F) != HAP_FMT_YCOCGDXT5) ||
|
||||||
(avctx->codec_tag == MKTAG('H','a','p','A') && (section_type & 0x0F) != HAP_FMT_RGTC1)) {
|
(avctx->codec_tag == MKTAG('H','a','p','A') && (section_type & 0x0F) != HAP_FMT_RGTC1) ||
|
||||||
|
((avctx->codec_tag == MKTAG('H','a','p','M') && (section_type & 0x0F) != HAP_FMT_RGTC1) &&
|
||||||
|
(section_type & 0x0F) != HAP_FMT_YCOCGDXT5)) {
|
||||||
av_log(avctx, AV_LOG_ERROR,
|
av_log(avctx, AV_LOG_ERROR,
|
||||||
"Invalid texture format %#04x.\n", section_type & 0x0F);
|
"Invalid texture format %#04x.\n", section_type & 0x0F);
|
||||||
return AVERROR_INVALIDDATA;
|
return AVERROR_INVALIDDATA;
|
||||||
@ -177,7 +181,7 @@ static int hap_parse_frame_header(AVCodecContext *avctx)
|
|||||||
if (ret == 0) {
|
if (ret == 0) {
|
||||||
ctx->chunks[0].compressor = section_type & 0xF0;
|
ctx->chunks[0].compressor = section_type & 0xF0;
|
||||||
ctx->chunks[0].compressed_offset = 0;
|
ctx->chunks[0].compressed_offset = 0;
|
||||||
ctx->chunks[0].compressed_size = section_size;
|
ctx->chunks[0].compressed_size = ctx->texture_section_size;
|
||||||
}
|
}
|
||||||
if (ctx->chunks[0].compressor == HAP_COMP_NONE) {
|
if (ctx->chunks[0].compressor == HAP_COMP_NONE) {
|
||||||
compressorstr = "none";
|
compressorstr = "none";
|
||||||
@ -298,6 +302,9 @@ static int decompress_texture_thread_internal(AVCodecContext *avctx, void *arg,
|
|||||||
if (texture_num == 0) {
|
if (texture_num == 0) {
|
||||||
ctx->tex_fun(p + x * 16, frame->linesize[0],
|
ctx->tex_fun(p + x * 16, frame->linesize[0],
|
||||||
d + (off + x) * ctx->tex_rat);
|
d + (off + x) * ctx->tex_rat);
|
||||||
|
} else {
|
||||||
|
ctx->tex_fun2(p + x * 16, frame->linesize[0],
|
||||||
|
d + (off + x) * ctx->tex_rat2);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -311,6 +318,12 @@ static int decompress_texture_thread(AVCodecContext *avctx, void *arg,
|
|||||||
return decompress_texture_thread_internal(avctx, arg, slice, thread_nb, 0);
|
return decompress_texture_thread_internal(avctx, arg, slice, thread_nb, 0);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
static int decompress_texture2_thread(AVCodecContext *avctx, void *arg,
|
||||||
|
int slice, int thread_nb)
|
||||||
|
{
|
||||||
|
return decompress_texture_thread_internal(avctx, arg, slice, thread_nb, 1);
|
||||||
|
}
|
||||||
|
|
||||||
static int hap_decode(AVCodecContext *avctx, void *data,
|
static int hap_decode(AVCodecContext *avctx, void *data,
|
||||||
int *got_frame, AVPacket *avpkt)
|
int *got_frame, AVPacket *avpkt)
|
||||||
{
|
{
|
||||||
@ -318,6 +331,8 @@ static int hap_decode(AVCodecContext *avctx, void *data,
|
|||||||
ThreadFrame tframe;
|
ThreadFrame tframe;
|
||||||
int ret, i, t;
|
int ret, i, t;
|
||||||
int tex_size;
|
int tex_size;
|
||||||
|
int section_size;
|
||||||
|
enum HapSectionType section_type;
|
||||||
int start_texture_section = 0;
|
int start_texture_section = 0;
|
||||||
int tex_rat[2] = {0, 0};
|
int tex_rat[2] = {0, 0};
|
||||||
|
|
||||||
@ -325,6 +340,19 @@ static int hap_decode(AVCodecContext *avctx, void *data,
|
|||||||
|
|
||||||
tex_rat[0] = ctx->tex_rat;
|
tex_rat[0] = ctx->tex_rat;
|
||||||
|
|
||||||
|
/* check for multi texture header */
|
||||||
|
if (ctx->texture_count == 2) {
|
||||||
|
ret = parse_section_header(&ctx->gbc, §ion_size, §ion_type);
|
||||||
|
if (ret != 0)
|
||||||
|
return ret;
|
||||||
|
if ((section_type & 0x0F) != 0x0D) {
|
||||||
|
av_log(avctx, AV_LOG_ERROR, "Invalid section type in 2 textures mode %#04x.\n", section_type);
|
||||||
|
return AVERROR_INVALIDDATA;
|
||||||
|
}
|
||||||
|
start_texture_section = 4;
|
||||||
|
tex_rat[1] = ctx->tex_rat2;
|
||||||
|
}
|
||||||
|
|
||||||
/* Get the output frame ready to receive data */
|
/* Get the output frame ready to receive data */
|
||||||
tframe.f = data;
|
tframe.f = data;
|
||||||
ret = ff_thread_get_buffer(avctx, &tframe, 0);
|
ret = ff_thread_get_buffer(avctx, &tframe, 0);
|
||||||
@ -339,6 +367,8 @@ static int hap_decode(AVCodecContext *avctx, void *data,
|
|||||||
if (ret < 0)
|
if (ret < 0)
|
||||||
return ret;
|
return ret;
|
||||||
|
|
||||||
|
start_texture_section += ctx->texture_section_size + 4;
|
||||||
|
|
||||||
if (avctx->codec->update_thread_context)
|
if (avctx->codec->update_thread_context)
|
||||||
ff_thread_finish_setup(avctx);
|
ff_thread_finish_setup(avctx);
|
||||||
|
|
||||||
@ -346,7 +376,7 @@ static int hap_decode(AVCodecContext *avctx, void *data,
|
|||||||
if (hap_can_use_tex_in_place(ctx)) {
|
if (hap_can_use_tex_in_place(ctx)) {
|
||||||
/* Only DXTC texture compression in a contiguous block */
|
/* Only DXTC texture compression in a contiguous block */
|
||||||
ctx->tex_data = ctx->gbc.buffer;
|
ctx->tex_data = ctx->gbc.buffer;
|
||||||
tex_size = bytestream2_get_bytes_left(&ctx->gbc);
|
tex_size = FFMIN(ctx->texture_section_size, bytestream2_get_bytes_left(&ctx->gbc));
|
||||||
} else {
|
} else {
|
||||||
/* Perform the second-stage decompression */
|
/* Perform the second-stage decompression */
|
||||||
ret = av_reallocp(&ctx->tex_buf, ctx->tex_size);
|
ret = av_reallocp(&ctx->tex_buf, ctx->tex_size);
|
||||||
@ -367,7 +397,7 @@ static int hap_decode(AVCodecContext *avctx, void *data,
|
|||||||
|
|
||||||
if (tex_size < (avctx->coded_width / TEXTURE_BLOCK_W)
|
if (tex_size < (avctx->coded_width / TEXTURE_BLOCK_W)
|
||||||
*(avctx->coded_height / TEXTURE_BLOCK_H)
|
*(avctx->coded_height / TEXTURE_BLOCK_H)
|
||||||
*ctx->tex_rat) {
|
*tex_rat[t]) {
|
||||||
av_log(avctx, AV_LOG_ERROR, "Insufficient data\n");
|
av_log(avctx, AV_LOG_ERROR, "Insufficient data\n");
|
||||||
return AVERROR_INVALIDDATA;
|
return AVERROR_INVALIDDATA;
|
||||||
}
|
}
|
||||||
@ -375,6 +405,9 @@ static int hap_decode(AVCodecContext *avctx, void *data,
|
|||||||
/* Use the decompress function on the texture, one block per thread */
|
/* Use the decompress function on the texture, one block per thread */
|
||||||
if (t == 0){
|
if (t == 0){
|
||||||
avctx->execute2(avctx, decompress_texture_thread, tframe.f, NULL, ctx->slice_count);
|
avctx->execute2(avctx, decompress_texture_thread, tframe.f, NULL, ctx->slice_count);
|
||||||
|
} else{
|
||||||
|
tframe.f = data;
|
||||||
|
avctx->execute2(avctx, decompress_texture2_thread, tframe.f, NULL, ctx->slice_count);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -432,8 +465,14 @@ static av_cold int hap_init(AVCodecContext *avctx)
|
|||||||
avctx->pix_fmt = AV_PIX_FMT_RGB0;
|
avctx->pix_fmt = AV_PIX_FMT_RGB0;
|
||||||
break;
|
break;
|
||||||
case MKTAG('H','a','p','M'):
|
case MKTAG('H','a','p','M'):
|
||||||
avpriv_report_missing_feature(avctx, "HapQAlpha");
|
texture_name = "DXT5-YCoCg-scaled / RGTC1";
|
||||||
return AVERROR_PATCHWELCOME;
|
ctx->tex_rat = 16;
|
||||||
|
ctx->tex_rat2 = 8;
|
||||||
|
ctx->tex_fun = ctx->dxtc.dxt5ys_block;
|
||||||
|
ctx->tex_fun2 = ctx->dxtc.rgtc1u_alpha_block;
|
||||||
|
avctx->pix_fmt = AV_PIX_FMT_RGBA;
|
||||||
|
ctx->texture_count = 2;
|
||||||
|
break;
|
||||||
default:
|
default:
|
||||||
return AVERROR_DECODER_NOT_FOUND;
|
return AVERROR_DECODER_NOT_FOUND;
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user