Discussion:
[Audiere-users] Error information from audiere
Drip Stone
2006-11-03 05:43:28 UTC
Permalink
I compiled a program as below:

#include <iostream>
#include "audiere.h"
#include <conio.h>

using namespace std;
using namespace audiere;

int main(int argc,char *argv[])
{
AudioDevicePtr device(OpenDevice());
OutputStreamPtr sound(OpenSound(device,"1.mp3",false));

float volume=0.1f;

while(volume<1.1)
{
sound->setVolume(volume);
sound->play();
if (getch())
volume=volume+0.01;
}

getch();
return 0;
}

when I run the compiled file, some informations shows:
0: norm=aaaaaa s=1555554 10eea9a d706c9
1: norm=924924 s=1249248 e836cd b84ef6
2: norm=888888 s=1111110 d8bbaf ac056e
3: norm=842108 s=1084210 d1bde3 a678de
4: norm=820820 s=1041040 ce699a a3d469
5: norm=810204 s=1020408 ccc988 a28a2c
6: norm=808080 s=1010100 cbfbf0 a1e6fe
7: norm=804020 s=1008040 cb95bf a195e2
8: norm=802008 s=1004010 cb62cd a16d73
9: norm=801002 s=1002004 cb495e a15943
10: norm=800800 s=1001000 cb3ca7 a14f2c
11: norm=800400 s=1000800 cb364e a14a22
12: norm=800200 s=1000400 cb3321 a1479d
13: norm=800100 s=1000200 cb318b a1465a
14: norm=800080 s=1000100 cb30c0 a145b9
is_table_lsf 0 0: 800000 800000
is_table_lsf 0 1: 800000 800000
is_table_lsf 1 0: 6ba27e 800000
...
...

I want to know what does it mean.
It seems result from function "OpenSound".

And, is there an IRC for audiere?

Thanks for your replay.

Loading...