-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathnorm.cpp
132 lines (104 loc) · 3.42 KB
/
norm.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
/*
* Mutated into DGIndex. Modifications Copyright (C) 2004, Donald Graft
*
* Copyright (C) Chia-chen Kuo - April 2001
*
* This file is part of DVD2AVI, a free MPEG-2 decoder
*
* DVD2AVI is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2, or (at your option)
* any later version.
*
* DVD2AVI is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with GNU Make; see the file COPYING. If not, write to
* the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
*
*/
#include "global.h"
#include <math.h>
#define NORM_SIZE 1048576
static short Norm_Table[65536]; // -32768 ~ 32767
static short Norm_Buffer[NORM_SIZE];
static void TwoPass(FILE *WaveIn, int WaveInPos, FILE *WaveOut, int WaveOutPos, int size, int pass);
void Normalize(FILE *WaveIn, int WaveInPos, char *filename, FILE *WaveOut, int WaveOutPos, int size)
{
int i, norm;
bool trigger = false;
double ratio = 1.0;
if (Norm_Flag)
{
if (WaveIn==NULL) // In = Out
WaveIn = fopen(filename, "rb");
else
TwoPass(WaveIn, WaveInPos, NULL, 0, size, 0);
ratio = 327.68 * Norm_Ratio / Sound_Max;
if (ratio >= 1.01 || ratio < 1.0)
trigger = true;
}
else if (WaveIn!=NULL)
trigger = true;
for (i=-32768; i<0; i++)
{
norm = (int)(ratio * i - 0.5);
if (norm < -32768)
Norm_Table[i+32768] = -32768;
else
Norm_Table[i+32768] = norm;
}
Norm_Table[32768] = 0;
for (i=1; i<32768; i++)
{
if (Norm_Table[i] > -32767)
Norm_Table[65536-i] = -Norm_Table[i];
else
Norm_Table[65536-i] = 32767;
}
sprintf(szBuffer, "%.2f", ratio);
SetDlgItemText(hDlg, IDC_INFO, szBuffer);
if (trigger)
TwoPass(WaveIn, WaveInPos, WaveOut, WaveOutPos, size, 1);
}
static void TwoPass(FILE *WaveIn, int WaveInPos, FILE *WaveOut, int WaveOutPos, int size, int pass)
{
int i, rsize, maxsize = size;
fseek(WaveIn, WaveInPos, SEEK_SET);
if (pass)
fseek(WaveOut, WaveOutPos, SEEK_SET);
timing.op = timeGetTime();
while (size > 0)
{
float percent;
rsize = (size >= NORM_SIZE ? NORM_SIZE : size);
fread(Norm_Buffer, rsize, 1, WaveIn);
if (pass)
{
for (i=0; i<(rsize>>1); i++)
Norm_Buffer[i] = Norm_Table[Norm_Buffer[i]+32768];
fwrite(Norm_Buffer, rsize, 1, WaveOut);
}
else
for (i=0; i<(rsize>>1); i++)
if (Sound_Max < abs(Norm_Buffer[i]))
Sound_Max = abs(Norm_Buffer[i]);
size -= rsize;
timing.ed = timeGetTime();
elapsed = (timing.ed-timing.op)/1000;
percent = (float)(100.0*(maxsize-size)/maxsize);
remain = (int)((timing.ed-timing.op)*(100.0-percent)/percent)/1000;
if (Info_Flag)
{
sprintf(szBuffer, "%d:%02d:%02d", elapsed/3600, (elapsed%3600)/60, elapsed%60);
SetDlgItemText(hDlg, IDC_ELAPSED, szBuffer);
sprintf(szBuffer, "%d:%02d:%02d", remain/3600, (remain%3600)/60, remain%60);
SetDlgItemText(hDlg, IDC_REMAIN, szBuffer);
}
InvalidateRect(hwndSelect, NULL, TRUE);
SendMessage(hTrack, TBM_SETPOS, (WPARAM)true, (int)(percent*TRACK_PITCH/100));
}
}