2007-04-29 09:37:07 +00:00
|
|
|
/*
|
|
|
|
* V.Flash PTX (.ptx) image decoder
|
|
|
|
* Copyright (c) 2007 Ivo van Poorten
|
|
|
|
*
|
2011-03-18 17:35:10 +00:00
|
|
|
* This file is part of Libav.
|
2007-04-29 09:37:07 +00:00
|
|
|
*
|
2011-03-18 17:35:10 +00:00
|
|
|
* Libav is free software; you can redistribute it and/or
|
2007-04-29 09:37:07 +00:00
|
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
|
|
|
* version 2.1 of the License, or (at your option) any later version.
|
|
|
|
*
|
2011-03-18 17:35:10 +00:00
|
|
|
* Libav is distributed in the hope that it will be useful,
|
2007-04-29 09:37:07 +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
|
2007-04-29 09:37:07 +00:00
|
|
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
|
|
|
*/
|
|
|
|
|
2012-08-06 13:49:32 +00:00
|
|
|
#include "libavutil/common.h"
|
2009-01-11 22:19:48 +00:00
|
|
|
#include "libavutil/intreadwrite.h"
|
2011-02-07 13:37:08 +00:00
|
|
|
#include "libavutil/imgutils.h"
|
2007-04-29 09:37:07 +00:00
|
|
|
#include "avcodec.h"
|
2012-11-10 12:22:56 +00:00
|
|
|
#include "internal.h"
|
2007-04-29 09:37:07 +00:00
|
|
|
|
2012-11-13 18:35:22 +00:00
|
|
|
static int ptx_decode_frame(AVCodecContext *avctx, void *data, int *got_frame,
|
2009-04-07 15:59:50 +00:00
|
|
|
AVPacket *avpkt) {
|
|
|
|
const uint8_t *buf = avpkt->data;
|
2011-10-02 00:48:12 +00:00
|
|
|
const uint8_t *buf_end = avpkt->data + avpkt->size;
|
2012-11-21 20:34:46 +00:00
|
|
|
AVFrame * const p = data;
|
2007-04-29 09:37:07 +00:00
|
|
|
unsigned int offset, w, h, y, stride, bytes_per_pixel;
|
2012-11-17 12:46:51 +00:00
|
|
|
int ret;
|
2007-04-29 09:37:07 +00:00
|
|
|
uint8_t *ptr;
|
|
|
|
|
2011-10-02 00:48:12 +00:00
|
|
|
if (buf_end - buf < 14)
|
|
|
|
return AVERROR_INVALIDDATA;
|
2007-04-29 09:37:07 +00:00
|
|
|
offset = AV_RL16(buf);
|
|
|
|
w = AV_RL16(buf+8);
|
|
|
|
h = AV_RL16(buf+10);
|
|
|
|
bytes_per_pixel = AV_RL16(buf+12) >> 3;
|
|
|
|
|
|
|
|
if (bytes_per_pixel != 2) {
|
2013-03-13 20:17:05 +00:00
|
|
|
avpriv_request_sample(avctx, "Image format not RGB15");
|
2012-12-23 17:10:05 +00:00
|
|
|
return AVERROR_PATCHWELCOME;
|
2007-04-29 09:37:07 +00:00
|
|
|
}
|
|
|
|
|
2012-10-06 10:10:34 +00:00
|
|
|
avctx->pix_fmt = AV_PIX_FMT_RGB555;
|
2007-04-29 09:37:07 +00:00
|
|
|
|
2011-10-02 00:48:12 +00:00
|
|
|
if (buf_end - buf < offset)
|
|
|
|
return AVERROR_INVALIDDATA;
|
2007-04-29 09:37:07 +00:00
|
|
|
if (offset != 0x2c)
|
2013-03-13 20:17:05 +00:00
|
|
|
avpriv_request_sample(avctx, "offset != 0x2c");
|
2007-04-29 09:37:07 +00:00
|
|
|
|
|
|
|
buf += offset;
|
|
|
|
|
2013-10-27 09:02:26 +00:00
|
|
|
if ((ret = ff_set_dimensions(avctx, w, h)) < 0)
|
2012-11-17 12:46:51 +00:00
|
|
|
return ret;
|
2013-10-27 09:02:26 +00:00
|
|
|
|
2012-11-21 20:34:46 +00:00
|
|
|
if ((ret = ff_get_buffer(avctx, p, 0)) < 0) {
|
2007-04-29 09:37:07 +00:00
|
|
|
av_log(avctx, AV_LOG_ERROR, "get_buffer() failed\n");
|
2012-11-17 12:46:51 +00:00
|
|
|
return ret;
|
2007-04-29 09:37:07 +00:00
|
|
|
}
|
|
|
|
|
2011-04-29 16:53:57 +00:00
|
|
|
p->pict_type = AV_PICTURE_TYPE_I;
|
2007-04-29 09:37:07 +00:00
|
|
|
|
|
|
|
ptr = p->data[0];
|
|
|
|
stride = p->linesize[0];
|
|
|
|
|
2011-12-10 15:57:32 +00:00
|
|
|
for (y = 0; y < h && buf_end - buf >= w * bytes_per_pixel; y++) {
|
2009-07-26 12:20:04 +00:00
|
|
|
#if HAVE_BIGENDIAN
|
2007-04-29 09:37:07 +00:00
|
|
|
unsigned int x;
|
|
|
|
for (x=0; x<w*bytes_per_pixel; x+=bytes_per_pixel)
|
2007-08-09 17:01:15 +00:00
|
|
|
AV_WN16(ptr+x, AV_RL16(buf+x));
|
2007-04-29 09:37:07 +00:00
|
|
|
#else
|
|
|
|
memcpy(ptr, buf, w*bytes_per_pixel);
|
|
|
|
#endif
|
|
|
|
ptr += stride;
|
|
|
|
buf += w*bytes_per_pixel;
|
|
|
|
}
|
|
|
|
|
2012-11-13 18:35:22 +00:00
|
|
|
*got_frame = 1;
|
2007-04-29 09:37:07 +00:00
|
|
|
|
2011-12-10 11:55:08 +00:00
|
|
|
if (y < h) {
|
|
|
|
av_log(avctx, AV_LOG_WARNING, "incomplete packet\n");
|
|
|
|
return avpkt->size;
|
|
|
|
}
|
|
|
|
|
2007-04-29 09:37:07 +00:00
|
|
|
return offset + w*h*bytes_per_pixel;
|
|
|
|
}
|
|
|
|
|
2011-01-25 21:40:11 +00:00
|
|
|
AVCodec ff_ptx_decoder = {
|
2011-07-17 10:54:31 +00:00
|
|
|
.name = "ptx",
|
2013-10-03 20:57:53 +00:00
|
|
|
.long_name = NULL_IF_CONFIG_SMALL("V.Flash PTX image"),
|
2011-07-17 10:54:31 +00:00
|
|
|
.type = AVMEDIA_TYPE_VIDEO,
|
2012-08-05 09:11:04 +00:00
|
|
|
.id = AV_CODEC_ID_PTX,
|
2011-07-17 10:54:31 +00:00
|
|
|
.decode = ptx_decode_frame,
|
2015-07-07 00:41:27 +00:00
|
|
|
.capabilities = AV_CODEC_CAP_DR1,
|
2007-04-29 09:37:07 +00:00
|
|
|
};
|