2008-03-30 22:16:08 +03:00
|
|
|
/*
|
2008-03-31 20:31:11 +03:00
|
|
|
* 8SVX audio decoder
|
2008-03-30 22:16:08 +03:00
|
|
|
* Copyright (C) 2008 Jaikrishnan Menon
|
|
|
|
*
|
2011-03-18 19:35:10 +02:00
|
|
|
* This file is part of Libav.
|
2008-03-30 22:16:08 +03:00
|
|
|
*
|
2011-03-18 19:35:10 +02:00
|
|
|
* Libav is free software; you can redistribute it and/or
|
2008-03-30 22:16:08 +03: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 19:35:10 +02:00
|
|
|
* Libav is distributed in the hope that it will be useful,
|
2008-03-30 22:16:08 +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
|
2008-03-30 22:16:08 +03:00
|
|
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
2010-04-20 17:45:34 +03:00
|
|
|
* @file
|
2008-03-30 22:16:08 +03:00
|
|
|
* 8svx audio decoder
|
|
|
|
* @author Jaikrishnan Menon
|
2011-07-14 04:12:36 +03:00
|
|
|
*
|
2008-03-30 22:16:08 +03:00
|
|
|
* supports: fibonacci delta encoding
|
|
|
|
* : exponential encoding
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "avcodec.h"
|
|
|
|
|
2008-03-31 20:30:50 +03:00
|
|
|
/** decoder context */
|
2008-03-30 22:16:08 +03:00
|
|
|
typedef struct EightSvxContext {
|
2011-09-07 01:40:06 +03:00
|
|
|
uint8_t fib_acc;
|
|
|
|
const int8_t *table;
|
2008-03-30 22:16:08 +03:00
|
|
|
} EightSvxContext;
|
|
|
|
|
2011-09-07 01:40:06 +03:00
|
|
|
static const int8_t fibonacci[16] = { -34, -21, -13, -8, -5, -3, -2, -1,
|
|
|
|
0, 1, 2, 3, 5, 8, 13, 21 };
|
|
|
|
static const int8_t exponential[16] = { -128, -64, -32, -16, -8, -4, -2, -1,
|
|
|
|
0, 1, 2, 4, 8, 16, 32, 64 };
|
2008-03-30 22:16:08 +03:00
|
|
|
|
2011-09-06 22:13:59 +03:00
|
|
|
/**
|
|
|
|
* Delta decode the compressed values in src, and put the resulting
|
|
|
|
* decoded samples in dst.
|
|
|
|
*
|
|
|
|
* @param[in,out] state starting value. it is saved for use in the next call.
|
|
|
|
*/
|
2011-09-07 01:40:06 +03:00
|
|
|
static void delta_decode(uint8_t *dst, const uint8_t *src, int src_size,
|
|
|
|
uint8_t *state, const int8_t *table)
|
2011-09-06 22:13:59 +03:00
|
|
|
{
|
2011-09-07 01:40:06 +03:00
|
|
|
uint8_t val = *state;
|
2011-09-06 22:13:59 +03:00
|
|
|
|
|
|
|
while (src_size--) {
|
|
|
|
uint8_t d = *src++;
|
2011-09-07 01:40:06 +03:00
|
|
|
val = av_clip_uint8(val + table[d & 0xF]);
|
2011-09-06 22:13:59 +03:00
|
|
|
*dst++ = val;
|
2011-09-07 01:40:06 +03:00
|
|
|
val = av_clip_uint8(val + table[d >> 4]);
|
2011-09-06 22:13:59 +03:00
|
|
|
*dst++ = val;
|
|
|
|
}
|
|
|
|
|
|
|
|
*state = val;
|
|
|
|
}
|
|
|
|
|
2008-03-31 20:30:50 +03:00
|
|
|
/** decode a frame */
|
2008-03-30 22:16:08 +03:00
|
|
|
static int eightsvx_decode_frame(AVCodecContext *avctx, void *data, int *data_size,
|
2009-04-07 18:59:50 +03:00
|
|
|
AVPacket *avpkt)
|
2008-03-30 22:16:08 +03:00
|
|
|
{
|
2009-04-07 18:59:50 +03:00
|
|
|
const uint8_t *buf = avpkt->data;
|
|
|
|
int buf_size = avpkt->size;
|
2008-03-30 22:16:08 +03:00
|
|
|
EightSvxContext *esc = avctx->priv_data;
|
2011-09-07 01:40:06 +03:00
|
|
|
uint8_t *out_data = data;
|
2008-03-30 22:16:08 +03:00
|
|
|
int consumed = buf_size;
|
|
|
|
|
|
|
|
if(avctx->frame_number == 0) {
|
2011-09-07 01:43:55 +03:00
|
|
|
if (buf_size < 2) {
|
|
|
|
av_log(avctx, AV_LOG_ERROR, "packet size is too small\n");
|
|
|
|
return AVERROR(EINVAL);
|
|
|
|
}
|
2011-09-07 01:40:06 +03:00
|
|
|
esc->fib_acc = (int8_t)buf[1] + 128;
|
2008-03-30 22:16:08 +03:00
|
|
|
buf_size -= 2;
|
|
|
|
buf += 2;
|
|
|
|
}
|
|
|
|
|
2011-09-07 01:49:07 +03:00
|
|
|
if (*data_size < buf_size * 2) {
|
|
|
|
av_log(avctx, AV_LOG_ERROR, "Provided buffer with size %d is too small.\n",
|
|
|
|
*data_size);
|
2011-09-07 01:40:06 +03:00
|
|
|
return AVERROR(EINVAL);
|
2011-09-07 01:49:07 +03:00
|
|
|
}
|
2008-03-30 22:16:08 +03:00
|
|
|
|
2011-09-06 22:13:59 +03:00
|
|
|
delta_decode(out_data, buf, buf_size, &esc->fib_acc, esc->table);
|
2008-03-30 22:16:08 +03:00
|
|
|
|
2011-09-07 01:40:06 +03:00
|
|
|
*data_size = buf_size * 2;
|
|
|
|
|
2008-03-30 22:16:08 +03:00
|
|
|
return consumed;
|
|
|
|
}
|
|
|
|
|
2008-03-31 20:30:50 +03:00
|
|
|
/** initialize 8svx decoder */
|
2008-03-30 22:16:08 +03:00
|
|
|
static av_cold int eightsvx_decode_init(AVCodecContext *avctx)
|
|
|
|
{
|
|
|
|
EightSvxContext *esc = avctx->priv_data;
|
|
|
|
|
|
|
|
switch(avctx->codec->id) {
|
|
|
|
case CODEC_ID_8SVX_FIB:
|
|
|
|
esc->table = fibonacci;
|
|
|
|
break;
|
|
|
|
case CODEC_ID_8SVX_EXP:
|
|
|
|
esc->table = exponential;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
return -1;
|
|
|
|
}
|
2011-09-07 01:40:06 +03:00
|
|
|
avctx->sample_fmt = AV_SAMPLE_FMT_U8;
|
2008-03-30 22:16:08 +03:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2011-01-25 23:40:11 +02:00
|
|
|
AVCodec ff_eightsvx_fib_decoder = {
|
2008-04-28 01:19:02 +03:00
|
|
|
.name = "8svx_fib",
|
2010-03-31 02:30:55 +03:00
|
|
|
.type = AVMEDIA_TYPE_AUDIO,
|
2008-03-30 22:16:08 +03:00
|
|
|
.id = CODEC_ID_8SVX_FIB,
|
|
|
|
.priv_data_size = sizeof (EightSvxContext),
|
|
|
|
.init = eightsvx_decode_init,
|
|
|
|
.decode = eightsvx_decode_frame,
|
2008-06-13 00:50:13 +03:00
|
|
|
.long_name = NULL_IF_CONFIG_SMALL("8SVX fibonacci"),
|
2008-03-30 22:16:08 +03:00
|
|
|
};
|
|
|
|
|
2011-01-25 23:40:11 +02:00
|
|
|
AVCodec ff_eightsvx_exp_decoder = {
|
2008-04-28 01:19:02 +03:00
|
|
|
.name = "8svx_exp",
|
2010-03-31 02:30:55 +03:00
|
|
|
.type = AVMEDIA_TYPE_AUDIO,
|
2008-03-30 22:16:08 +03:00
|
|
|
.id = CODEC_ID_8SVX_EXP,
|
|
|
|
.priv_data_size = sizeof (EightSvxContext),
|
|
|
|
.init = eightsvx_decode_init,
|
|
|
|
.decode = eightsvx_decode_frame,
|
2008-06-13 00:50:13 +03:00
|
|
|
.long_name = NULL_IF_CONFIG_SMALL("8SVX exponential"),
|
2008-03-30 22:16:08 +03:00
|
|
|
};
|