2007-04-29 09:37:07 +00:00
|
|
|
/*
|
|
|
|
* V.Flash PTX (.ptx) image decoder
|
|
|
|
* Copyright (c) 2007 Ivo van Poorten
|
|
|
|
*
|
|
|
|
* This file is part of FFmpeg.
|
|
|
|
*
|
|
|
|
* FFmpeg is free software; you can redistribute it and/or
|
|
|
|
* 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.
|
|
|
|
*
|
|
|
|
* FFmpeg is distributed in the hope that it will be useful,
|
|
|
|
* 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
|
|
|
|
* License along with FFmpeg; if not, write to the Free Software
|
|
|
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
|
|
|
*/
|
|
|
|
|
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"
|
|
|
|
|
|
|
|
typedef struct PTXContext {
|
|
|
|
AVFrame picture;
|
|
|
|
} PTXContext;
|
|
|
|
|
2008-03-21 03:11:20 +00:00
|
|
|
static av_cold int ptx_init(AVCodecContext *avctx) {
|
2007-04-29 09:37:07 +00:00
|
|
|
PTXContext *s = avctx->priv_data;
|
|
|
|
|
2007-12-26 16:23:25 +00:00
|
|
|
avcodec_get_frame_defaults(&s->picture);
|
|
|
|
avctx->coded_frame= &s->picture;
|
2007-04-29 09:37:07 +00:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int ptx_decode_frame(AVCodecContext *avctx, void *data, int *data_size,
|
2009-04-07 15:59:50 +00:00
|
|
|
AVPacket *avpkt) {
|
|
|
|
const uint8_t *buf = avpkt->data;
|
2007-04-29 09:37:07 +00:00
|
|
|
PTXContext * const s = avctx->priv_data;
|
|
|
|
AVFrame *picture = data;
|
2007-12-27 11:49:28 +00:00
|
|
|
AVFrame * const p = &s->picture;
|
2007-04-29 09:37:07 +00:00
|
|
|
unsigned int offset, w, h, y, stride, bytes_per_pixel;
|
|
|
|
uint8_t *ptr;
|
|
|
|
|
|
|
|
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) {
|
2011-04-17 21:42:10 +00:00
|
|
|
av_log_ask_for_sample(avctx, "Image format is not RGB15.\n");
|
2007-04-29 09:37:07 +00:00
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
avctx->pix_fmt = PIX_FMT_RGB555;
|
|
|
|
|
|
|
|
if (offset != 0x2c)
|
2011-04-17 21:42:10 +00:00
|
|
|
av_log_ask_for_sample(avctx, "offset != 0x2c\n");
|
2007-04-29 09:37:07 +00:00
|
|
|
|
|
|
|
buf += offset;
|
|
|
|
|
|
|
|
if (p->data[0])
|
|
|
|
avctx->release_buffer(avctx, p);
|
|
|
|
|
2010-09-07 19:15:29 +00:00
|
|
|
if (av_image_check_size(w, h, 0, avctx))
|
2007-04-29 09:37:07 +00:00
|
|
|
return -1;
|
|
|
|
if (w != avctx->width || h != avctx->height)
|
|
|
|
avcodec_set_dimensions(avctx, w, h);
|
|
|
|
if (avctx->get_buffer(avctx, p) < 0) {
|
|
|
|
av_log(avctx, AV_LOG_ERROR, "get_buffer() failed\n");
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2011-04-27 23:40:44 +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];
|
|
|
|
|
|
|
|
for (y=0; y<h; 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;
|
|
|
|
}
|
|
|
|
|
2007-12-26 16:23:25 +00:00
|
|
|
*picture = s->picture;
|
2007-04-29 09:37:07 +00:00
|
|
|
*data_size = sizeof(AVPicture);
|
|
|
|
|
|
|
|
return offset + w*h*bytes_per_pixel;
|
|
|
|
}
|
|
|
|
|
2008-03-21 03:11:20 +00:00
|
|
|
static av_cold int ptx_end(AVCodecContext *avctx) {
|
2007-04-29 09:37:07 +00:00
|
|
|
PTXContext *s = avctx->priv_data;
|
|
|
|
|
|
|
|
if(s->picture.data[0])
|
|
|
|
avctx->release_buffer(avctx, &s->picture);
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2011-01-25 21:40:11 +00:00
|
|
|
AVCodec ff_ptx_decoder = {
|
2011-07-17 10:54:31 +00:00
|
|
|
.name = "ptx",
|
|
|
|
.type = AVMEDIA_TYPE_VIDEO,
|
|
|
|
.id = CODEC_ID_PTX,
|
|
|
|
.priv_data_size = sizeof(PTXContext),
|
|
|
|
.init = ptx_init,
|
|
|
|
.close = ptx_end,
|
|
|
|
.decode = ptx_decode_frame,
|
|
|
|
.capabilities = CODEC_CAP_DR1,
|
2008-06-12 21:50:13 +00:00
|
|
|
.long_name = NULL_IF_CONFIG_SMALL("V.Flash PTX image"),
|
2007-04-29 09:37:07 +00:00
|
|
|
};
|