1
0
mirror of https://github.com/FFmpeg/FFmpeg.git synced 2024-12-23 12:43:46 +02:00

lavc: add IFF ANIM decoder

Signed-off-by: Paul B Mahol <onemda@gmail.com>
This commit is contained in:
Paul B Mahol 2016-05-10 23:48:50 +02:00
parent 97946b20b6
commit cb928fc448
4 changed files with 820 additions and 98 deletions

View File

@ -33,6 +33,7 @@ version <next>:
- VAAPI-accelerated H.264/HEVC/MJPEG encoding - VAAPI-accelerated H.264/HEVC/MJPEG encoding
- DTS Express (LBR) decoder - DTS Express (LBR) decoder
- Generic OpenMAX IL encoder with support for Raspberry Pi - Generic OpenMAX IL encoder with support for Raspberry Pi
- IFF ANIM demuxer & decoder
version 3.0: version 3.0:
- Common Encryption (CENC) MP4 encoding and decoding support - Common Encryption (CENC) MP4 encoding and decoding support

View File

@ -887,7 +887,7 @@ static const AVCodecDescriptor codec_descriptors[] = {
.id = AV_CODEC_ID_IFF_ILBM, .id = AV_CODEC_ID_IFF_ILBM,
.type = AVMEDIA_TYPE_VIDEO, .type = AVMEDIA_TYPE_VIDEO,
.name = "iff_ilbm", .name = "iff_ilbm",
.long_name = NULL_IF_CONFIG_SMALL("IFF ILBM"), .long_name = NULL_IF_CONFIG_SMALL("IFF ACBM/ANIM/DEEP/ILBM/PBM"),
.props = AV_CODEC_PROP_LOSSY, .props = AV_CODEC_PROP_LOSSY,
}, },
{ {

File diff suppressed because it is too large Load Diff

View File

@ -60,6 +60,8 @@
#define ID_RGBN MKTAG('R','G','B','N') #define ID_RGBN MKTAG('R','G','B','N')
#define ID_DSD MKTAG('D','S','D',' ') #define ID_DSD MKTAG('D','S','D',' ')
#define ID_ANIM MKTAG('A','N','I','M') #define ID_ANIM MKTAG('A','N','I','M')
#define ID_ANHD MKTAG('A','N','H','D')
#define ID_DLTA MKTAG('D','L','T','A')
#define ID_FORM MKTAG('F','O','R','M') #define ID_FORM MKTAG('F','O','R','M')
#define ID_FRM8 MKTAG('F','R','M','8') #define ID_FRM8 MKTAG('F','R','M','8')
@ -113,6 +115,7 @@ typedef struct IffDemuxContext {
unsigned transparency; ///< transparency color index in palette unsigned transparency; ///< transparency color index in palette
unsigned masking; ///< masking method used unsigned masking; ///< masking method used
uint8_t tvdc[32]; ///< TVDC lookup table uint8_t tvdc[32]; ///< TVDC lookup table
int64_t pts;
} IffDemuxContext; } IffDemuxContext;
/* Metadata string read */ /* Metadata string read */
@ -147,7 +150,6 @@ static int iff_probe(AVProbeData *p)
AV_RL32(d+8) == ID_DEEP || AV_RL32(d+8) == ID_DEEP ||
AV_RL32(d+8) == ID_ILBM || AV_RL32(d+8) == ID_ILBM ||
AV_RL32(d+8) == ID_RGB8 || AV_RL32(d+8) == ID_RGB8 ||
AV_RL32(d+8) == ID_RGB8 ||
AV_RL32(d+8) == ID_ANIM || AV_RL32(d+8) == ID_ANIM ||
AV_RL32(d+8) == ID_RGBN)) || AV_RL32(d+8) == ID_RGBN)) ||
(AV_RL32(d) == ID_FRM8 && AV_RL32(d+12) == ID_DSD)) (AV_RL32(d) == ID_FRM8 && AV_RL32(d+12) == ID_DSD))
@ -367,8 +369,7 @@ static int iff_read_header(AVFormatContext *s)
// codec_tag used by ByteRun1 decoder to distinguish progressive (PBM) and interlaced (ILBM) content // codec_tag used by ByteRun1 decoder to distinguish progressive (PBM) and interlaced (ILBM) content
st->codecpar->codec_tag = avio_rl32(pb); st->codecpar->codec_tag = avio_rl32(pb);
if (st->codecpar->codec_tag == ID_ANIM) { if (st->codecpar->codec_tag == ID_ANIM) {
avio_skip(pb, 8); avio_skip(pb, 12);
st->codecpar->codec_tag = avio_rl32(pb);
} }
iff->bitmap_compression = -1; iff->bitmap_compression = -1;
iff->svx8_compression = -1; iff->svx8_compression = -1;
@ -484,6 +485,9 @@ static int iff_read_header(AVFormatContext *s)
} }
break; break;
case ID_ANHD:
break;
case ID_DPEL: case ID_DPEL:
if (data_size < 4 || (data_size & 3)) if (data_size < 4 || (data_size & 3))
return AVERROR_INVALIDDATA; return AVERROR_INVALIDDATA;
@ -626,6 +630,9 @@ static int iff_read_header(AVFormatContext *s)
avio_skip(pb, data_size - (avio_tell(pb) - orig_pos) + (data_size & 1)); avio_skip(pb, data_size - (avio_tell(pb) - orig_pos) + (data_size & 1));
} }
if (st->codecpar->codec_tag == ID_ANIM)
avio_seek(pb, 12, SEEK_SET);
else
avio_seek(pb, iff->body_pos, SEEK_SET); avio_seek(pb, iff->body_pos, SEEK_SET);
switch(st->codecpar->codec_type) { switch(st->codecpar->codec_type) {
@ -672,6 +679,8 @@ static int iff_read_header(AVFormatContext *s)
case AVMEDIA_TYPE_VIDEO: case AVMEDIA_TYPE_VIDEO:
iff->bpp = st->codecpar->bits_per_coded_sample; iff->bpp = st->codecpar->bits_per_coded_sample;
if (st->codecpar->codec_tag == ID_ANIM)
avpriv_set_pts_info(st, 32, 1, 60);
if ((screenmode & 0x800 /* Hold And Modify */) && iff->bpp <= 8) { if ((screenmode & 0x800 /* Hold And Modify */) && iff->bpp <= 8) {
iff->ham = iff->bpp > 6 ? 6 : 4; iff->ham = iff->bpp > 6 ? 6 : 4;
st->codecpar->bits_per_coded_sample = 24; st->codecpar->bits_per_coded_sample = 24;
@ -705,6 +714,28 @@ static int iff_read_header(AVFormatContext *s)
return 0; return 0;
} }
static unsigned get_anim_duration(uint8_t *buf, int size)
{
GetByteContext gb;
bytestream2_init(&gb, buf, size);
bytestream2_skip(&gb, 4);
while (bytestream2_get_bytes_left(&gb) > 8) {
unsigned chunk = bytestream2_get_le32(&gb);
unsigned size = bytestream2_get_be32(&gb);
if (chunk == ID_ANHD) {
if (size < 40)
break;
bytestream2_skip(&gb, 14);
return bytestream2_get_be32(&gb);
} else {
bytestream2_skip(&gb, size + size & 1);
}
}
return 10;
}
static int iff_read_packet(AVFormatContext *s, static int iff_read_packet(AVFormatContext *s,
AVPacket *pkt) AVPacket *pkt)
{ {
@ -714,8 +745,12 @@ static int iff_read_packet(AVFormatContext *s,
int ret; int ret;
int64_t pos = avio_tell(pb); int64_t pos = avio_tell(pb);
if (pos >= iff->body_end) if (st->codecpar->codec_tag == ID_ANIM) {
if (avio_feof(pb))
return AVERROR_EOF; return AVERROR_EOF;
} else if (pos >= iff->body_end) {
return AVERROR_EOF;
}
if (st->codecpar->codec_type == AVMEDIA_TYPE_AUDIO) { if (st->codecpar->codec_type == AVMEDIA_TYPE_AUDIO) {
if (st->codecpar->codec_tag == ID_DSD || st->codecpar->codec_tag == ID_MAUD) { if (st->codecpar->codec_tag == ID_DSD || st->codecpar->codec_tag == ID_MAUD) {
@ -725,28 +760,39 @@ static int iff_read_packet(AVFormatContext *s,
return AVERROR_INVALIDDATA; return AVERROR_INVALIDDATA;
ret = av_get_packet(pb, pkt, iff->body_size); ret = av_get_packet(pb, pkt, iff->body_size);
} }
} else if (st->codecpar->codec_type == AVMEDIA_TYPE_VIDEO) { } else if (st->codecpar->codec_type == AVMEDIA_TYPE_VIDEO &&
uint8_t *buf; st->codecpar->codec_tag == ID_ANIM) {
uint64_t data_size, orig_pos;
uint32_t chunk_id = 0;
if (iff->body_size > INT_MAX - 2) while (!avio_feof(pb)) {
return AVERROR_INVALIDDATA; if (avio_feof(pb))
if (av_new_packet(pkt, iff->body_size + 2) < 0) { return AVERROR_EOF;
return AVERROR(ENOMEM);
chunk_id = avio_rl32(pb);
data_size = avio_rb32(pb);
orig_pos = avio_tell(pb);
if (chunk_id == ID_FORM)
break;
else
avio_skip(pb, data_size);
} }
ret = av_get_packet(pb, pkt, data_size);
buf = pkt->data; pkt->pos = orig_pos;
bytestream_put_be16(&buf, 2); pkt->duration = get_anim_duration(pkt->data, pkt->size);
ret = avio_read(pb, buf, iff->body_size); if (pos == 12)
if (ret<0) { pkt->flags |= AV_PKT_FLAG_KEY;
av_packet_unref(pkt); } else if (st->codecpar->codec_type == AVMEDIA_TYPE_VIDEO &&
} else if (ret < iff->body_size) st->codecpar->codec_tag != ID_ANIM) {
av_shrink_packet(pkt, ret + 2); ret = av_get_packet(pb, pkt, iff->body_size);
pkt->pos = pos;
if (pos == iff->body_pos)
pkt->flags |= AV_PKT_FLAG_KEY;
} else { } else {
av_assert0(0); av_assert0(0);
} }
if (pos == iff->body_pos)
pkt->flags |= AV_PKT_FLAG_KEY;
if (ret < 0) if (ret < 0)
return ret; return ret;
pkt->stream_index = 0; pkt->stream_index = 0;