#include "avcodec.h"
-/**
- * decoder context
- */
+/** decoder context */
typedef struct EightSvxContext {
int16_t fib_acc;
int16_t *table;
const static int16_t exponential[16] = { -128<<8, -64<<8, -32<<8, -16<<8, -8<<8, -4<<8, -2<<8, -1<<8,
0, 1<<8, 2<<8, 4<<8, 8<<8, 16<<8, 32<<8, 64<<8 };
-/**
- * decode a frame
- */
+/** decode a frame */
static int eightsvx_decode_frame(AVCodecContext *avctx, void *data, int *data_size,
const uint8_t *buf, int buf_size)
{
return consumed;
}
-/**
- * initialize 8svx decoder
- */
+/** initialize 8svx decoder */
static av_cold int eightsvx_decode_init(AVCodecContext *avctx)
{
EightSvxContext *esc = avctx->priv_data;