forked from baogaitou/spx2wav
-
Notifications
You must be signed in to change notification settings - Fork 0
/
SpeexDecode.c
executable file
·136 lines (84 loc) · 1.91 KB
/
SpeexDecode.c
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
#include <memory.h>
#include <stdio.h>
#include <malloc.h>
#include "TRSpeex.h"
int main(int argc, char* argv[])
{
FILE *fpInput;
FILE *fpOutput;
char aInputBuffer[MAX_FRAME_SIZE*10];
char aOutputBuffer[MAX_FRAME_SIZE*10];
int ret;
int buffer_size;
int nOutSize;
int nPackNo;
TRSpeexDecodeContex SpeexDecode;
int nTotalLen;
char buf[44];
if(argc <3)
{
printf("Usage SpeexDecode InputspxFile OutputWavFile\n");
return 1;
}
memset(aInputBuffer,0,sizeof(char)*MAX_FRAME_SIZE*10);
memset(buf,0,44);
buf[0] = 'R';
buf[1] = 'I';
buf[2] = 'F';
buf[3] = 'F';
buf[8] = 'W';
buf[9] = 'A';
buf[10] = 'V';
buf[11] = 'E';
buf[12] = 'f';
buf[13] = 'm';
buf[14] = 't';
buf[15] = 0x20;
buf[16] = 0x10;
buf[20] = 0x01;
buf[22] = 0x01;
buf[24] = 0x80;
buf[25] = 0x3E;
buf[29]= 0x7D;
buf[32] = 0x02;
buf[34] = 0x10;
buf[36] = 'd';
buf[37] = 'a';
buf[38] = 't';
buf[39] = 'a';
TRSpeexDecodeInit(&SpeexDecode);
fpInput = fopen(argv[1],"rb");
if(fpInput == NULL)
{
printf("can't open input spx file");
return 0;
}
fpOutput = fopen(argv[2],"wb");
if(fpOutput == NULL)
{
printf("can't open output file");
return 0;
}
fwrite(buf,1,44,fpOutput);
nTotalLen = 0;
buffer_size = 6;
ret = fread(aInputBuffer, 1,buffer_size,fpInput);
while(1)
{
TRSpeexDecode(&SpeexDecode,aInputBuffer,buffer_size,aOutputBuffer, &nOutSize);
ret = fread(aInputBuffer, 1,buffer_size, fpInput);
if(ret != buffer_size)
break;
fwrite(aOutputBuffer,1, nOutSize,fpOutput);
nTotalLen += nOutSize;
}
TRSpeexDecodeRelease(&SpeexDecode);
fseek(fpOutput,40,SEEK_SET);
fwrite(&nTotalLen,1,4,fpOutput);
fseek(fpOutput,4,SEEK_SET);
nTotalLen += 36;
fwrite(&nTotalLen,1,4,fpOutput);
fclose(fpOutput);
fclose(fpInput);
return 0;
}