Commit 4af8cfd2 authored by kostya's avatar kostya

Make Bink decoder able to skip alpha plane

git-svn-id: file:///var/local/repositories/ffmpeg/trunk@21963 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent 7e3e43ca
...@@ -77,6 +77,7 @@ typedef struct BinkContext { ...@@ -77,6 +77,7 @@ typedef struct BinkContext {
DSPContext dsp; DSPContext dsp;
AVFrame pic, last; AVFrame pic, last;
int version; ///< internal Bink file version int version; ///< internal Bink file version
int has_alpha;
int swap_planes; int swap_planes;
ScanTable scantable; ///< permutated scantable for DCT coeffs decoding ScanTable scantable; ///< permutated scantable for DCT coeffs decoding
...@@ -692,6 +693,14 @@ static int decode_frame(AVCodecContext *avctx, void *data, int *data_size, AVPac ...@@ -692,6 +693,14 @@ static int decode_frame(AVCodecContext *avctx, void *data, int *data_size, AVPac
} }
init_get_bits(&gb, pkt->data, bits_count); init_get_bits(&gb, pkt->data, bits_count);
if (c->has_alpha) {
int aplane_bits = get_bits_long(&gb, 32) << 3;
if (aplane_bits <= 32 || (aplane_bits & 0x1F)) {
av_log(avctx, AV_LOG_ERROR, "Incorrect alpha plane size %d\n", aplane_bits);
return -1;
}
skip_bits_long(&gb, aplane_bits - 32);
}
if (c->version >= 'i') if (c->version >= 'i')
skip_bits_long(&gb, 32); skip_bits_long(&gb, 32);
...@@ -927,6 +936,7 @@ static av_cold int decode_init(AVCodecContext *avctx) ...@@ -927,6 +936,7 @@ static av_cold int decode_init(AVCodecContext *avctx)
av_log(avctx, AV_LOG_ERROR, "Too old version '%c'\n", c->version); av_log(avctx, AV_LOG_ERROR, "Too old version '%c'\n", c->version);
return -1; return -1;
} }
c->has_alpha = 0; //TODO: demuxer should supply decoder with flags
c->swap_planes = c->version >= 'i'; c->swap_planes = c->version >= 'i';
if (!bink_trees[15].table) { if (!bink_trees[15].table) {
for (i = 0; i < 16; i++) { for (i = 0; i < 16; i++) {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment