-
Notifications
You must be signed in to change notification settings - Fork 3
/
snd2acm.cpp
160 lines (145 loc) · 4.65 KB
/
snd2acm.cpp
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
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
#include "stdafx.h"
// snd2acm converter.
#include <stdio.h>
#include <math.h>
#include <string.h>
#include <stdlib.h>
#include <ctype.h>
#include <windows.h>
#include <io.h>
#include "subband.h"
#include "readers.h"
#include "packer.h"
#include "general.h"
#include "riffhdr.h"
#define HATCH_SIZE 655360
#define COMPRESSION_RATE 100.0
int fhandle;
FILE *out_file = NULL;
CSubbandCoder* coder = NULL;
CSoundReader* reader = NULL;
CValuePacker* packer = NULL;
int levels = 7, f_len = 11, subblocks = 16;
int reader_type = SND_READER_AUTO;
char tp = 'O';
short* input_samples = NULL;
long* coeffs = NULL;
short* block_to_pack = NULL;
long block_size, sb_size, samples;
double bps_limit;
bool set_type(char type)
{
if(type=='D' || type=='O') { tp=type; return true; }
return false;
}
int init(int maxlen, bool wavc_or_acm) {
reader = CreateSoundReader (fhandle, reader_type, maxlen);
if(!reader) {
return 0;
}
if (tp == 'D') {
coder = new C_DRZF_SubbandCoder (f_len, levels);
} else if (tp == 'O') {
coder = new C_DOpt_SubbandCoder (f_len, levels);
}
if ( !coder || !coder->init_filter() ) {
return 0;
}
samples = reader->get_samples_left();
sb_size = 1 << levels;
block_size = sb_size * subblocks;
ACM_Header hdr = {IP_ACM_SIG, 0, (short) reader->get_channels(), (short) reader->get_samplerate(), 0, 0};
hdr. samples = samples;
hdr. levels = levels;
hdr. subblocks = subblocks;
if(wavc_or_acm) write_wavc_header(out_file, samples, reader->get_channels(), 0, reader->get_samplerate());
fwrite (&hdr, 1, sizeof(hdr), out_file);
bps_limit =COMPRESSION_RATE*((double)reader->get_bits()*samples/ceil((double)samples/block_size)/100.0);
packer = new CValuePacker (out_file, subblocks, sb_size, (long) bps_limit);
if ( !packer || !packer->init_packer() ) {
return 0;
}
input_samples = new short [HATCH_SIZE];
coeffs = new long [HATCH_SIZE];
block_to_pack = new short [block_size];
if ( !input_samples || !coeffs || !block_to_pack) {
return 0;
};
return 1;
}
void finalize2() {
if (packer) delete packer;
if (coder) delete coder;
if (reader) delete reader;
if (input_samples) delete input_samples;
if (coeffs) delete coeffs;
if (block_to_pack) delete block_to_pack;
}
int ConvertWavAcm(int fh, long maxlen, FILE *foutp, bool wavc_or_acm)
{
// bps_limit=-1.0;
try {
//Since snd2acm handled arguments using parse_args...
if(maxlen<0) maxlen=filelength(fh);
out_file=foutp;
reader_type=SND_READER_WAV; //Sound reader type
fhandle=fh;
if (!init(maxlen, wavc_or_acm)) {
finalize2();
return 1;
}
//Actual decoding section, with printf's removed
long left_to_pack = (long)ceil((double)samples/block_size)*block_size;
short* cur_block_pos = block_to_pack;
long ready_to_pack = 0;
long* tmp_coeffs_pos;
long left_to_filter = samples + coder->get_init_size();
long warnings = 0, max_minus_warn = 0, max_plus_warn = 0, i;
while (left_to_filter > 0) {
// reading samples and filtering them
long next_portion = (left_to_filter > HATCH_SIZE)? HATCH_SIZE: left_to_filter;
reader->read_samples (input_samples, next_portion);
long coeffs_gained = coder->filter_data (input_samples, next_portion, coeffs);
// transferring the coefficients into block
for (i=0, tmp_coeffs_pos = coeffs; i<coeffs_gained; i++, tmp_coeffs_pos++) {
if (*tmp_coeffs_pos > 32767) {
*cur_block_pos = 32767;
warnings++;
if (*tmp_coeffs_pos > max_plus_warn) max_plus_warn = *tmp_coeffs_pos;
} else if (*tmp_coeffs_pos < -32768) {
*cur_block_pos = -32768;
warnings++;
if (*tmp_coeffs_pos < max_minus_warn) max_minus_warn = *tmp_coeffs_pos;
} else
*cur_block_pos = (short) *tmp_coeffs_pos;
ready_to_pack++;
cur_block_pos++;
if (ready_to_pack == block_size) {
// next block is ready to pack, so pack it
packer->add_one_block (block_to_pack);
ready_to_pack = 0;
cur_block_pos = block_to_pack;
left_to_pack -= block_size;
}
}
left_to_filter -= next_portion;
}
// at this point the block can be incompletely filled, we need to fill it with zero, and pack
if (ready_to_pack) {
memset (cur_block_pos, 0, (block_size-ready_to_pack)*sizeof(short));
packer->add_one_block (block_to_pack);
left_to_pack -= block_size;
}
long bytes_resulted = packer->flush_bit_stream() + sizeof (ACM_Header);
if(wavc_or_acm)
{
write_wavc_header(foutp, samples, reader->get_channels(), bytes_resulted, reader->get_samplerate());
}
finalize2();
return 0;
}
catch(...)
{
return 4;
}
}