2003-07-24 15:18:46 +03:00
|
|
|
/*
|
|
|
|
* ATI VCR1 codec
|
|
|
|
* Copyright (c) 2003 Michael Niedermayer
|
|
|
|
*
|
2006-10-07 18:30:46 +03:00
|
|
|
* This file is part of FFmpeg.
|
|
|
|
*
|
|
|
|
* FFmpeg is free software; you can redistribute it and/or
|
2003-07-24 15:18:46 +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-24 15:18:46 +03:00
|
|
|
*
|
2006-10-07 18:30:46 +03:00
|
|
|
* FFmpeg is distributed in the hope that it will be useful,
|
2003-07-24 15:18:46 +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
|
2006-10-07 18:30:46 +03:00
|
|
|
* License along with FFmpeg; 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-24 15:18:46 +03:00
|
|
|
*/
|
2005-12-17 20:14:38 +02:00
|
|
|
|
2003-07-24 15:18:46 +03:00
|
|
|
/**
|
2010-04-20 17:45:34 +03:00
|
|
|
* @file
|
2012-04-08 14:05:17 +03:00
|
|
|
* ATI VCR1 codec
|
2003-07-24 15:18:46 +03:00
|
|
|
*/
|
2005-12-17 20:14:38 +02:00
|
|
|
|
2003-07-24 15:18:46 +03:00
|
|
|
#include "avcodec.h"
|
2008-03-05 02:43:11 +02:00
|
|
|
#include "dsputil.h"
|
2012-11-10 15:22:56 +03:00
|
|
|
#include "internal.h"
|
2012-08-06 16:49:32 +03:00
|
|
|
#include "libavutil/internal.h"
|
2003-07-24 15:18:46 +03:00
|
|
|
|
2012-04-08 14:05:17 +03:00
|
|
|
typedef struct VCR1Context {
|
2003-07-24 15:18:46 +03:00
|
|
|
AVFrame picture;
|
|
|
|
int delta[16];
|
|
|
|
int offset[4];
|
|
|
|
} VCR1Context;
|
|
|
|
|
2012-05-14 13:36:45 +03:00
|
|
|
static av_cold int vcr1_common_init(AVCodecContext *avctx)
|
2012-04-09 19:11:35 +03:00
|
|
|
{
|
|
|
|
VCR1Context *const a = avctx->priv_data;
|
|
|
|
|
|
|
|
avctx->coded_frame = &a->picture;
|
2012-05-10 23:41:29 +03:00
|
|
|
avcodec_get_frame_defaults(&a->picture);
|
2012-05-14 13:33:04 +03:00
|
|
|
|
|
|
|
return 0;
|
2012-04-09 19:11:35 +03:00
|
|
|
}
|
|
|
|
|
2012-05-14 13:36:45 +03:00
|
|
|
static av_cold int vcr1_decode_init(AVCodecContext *avctx)
|
2012-04-09 19:11:35 +03:00
|
|
|
{
|
2012-05-14 13:36:45 +03:00
|
|
|
vcr1_common_init(avctx);
|
2012-04-09 19:11:35 +03:00
|
|
|
|
2012-10-06 13:10:34 +03:00
|
|
|
avctx->pix_fmt = AV_PIX_FMT_YUV410P;
|
2012-04-09 19:11:35 +03:00
|
|
|
|
2012-11-17 22:17:22 +03:00
|
|
|
if (avctx->width % 8 || avctx->height%4) {
|
|
|
|
av_log_ask_for_sample(avctx, "odd dimensions are not supported\n");
|
|
|
|
return AVERROR_PATCHWELCOME;
|
|
|
|
}
|
2012-04-09 19:11:35 +03:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2012-05-14 13:36:45 +03:00
|
|
|
static av_cold int vcr1_decode_end(AVCodecContext *avctx)
|
2012-04-09 19:11:35 +03:00
|
|
|
{
|
|
|
|
VCR1Context *s = avctx->priv_data;
|
|
|
|
|
|
|
|
if (s->picture.data[0])
|
|
|
|
avctx->release_buffer(avctx, &s->picture);
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2012-05-14 13:36:45 +03:00
|
|
|
static int vcr1_decode_frame(AVCodecContext *avctx, void *data,
|
2012-11-13 21:35:22 +03:00
|
|
|
int *got_frame, AVPacket *avpkt)
|
2003-07-24 15:18:46 +03:00
|
|
|
{
|
2012-04-08 14:05:17 +03:00
|
|
|
const uint8_t *buf = avpkt->data;
|
|
|
|
int buf_size = avpkt->size;
|
|
|
|
VCR1Context *const a = avctx->priv_data;
|
|
|
|
AVFrame *picture = data;
|
|
|
|
AVFrame *const p = &a->picture;
|
|
|
|
const uint8_t *bytestream = buf;
|
2003-07-24 15:18:46 +03:00
|
|
|
int i, x, y;
|
|
|
|
|
2012-04-08 14:05:17 +03:00
|
|
|
if (p->data[0])
|
2003-07-24 15:18:46 +03:00
|
|
|
avctx->release_buffer(avctx, p);
|
|
|
|
|
2011-12-28 21:05:16 +03:00
|
|
|
if(buf_size < 16 + avctx->height + avctx->width*avctx->height*5/8){
|
|
|
|
av_log(avctx, AV_LOG_ERROR, "Insufficient input data.\n");
|
|
|
|
return AVERROR(EINVAL);
|
|
|
|
}
|
|
|
|
|
2012-04-08 14:05:17 +03:00
|
|
|
p->reference = 0;
|
2012-11-10 15:22:56 +03:00
|
|
|
if (ff_get_buffer(avctx, p) < 0) {
|
2003-11-03 15:26:22 +02:00
|
|
|
av_log(avctx, AV_LOG_ERROR, "get_buffer() failed\n");
|
2003-07-24 15:18:46 +03:00
|
|
|
return -1;
|
|
|
|
}
|
2012-04-08 14:05:17 +03:00
|
|
|
p->pict_type = AV_PICTURE_TYPE_I;
|
|
|
|
p->key_frame = 1;
|
2003-07-24 15:18:46 +03:00
|
|
|
|
2012-04-08 14:05:17 +03:00
|
|
|
for (i = 0; i < 16; i++) {
|
|
|
|
a->delta[i] = *bytestream++;
|
2003-07-24 15:18:46 +03:00
|
|
|
bytestream++;
|
|
|
|
}
|
2005-12-17 20:14:38 +02:00
|
|
|
|
2012-04-08 14:05:17 +03:00
|
|
|
for (y = 0; y < avctx->height; y++) {
|
2003-07-24 15:18:46 +03:00
|
|
|
int offset;
|
2012-04-08 14:05:17 +03:00
|
|
|
uint8_t *luma = &a->picture.data[0][y * a->picture.linesize[0]];
|
2003-07-24 15:18:46 +03:00
|
|
|
|
2012-04-08 14:05:17 +03:00
|
|
|
if ((y & 3) == 0) {
|
|
|
|
uint8_t *cb = &a->picture.data[1][(y >> 2) * a->picture.linesize[1]];
|
|
|
|
uint8_t *cr = &a->picture.data[2][(y >> 2) * a->picture.linesize[2]];
|
2003-07-24 15:18:46 +03:00
|
|
|
|
2012-04-08 14:05:17 +03:00
|
|
|
for (i = 0; i < 4; i++)
|
|
|
|
a->offset[i] = *bytestream++;
|
2003-07-24 15:18:46 +03:00
|
|
|
|
2012-04-08 14:05:17 +03:00
|
|
|
offset = a->offset[0] - a->delta[bytestream[2] & 0xF];
|
|
|
|
for (x = 0; x < avctx->width; x += 4) {
|
|
|
|
luma[0] = offset += a->delta[bytestream[2] & 0xF];
|
|
|
|
luma[1] = offset += a->delta[bytestream[2] >> 4];
|
|
|
|
luma[2] = offset += a->delta[bytestream[0] & 0xF];
|
|
|
|
luma[3] = offset += a->delta[bytestream[0] >> 4];
|
|
|
|
luma += 4;
|
2005-12-17 20:14:38 +02:00
|
|
|
|
2012-04-08 14:05:17 +03:00
|
|
|
*cb++ = bytestream[3];
|
|
|
|
*cr++ = bytestream[1];
|
2005-12-17 20:14:38 +02:00
|
|
|
|
2012-04-08 14:05:17 +03:00
|
|
|
bytestream += 4;
|
2003-07-24 15:18:46 +03:00
|
|
|
}
|
2012-04-08 14:05:17 +03:00
|
|
|
} else {
|
|
|
|
offset = a->offset[y & 3] - a->delta[bytestream[2] & 0xF];
|
|
|
|
|
|
|
|
for (x = 0; x < avctx->width; x += 8) {
|
|
|
|
luma[0] = offset += a->delta[bytestream[2] & 0xF];
|
|
|
|
luma[1] = offset += a->delta[bytestream[2] >> 4];
|
|
|
|
luma[2] = offset += a->delta[bytestream[3] & 0xF];
|
|
|
|
luma[3] = offset += a->delta[bytestream[3] >> 4];
|
|
|
|
luma[4] = offset += a->delta[bytestream[0] & 0xF];
|
|
|
|
luma[5] = offset += a->delta[bytestream[0] >> 4];
|
|
|
|
luma[6] = offset += a->delta[bytestream[1] & 0xF];
|
|
|
|
luma[7] = offset += a->delta[bytestream[1] >> 4];
|
|
|
|
luma += 8;
|
|
|
|
bytestream += 4;
|
2003-07-24 15:18:46 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-02-28 00:08:41 +03:00
|
|
|
*picture = a->picture;
|
2012-11-13 21:35:22 +03:00
|
|
|
*got_frame = 1;
|
2003-07-24 15:18:46 +03:00
|
|
|
|
|
|
|
return buf_size;
|
|
|
|
}
|
|
|
|
|
2011-01-25 23:40:11 +02:00
|
|
|
AVCodec ff_vcr1_decoder = {
|
2011-07-17 13:54:31 +03:00
|
|
|
.name = "vcr1",
|
|
|
|
.type = AVMEDIA_TYPE_VIDEO,
|
2012-08-05 12:11:04 +03:00
|
|
|
.id = AV_CODEC_ID_VCR1,
|
2011-07-17 13:54:31 +03:00
|
|
|
.priv_data_size = sizeof(VCR1Context),
|
2012-05-14 13:36:45 +03:00
|
|
|
.init = vcr1_decode_init,
|
|
|
|
.close = vcr1_decode_end,
|
|
|
|
.decode = vcr1_decode_frame,
|
2011-07-17 13:54:31 +03:00
|
|
|
.capabilities = CODEC_CAP_DR1,
|
2012-04-06 19:19:39 +03:00
|
|
|
.long_name = NULL_IF_CONFIG_SMALL("ATI VCR1"),
|
2003-07-24 15:18:46 +03:00
|
|
|
};
|
2008-09-03 15:43:18 +03:00
|
|
|
|
2012-04-09 19:11:35 +03:00
|
|
|
/* Disable the encoder. */
|
|
|
|
#undef CONFIG_VCR1_ENCODER
|
|
|
|
#define CONFIG_VCR1_ENCODER 0
|
|
|
|
|
2009-01-14 01:44:16 +02:00
|
|
|
#if CONFIG_VCR1_ENCODER
|
2012-04-13 09:52:08 +03:00
|
|
|
|
|
|
|
#include "put_bits.h"
|
|
|
|
|
2012-05-14 13:36:45 +03:00
|
|
|
static int vcr1_encode_frame(AVCodecContext *avctx, unsigned char *buf,
|
|
|
|
int buf_size, void *data)
|
2012-04-08 14:05:17 +03:00
|
|
|
{
|
|
|
|
VCR1Context *const a = avctx->priv_data;
|
|
|
|
AVFrame *pict = data;
|
|
|
|
AVFrame *const p = &a->picture;
|
2003-07-24 15:18:46 +03:00
|
|
|
int size;
|
|
|
|
|
2012-04-08 14:05:17 +03:00
|
|
|
*p = *pict;
|
|
|
|
p->pict_type = AV_PICTURE_TYPE_I;
|
|
|
|
p->key_frame = 1;
|
2003-07-24 15:18:46 +03:00
|
|
|
|
2011-10-17 11:10:42 +03:00
|
|
|
avpriv_align_put_bits(&a->pb);
|
2012-04-13 09:52:08 +03:00
|
|
|
flush_put_bits(&a->pb);
|
2005-12-17 20:14:38 +02:00
|
|
|
|
2012-04-13 09:52:08 +03:00
|
|
|
size = put_bits_count(&a->pb) / 32;
|
2005-12-17 20:14:38 +02:00
|
|
|
|
2012-04-08 14:05:17 +03:00
|
|
|
return size * 4;
|
2003-07-24 15:18:46 +03:00
|
|
|
}
|
2010-01-25 12:46:32 +02:00
|
|
|
|
2011-01-25 23:40:11 +02:00
|
|
|
AVCodec ff_vcr1_encoder = {
|
2011-07-17 13:54:31 +03:00
|
|
|
.name = "vcr1",
|
|
|
|
.type = AVMEDIA_TYPE_VIDEO,
|
2012-08-05 12:11:04 +03:00
|
|
|
.id = AV_CODEC_ID_VCR1,
|
2011-07-17 13:54:31 +03:00
|
|
|
.priv_data_size = sizeof(VCR1Context),
|
2012-05-14 13:36:45 +03:00
|
|
|
.init = vcr1_common_init,
|
|
|
|
.encode = vcr1_encode_frame,
|
2012-04-06 19:19:39 +03:00
|
|
|
.long_name = NULL_IF_CONFIG_SMALL("ATI VCR1"),
|
2003-07-24 15:18:46 +03:00
|
|
|
};
|
2012-04-08 14:05:17 +03:00
|
|
|
#endif /* CONFIG_VCR1_ENCODER */
|