2003-07-27 23:20:31 +03:00
|
|
|
/*
|
2014-07-05 18:34:05 +03:00
|
|
|
* Cirrus Logic AccuPak (CLJR) decoder
|
2003-07-27 23:20:31 +03:00
|
|
|
* Copyright (c) 2003 Alex Beregszaszi
|
|
|
|
*
|
2011-03-18 19:35:10 +02:00
|
|
|
* This file is part of Libav.
|
2006-10-07 18:30:46 +03:00
|
|
|
*
|
2011-03-18 19:35:10 +02:00
|
|
|
* Libav is free software; you can redistribute it and/or
|
2003-07-27 23:20:31 +03:00
|
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
2006-10-07 18:30:46 +03:00
|
|
|
* version 2.1 of the License, or (at your option) any later version.
|
2003-07-27 23:20:31 +03:00
|
|
|
*
|
2011-03-18 19:35:10 +02:00
|
|
|
* Libav is distributed in the hope that it will be useful,
|
2003-07-27 23:20:31 +03: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 19:35:10 +02:00
|
|
|
* License along with Libav; if not, write to the Free Software
|
2006-01-13 00:43:26 +02:00
|
|
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
2003-07-27 23:20:31 +03:00
|
|
|
*/
|
2005-12-17 20:14:38 +02:00
|
|
|
|
2003-07-27 23:20:31 +03:00
|
|
|
/**
|
2010-04-20 17:45:34 +03:00
|
|
|
* @file
|
2014-07-05 18:34:05 +03:00
|
|
|
* Cirrus Logic AccuPak decoder.
|
2003-07-27 23:20:31 +03:00
|
|
|
*/
|
2005-12-17 20:14:38 +02:00
|
|
|
|
2003-07-27 23:20:31 +03:00
|
|
|
#include "avcodec.h"
|
2009-04-13 19:20:26 +03:00
|
|
|
#include "get_bits.h"
|
2012-02-11 22:39:12 +03:00
|
|
|
#include "internal.h"
|
2008-09-03 15:43:18 +03:00
|
|
|
|
2005-12-17 20:14:38 +02:00
|
|
|
static int decode_frame(AVCodecContext *avctx,
|
2012-11-13 21:35:22 +03:00
|
|
|
void *data, int *got_frame,
|
2009-04-07 18:59:50 +03:00
|
|
|
AVPacket *avpkt)
|
2003-07-27 23:20:31 +03:00
|
|
|
{
|
2009-04-07 18:59:50 +03:00
|
|
|
const uint8_t *buf = avpkt->data;
|
2011-12-08 17:51:38 +03:00
|
|
|
int buf_size = avpkt->size;
|
2011-12-06 20:45:37 +03:00
|
|
|
GetBitContext gb;
|
2012-11-21 23:34:46 +03:00
|
|
|
AVFrame * const p = data;
|
2012-11-17 09:32:09 +03:00
|
|
|
int x, y, ret;
|
2003-07-27 23:20:31 +03:00
|
|
|
|
2011-12-16 01:20:21 +03:00
|
|
|
if (avctx->height <= 0 || avctx->width <= 0) {
|
|
|
|
av_log(avctx, AV_LOG_ERROR, "Invalid width or height\n");
|
|
|
|
return AVERROR_INVALIDDATA;
|
|
|
|
}
|
|
|
|
|
2011-12-17 20:58:06 +03:00
|
|
|
if (buf_size < avctx->height * avctx->width) {
|
2011-12-08 17:51:38 +03:00
|
|
|
av_log(avctx, AV_LOG_ERROR,
|
|
|
|
"Resolution larger than buffer size. Invalid header?\n");
|
2011-12-08 17:53:27 +03:00
|
|
|
return AVERROR_INVALIDDATA;
|
2011-01-07 23:54:52 +02:00
|
|
|
}
|
|
|
|
|
2012-11-21 23:34:46 +03:00
|
|
|
if ((ret = ff_get_buffer(avctx, p, 0)) < 0) {
|
2003-11-03 15:26:22 +02:00
|
|
|
av_log(avctx, AV_LOG_ERROR, "get_buffer() failed\n");
|
2012-11-17 09:32:09 +03:00
|
|
|
return ret;
|
2003-07-27 23:20:31 +03:00
|
|
|
}
|
2011-12-08 17:51:38 +03:00
|
|
|
p->pict_type = AV_PICTURE_TYPE_I;
|
|
|
|
p->key_frame = 1;
|
2003-07-27 23:20:31 +03:00
|
|
|
|
2011-12-06 20:45:37 +03:00
|
|
|
init_get_bits(&gb, buf, buf_size * 8);
|
2003-07-27 23:20:31 +03:00
|
|
|
|
2011-12-08 17:51:38 +03:00
|
|
|
for (y = 0; y < avctx->height; y++) {
|
2012-11-21 23:34:46 +03:00
|
|
|
uint8_t *luma = &p->data[0][y * p->linesize[0]];
|
|
|
|
uint8_t *cb = &p->data[1][y * p->linesize[1]];
|
|
|
|
uint8_t *cr = &p->data[2][y * p->linesize[2]];
|
2011-12-08 17:51:38 +03:00
|
|
|
for (x = 0; x < avctx->width; x += 4) {
|
2011-12-06 20:45:37 +03:00
|
|
|
luma[3] = get_bits(&gb, 5) << 3;
|
|
|
|
luma[2] = get_bits(&gb, 5) << 3;
|
|
|
|
luma[1] = get_bits(&gb, 5) << 3;
|
|
|
|
luma[0] = get_bits(&gb, 5) << 3;
|
2011-12-08 17:51:38 +03:00
|
|
|
luma += 4;
|
2011-12-06 20:45:37 +03:00
|
|
|
*(cb++) = get_bits(&gb, 6) << 2;
|
|
|
|
*(cr++) = get_bits(&gb, 6) << 2;
|
2003-07-27 23:20:31 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-11-13 21:35:22 +03:00
|
|
|
*got_frame = 1;
|
2003-07-27 23:20:31 +03:00
|
|
|
|
|
|
|
return buf_size;
|
|
|
|
}
|
|
|
|
|
2011-12-08 17:48:12 +03:00
|
|
|
static av_cold int decode_init(AVCodecContext *avctx)
|
|
|
|
{
|
2012-10-06 13:10:34 +03:00
|
|
|
avctx->pix_fmt = AV_PIX_FMT_YUV411P;
|
2011-12-08 17:48:12 +03:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
AVCodec ff_cljr_decoder = {
|
|
|
|
.name = "cljr",
|
2013-10-03 23:57:53 +03:00
|
|
|
.long_name = NULL_IF_CONFIG_SMALL("Cirrus Logic AccuPak"),
|
2011-12-08 17:48:12 +03:00
|
|
|
.type = AVMEDIA_TYPE_VIDEO,
|
2012-08-05 12:11:04 +03:00
|
|
|
.id = AV_CODEC_ID_CLJR,
|
2011-12-08 17:48:12 +03:00
|
|
|
.init = decode_init,
|
|
|
|
.decode = decode_frame,
|
|
|
|
.capabilities = CODEC_CAP_DR1,
|
|
|
|
};
|