2003-11-07 22:39:18 +00:00
|
|
|
/*
|
|
|
|
* Quicktime Planar RGB (8BPS) Video Decoder
|
|
|
|
* Copyright (C) 2003 Roberto Togni
|
|
|
|
*
|
2011-03-18 17:35:10 +00:00
|
|
|
* This file is part of Libav.
|
2006-10-07 15:30:46 +00:00
|
|
|
*
|
2011-03-18 17:35:10 +00:00
|
|
|
* Libav is free software; you can redistribute it and/or
|
2003-11-07 22:39:18 +00:00
|
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
2006-10-07 15:30:46 +00:00
|
|
|
* version 2.1 of the License, or (at your option) any later version.
|
2003-11-07 22:39:18 +00:00
|
|
|
*
|
2011-03-18 17:35:10 +00:00
|
|
|
* Libav is distributed in the hope that it will be useful,
|
2003-11-07 22:39:18 +00:00
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* Lesser General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Lesser General Public
|
2011-03-18 17:35:10 +00:00
|
|
|
* License along with Libav; if not, write to the Free Software
|
2006-01-12 22:43:26 +00:00
|
|
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
2003-11-07 22:39:18 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
2010-04-20 14:45:34 +00:00
|
|
|
* @file
|
2008-06-07 13:14:49 +00:00
|
|
|
* QT 8BPS Video Decoder by Roberto Togni
|
2003-11-07 22:39:18 +00:00
|
|
|
* For more information about the 8BPS format, visit:
|
|
|
|
* http://www.pcisys.net/~melanson/codecs/
|
|
|
|
*
|
|
|
|
* Supports: PAL8 (RGB 8bpp, paletted)
|
2007-02-07 01:48:09 +00:00
|
|
|
* : BGR24 (RGB 24bpp) (can also output it as RGB32)
|
|
|
|
* : RGB32 (RGB 32bpp, 4th plane is probably alpha and it's ignored)
|
2003-11-07 22:39:18 +00:00
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
2012-08-06 13:49:32 +00:00
|
|
|
#include <string.h>
|
2003-11-07 22:39:18 +00:00
|
|
|
|
2012-08-06 13:49:32 +00:00
|
|
|
#include "libavutil/internal.h"
|
2009-01-11 22:19:48 +00:00
|
|
|
#include "libavutil/intreadwrite.h"
|
2003-11-07 22:39:18 +00:00
|
|
|
#include "avcodec.h"
|
2012-11-10 12:22:56 +00:00
|
|
|
#include "internal.h"
|
2003-11-07 22:39:18 +00:00
|
|
|
|
|
|
|
|
2012-10-06 10:10:34 +00:00
|
|
|
static const enum AVPixelFormat pixfmt_rgb24[] = {
|
|
|
|
AV_PIX_FMT_BGR24, AV_PIX_FMT_RGB32, AV_PIX_FMT_NONE };
|
2003-11-07 22:39:18 +00:00
|
|
|
|
|
|
|
typedef struct EightBpsContext {
|
2012-01-26 19:21:15 +00:00
|
|
|
AVCodecContext *avctx;
|
|
|
|
AVFrame pic;
|
2003-11-07 22:39:18 +00:00
|
|
|
|
2012-01-26 19:21:15 +00:00
|
|
|
unsigned char planes;
|
|
|
|
unsigned char planemap[4];
|
2003-11-07 22:39:18 +00:00
|
|
|
|
2012-01-26 19:21:15 +00:00
|
|
|
uint32_t pal[256];
|
2003-11-07 22:39:18 +00:00
|
|
|
} EightBpsContext;
|
|
|
|
|
2012-01-26 19:21:15 +00:00
|
|
|
static int decode_frame(AVCodecContext *avctx, void *data,
|
2012-11-13 18:35:22 +00:00
|
|
|
int *got_frame, AVPacket *avpkt)
|
2003-11-07 22:39:18 +00:00
|
|
|
{
|
2012-01-26 19:21:15 +00:00
|
|
|
const uint8_t *buf = avpkt->data;
|
|
|
|
int buf_size = avpkt->size;
|
|
|
|
EightBpsContext * const c = avctx->priv_data;
|
|
|
|
const unsigned char *encoded = buf;
|
|
|
|
unsigned char *pixptr, *pixptr_end;
|
|
|
|
unsigned int height = avctx->height; // Real image height
|
|
|
|
unsigned int dlen, p, row;
|
|
|
|
const unsigned char *lp, *dp;
|
|
|
|
unsigned char count;
|
|
|
|
unsigned int px_inc;
|
|
|
|
unsigned int planes = c->planes;
|
|
|
|
unsigned char *planemap = c->planemap;
|
2012-11-14 07:59:03 +00:00
|
|
|
int ret;
|
2012-01-26 19:21:15 +00:00
|
|
|
|
|
|
|
if (c->pic.data[0])
|
|
|
|
avctx->release_buffer(avctx, &c->pic);
|
|
|
|
|
|
|
|
c->pic.reference = 0;
|
|
|
|
c->pic.buffer_hints = FF_BUFFER_HINTS_VALID;
|
2012-11-14 07:59:03 +00:00
|
|
|
if ((ret = ff_get_buffer(avctx, &c->pic)) < 0) {
|
2012-01-26 19:21:15 +00:00
|
|
|
av_log(avctx, AV_LOG_ERROR, "get_buffer() failed\n");
|
2012-11-14 07:59:03 +00:00
|
|
|
return ret;
|
2012-01-26 19:21:15 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Set data pointer after line lengths */
|
|
|
|
dp = encoded + planes * (height << 1);
|
|
|
|
|
|
|
|
/* Ignore alpha plane, don't know what to do with it */
|
|
|
|
if (planes == 4)
|
|
|
|
planes--;
|
|
|
|
|
2012-10-06 10:10:34 +00:00
|
|
|
px_inc = planes + (avctx->pix_fmt == AV_PIX_FMT_RGB32);
|
2012-01-26 19:21:15 +00:00
|
|
|
|
|
|
|
for (p = 0; p < planes; p++) {
|
|
|
|
/* Lines length pointer for this plane */
|
|
|
|
lp = encoded + p * (height << 1);
|
|
|
|
|
|
|
|
/* Decode a plane */
|
|
|
|
for (row = 0; row < height; row++) {
|
|
|
|
pixptr = c->pic.data[0] + row * c->pic.linesize[0] + planemap[p];
|
|
|
|
pixptr_end = pixptr + c->pic.linesize[0];
|
|
|
|
dlen = av_be2ne16(*(const unsigned short *)(lp + row * 2));
|
|
|
|
/* Decode a row of this plane */
|
|
|
|
while (dlen > 0) {
|
|
|
|
if (dp + 1 >= buf + buf_size)
|
2012-11-14 07:59:03 +00:00
|
|
|
return AVERROR_INVALIDDATA;
|
2012-01-26 19:21:15 +00:00
|
|
|
if ((count = *dp++) <= 127) {
|
|
|
|
count++;
|
|
|
|
dlen -= count + 1;
|
|
|
|
if (pixptr + count * px_inc > pixptr_end)
|
|
|
|
break;
|
|
|
|
if (dp + count > buf + buf_size)
|
2012-11-14 07:59:03 +00:00
|
|
|
return AVERROR_INVALIDDATA;
|
2012-01-26 19:21:15 +00:00
|
|
|
while (count--) {
|
|
|
|
*pixptr = *dp++;
|
|
|
|
pixptr += px_inc;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
count = 257 - count;
|
|
|
|
if (pixptr + count * px_inc > pixptr_end)
|
|
|
|
break;
|
|
|
|
while (count--) {
|
|
|
|
*pixptr = *dp;
|
|
|
|
pixptr += px_inc;
|
|
|
|
}
|
|
|
|
dp++;
|
|
|
|
dlen -= 2;
|
2005-12-22 01:10:11 +00:00
|
|
|
}
|
2012-01-26 19:21:15 +00:00
|
|
|
}
|
2005-12-22 01:10:11 +00:00
|
|
|
}
|
2012-01-26 19:21:15 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if (avctx->bits_per_coded_sample <= 8) {
|
|
|
|
const uint8_t *pal = av_packet_get_side_data(avpkt,
|
|
|
|
AV_PKT_DATA_PALETTE,
|
|
|
|
NULL);
|
|
|
|
if (pal) {
|
|
|
|
c->pic.palette_has_changed = 1;
|
|
|
|
memcpy(c->pal, pal, AVPALETTE_SIZE);
|
2005-12-22 01:10:11 +00:00
|
|
|
}
|
|
|
|
|
2012-01-26 19:21:15 +00:00
|
|
|
memcpy (c->pic.data[1], c->pal, AVPALETTE_SIZE);
|
|
|
|
}
|
|
|
|
|
2012-11-13 18:35:22 +00:00
|
|
|
*got_frame = 1;
|
2012-01-26 19:21:15 +00:00
|
|
|
*(AVFrame*)data = c->pic;
|
2005-12-22 01:10:11 +00:00
|
|
|
|
2012-01-26 19:21:15 +00:00
|
|
|
/* always report that the buffer was completely consumed */
|
|
|
|
return buf_size;
|
2003-11-07 22:39:18 +00:00
|
|
|
}
|
|
|
|
|
2008-03-21 03:11:20 +00:00
|
|
|
static av_cold int decode_init(AVCodecContext *avctx)
|
2003-11-07 22:39:18 +00:00
|
|
|
{
|
2012-01-26 19:21:15 +00:00
|
|
|
EightBpsContext * const c = avctx->priv_data;
|
|
|
|
|
|
|
|
c->avctx = avctx;
|
|
|
|
c->pic.data[0] = NULL;
|
|
|
|
|
|
|
|
switch (avctx->bits_per_coded_sample) {
|
|
|
|
case 8:
|
2012-10-06 10:10:34 +00:00
|
|
|
avctx->pix_fmt = AV_PIX_FMT_PAL8;
|
2012-01-26 19:21:15 +00:00
|
|
|
c->planes = 1;
|
|
|
|
c->planemap[0] = 0; // 1st plane is palette indexes
|
|
|
|
break;
|
|
|
|
case 24:
|
|
|
|
avctx->pix_fmt = avctx->get_format(avctx, pixfmt_rgb24);
|
|
|
|
c->planes = 3;
|
|
|
|
c->planemap[0] = 2; // 1st plane is red
|
|
|
|
c->planemap[1] = 1; // 2nd plane is green
|
|
|
|
c->planemap[2] = 0; // 3rd plane is blue
|
|
|
|
break;
|
|
|
|
case 32:
|
2012-10-06 10:10:34 +00:00
|
|
|
avctx->pix_fmt = AV_PIX_FMT_RGB32;
|
2012-01-26 19:21:15 +00:00
|
|
|
c->planes = 4;
|
2009-07-26 12:20:04 +00:00
|
|
|
#if HAVE_BIGENDIAN
|
2012-01-26 19:21:15 +00:00
|
|
|
c->planemap[0] = 1; // 1st plane is red
|
|
|
|
c->planemap[1] = 2; // 2nd plane is green
|
|
|
|
c->planemap[2] = 3; // 3rd plane is blue
|
|
|
|
c->planemap[3] = 0; // 4th plane is alpha???
|
2003-11-07 22:39:18 +00:00
|
|
|
#else
|
2012-01-26 19:21:15 +00:00
|
|
|
c->planemap[0] = 2; // 1st plane is red
|
|
|
|
c->planemap[1] = 1; // 2nd plane is green
|
|
|
|
c->planemap[2] = 0; // 3rd plane is blue
|
|
|
|
c->planemap[3] = 3; // 4th plane is alpha???
|
2003-11-07 22:39:18 +00:00
|
|
|
#endif
|
2012-01-26 19:21:15 +00:00
|
|
|
break;
|
|
|
|
default:
|
|
|
|
av_log(avctx, AV_LOG_ERROR, "Error: Unsupported color depth: %u.\n",
|
|
|
|
avctx->bits_per_coded_sample);
|
2012-11-14 07:59:03 +00:00
|
|
|
return AVERROR_INVALIDDATA;
|
2012-01-26 19:21:15 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
2003-11-07 22:39:18 +00:00
|
|
|
}
|
|
|
|
|
2008-03-21 03:11:20 +00:00
|
|
|
static av_cold int decode_end(AVCodecContext *avctx)
|
2003-11-07 22:39:18 +00:00
|
|
|
{
|
2012-01-26 19:21:15 +00:00
|
|
|
EightBpsContext * const c = avctx->priv_data;
|
2003-11-07 22:39:18 +00:00
|
|
|
|
2012-01-26 19:21:15 +00:00
|
|
|
if (c->pic.data[0])
|
|
|
|
avctx->release_buffer(avctx, &c->pic);
|
2003-11-07 22:39:18 +00:00
|
|
|
|
2012-01-26 19:21:15 +00:00
|
|
|
return 0;
|
2003-11-07 22:39:18 +00:00
|
|
|
}
|
|
|
|
|
2011-01-25 21:40:11 +00:00
|
|
|
AVCodec ff_eightbps_decoder = {
|
2011-07-17 10:54:31 +00:00
|
|
|
.name = "8bps",
|
|
|
|
.type = AVMEDIA_TYPE_VIDEO,
|
2012-08-05 09:11:04 +00:00
|
|
|
.id = AV_CODEC_ID_8BPS,
|
2011-07-17 10:54:31 +00:00
|
|
|
.priv_data_size = sizeof(EightBpsContext),
|
|
|
|
.init = decode_init,
|
|
|
|
.close = decode_end,
|
|
|
|
.decode = decode_frame,
|
|
|
|
.capabilities = CODEC_CAP_DR1,
|
2011-08-03 21:27:50 +00:00
|
|
|
.long_name = NULL_IF_CONFIG_SMALL("QuickTime 8BPS video"),
|
2003-11-07 22:39:18 +00:00
|
|
|
};
|