2011-12-09 10:06:02 +00:00
|
|
|
/*
|
|
|
|
* Dxtory decoder
|
|
|
|
*
|
|
|
|
* Copyright (c) 2011 Konstantin Shishkov
|
|
|
|
*
|
|
|
|
* This file is part of Libav.
|
|
|
|
*
|
|
|
|
* Libav 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.
|
|
|
|
*
|
|
|
|
* Libav 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 Libav; if not, write to the Free Software
|
|
|
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "avcodec.h"
|
2012-11-10 12:22:56 +00:00
|
|
|
#include "internal.h"
|
2012-08-06 13:49:32 +00:00
|
|
|
#include "libavutil/common.h"
|
2011-12-09 10:06:02 +00:00
|
|
|
#include "libavutil/intreadwrite.h"
|
|
|
|
|
|
|
|
static av_cold int decode_init(AVCodecContext *avctx)
|
|
|
|
{
|
2012-10-06 10:10:34 +00:00
|
|
|
avctx->pix_fmt = AV_PIX_FMT_YUV420P;
|
2011-12-09 10:06:02 +00:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2012-11-13 18:35:22 +00:00
|
|
|
static int decode_frame(AVCodecContext *avctx, void *data, int *got_frame,
|
2011-12-09 10:06:02 +00:00
|
|
|
AVPacket *avpkt)
|
|
|
|
{
|
|
|
|
int h, w;
|
2012-11-21 20:34:46 +00:00
|
|
|
AVFrame *pic = data;
|
2011-12-09 10:06:02 +00:00
|
|
|
const uint8_t *src = avpkt->data;
|
|
|
|
uint8_t *Y1, *Y2, *U, *V;
|
|
|
|
int ret;
|
|
|
|
|
|
|
|
if (avpkt->size < avctx->width * avctx->height * 3 / 2 + 16) {
|
|
|
|
av_log(avctx, AV_LOG_ERROR, "packet too small\n");
|
|
|
|
return AVERROR_INVALIDDATA;
|
|
|
|
}
|
|
|
|
|
2012-11-21 20:34:46 +00:00
|
|
|
if ((ret = ff_get_buffer(avctx, pic, 0)) < 0)
|
2011-12-09 10:06:02 +00:00
|
|
|
return ret;
|
|
|
|
|
|
|
|
pic->pict_type = AV_PICTURE_TYPE_I;
|
|
|
|
pic->key_frame = 1;
|
|
|
|
|
|
|
|
if (AV_RL32(src) != 0x01000002) {
|
2013-03-13 20:17:05 +00:00
|
|
|
avpriv_request_sample(avctx, "Frame header %X", AV_RL32(src));
|
2011-12-09 10:06:02 +00:00
|
|
|
return AVERROR_PATCHWELCOME;
|
|
|
|
}
|
|
|
|
src += 16;
|
|
|
|
|
|
|
|
Y1 = pic->data[0];
|
|
|
|
Y2 = pic->data[0] + pic->linesize[0];
|
|
|
|
U = pic->data[1];
|
|
|
|
V = pic->data[2];
|
|
|
|
for (h = 0; h < avctx->height; h += 2) {
|
|
|
|
for (w = 0; w < avctx->width; w += 2) {
|
2012-10-23 11:03:10 +00:00
|
|
|
AV_COPY16(Y1 + w, src);
|
|
|
|
AV_COPY16(Y2 + w, src + 2);
|
2011-12-09 10:06:02 +00:00
|
|
|
U[w >> 1] = src[4] + 0x80;
|
|
|
|
V[w >> 1] = src[5] + 0x80;
|
|
|
|
src += 6;
|
|
|
|
}
|
|
|
|
Y1 += pic->linesize[0] << 1;
|
|
|
|
Y2 += pic->linesize[0] << 1;
|
|
|
|
U += pic->linesize[1];
|
|
|
|
V += pic->linesize[2];
|
|
|
|
}
|
|
|
|
|
2012-11-13 18:35:22 +00:00
|
|
|
*got_frame = 1;
|
2011-12-09 10:06:02 +00:00
|
|
|
|
|
|
|
return avpkt->size;
|
|
|
|
}
|
|
|
|
|
|
|
|
AVCodec ff_dxtory_decoder = {
|
|
|
|
.name = "dxtory",
|
|
|
|
.long_name = NULL_IF_CONFIG_SMALL("Dxtory"),
|
|
|
|
.type = AVMEDIA_TYPE_VIDEO,
|
2012-08-05 09:11:04 +00:00
|
|
|
.id = AV_CODEC_ID_DXTORY,
|
2011-12-09 10:06:02 +00:00
|
|
|
.init = decode_init,
|
|
|
|
.decode = decode_frame,
|
|
|
|
.capabilities = CODEC_CAP_DR1,
|
|
|
|
};
|