1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132
|
/*
* FILE: codec_dvi.c
* AUTHORS: Orion Hodson
*
* Copyright (c) 1998-2001 University College London
* All rights reserved.
*/
#ifndef HIDE_SOURCE_STRINGS
static const char cvsid[] =
"$Id: codec_dvi.c,v 1.9 2001/01/08 20:29:55 ucaccsp Exp $";
#endif /* HIDE_SOURCE_STRINGS */
#include "config_unix.h"
#include "config_win32.h"
#include "memory.h"
#include "util.h"
#include "debug.h"
#include "audio_types.h"
#include "codec_types.h"
#include "codec_dvi.h"
#include "cx_dvi.h"
static codec_format_t cs[] = {
{"DVI", "DVI-8K-Mono",
"IMA ADPCM codec. (c) 1992 Stichting Mathematisch Centrum, Amsterdam, Netherlands.",
5, 4, 80, {DEV_S16, 8000, 16, 1, 160 * BYTES_PER_SAMPLE}}, /* 20 ms */
{"DVI", "DVI-11K-Mono",
"IMA ADPCM codec. (c) 1992 Stichting Mathematisch Centrum, Amsterdam, Netherlands.",
16, 4, 80, {DEV_S16, 11025, 16, 1, 160 * BYTES_PER_SAMPLE}}, /* 14 ms */
{"DVI", "DVI-16K-Mono",
"IMA ADPCM codec. (c) 1992 Stichting Mathematisch Centrum, Amsterdam, Netherlands.",
6, 4, 80, {DEV_S16, 16000, 16, 1, 160 * BYTES_PER_SAMPLE}}, /* 10 ms */
{"DVI", "DVI-22K-Mono",
"IMA ADPCM codec. (c) 1992 Stichting Mathematisch Centrum, Amsterdam, Netherlands.",
17, 4, 80, {DEV_S16, 22050, 16, 1, 160 * BYTES_PER_SAMPLE}}, /* 7 ms */
{"DVI", "DVI-32K-Mono",
"IMA ADPCM codec. (c) 1992 Stichting Mathematisch Centrum, Amsterdam, Netherlands.",
81, 4, 80, {DEV_S16, 32000, 16, 1, 160 * BYTES_PER_SAMPLE}}, /* 5 ms */
{"DVI", "DVI-48K-Mono",
"IMA ADPCM codec. (c) 1992 Stichting Mathematisch Centrum, Amsterdam, Netherlands.",
82, 4, 80, {DEV_S16, 48000, 16, 1, 160 * BYTES_PER_SAMPLE}} /* 3.3 ms */
};
#define DVI_NUM_FORMATS sizeof(cs)/sizeof(codec_format_t)
uint16_t
dvi_get_formats_count()
{
return (uint16_t)DVI_NUM_FORMATS;
}
const codec_format_t *
dvi_get_format(uint16_t idx)
{
assert(idx < DVI_NUM_FORMATS);
return &cs[idx];
}
int
dvi_state_create(uint16_t idx, u_char **s)
{
struct adpcm_state *as;
int sz;
if (idx < DVI_NUM_FORMATS) {
sz = sizeof(struct adpcm_state);
as = (struct adpcm_state*)xmalloc(sz);
if (as) {
memset(as, 0, sz);
*s = (u_char*)as;
return sz;
}
}
return 0;
}
void
dvi_state_destroy(uint16_t idx, u_char **s)
{
UNUSED(idx);
assert(idx < DVI_NUM_FORMATS);
xfree(*s);
*s = (u_char*)NULL;
}
int
dvi_encode(uint16_t idx, u_char *encoder_state, sample *inbuf, coded_unit *c)
{
int samples;
assert(encoder_state);
assert(inbuf);
assert(idx < DVI_NUM_FORMATS);
UNUSED(idx);
/* Transfer state and fix ordering */
c->state = (u_char*)block_alloc(sizeof(struct adpcm_state));
c->state_len = sizeof(struct adpcm_state);
memcpy(c->state, encoder_state, sizeof(struct adpcm_state));
/* Fix coded state for byte ordering */
((struct adpcm_state*)c->state)->valprev = htons(((struct adpcm_state*)c->state)->valprev);
samples = cs[idx].format.bytes_per_block * 8 / cs[idx].format.bits_per_sample;
c->data = (u_char*)block_alloc(samples / sizeof(sample)); /* 4 bits per sample */
c->data_len = samples / sizeof(sample);
adpcm_coder(inbuf, c->data, samples, (struct adpcm_state*)encoder_state);
return samples / 2;
}
int
dvi_decode(uint16_t idx, u_char *decoder_state, coded_unit *c, sample *data)
{
int samples;
assert(decoder_state);
assert(c);
assert(data);
assert(idx < DVI_NUM_FORMATS);
if (c->state_len > 0) {
assert(c->state_len == sizeof(struct adpcm_state));
memcpy(decoder_state, c->state, sizeof(struct adpcm_state));
((struct adpcm_state*)decoder_state)->valprev = ntohs(((struct adpcm_state*)decoder_state)->valprev);
}
samples = cs[idx].format.bytes_per_block / sizeof(sample);
adpcm_decoder(c->data, data, samples, (struct adpcm_state*)decoder_state);
return samples;
}
|