红联Linux门户
Linux帮助

在Linux操作系统中编程声音设备实例

发布时间:2006-11-21 09:38:06来源:红联作者:flycocoon
  Linux下的声音设备编程比大多数人想象的要简单得多。一般说来,我们常用的声音设备是内部扬声器和声卡,它们都对应/dev目录下的一个或多个设备文件,我们象打开普通文件一样打开它们,用ioctl()函数设置一些参数,然后对这些打开的特殊文件进写操作。

  由于这些文件不是普通的文件,所以我们不能用ANSI C(标准C)的fopen、fclose等来操作文件,而应该使用系统文件I/O处理函数(open、read、write、lseek和close)来处理这些设备文件。ioctl()或许是Linux下最庞杂的函数,它可以控制各种文件的属性,在Linux声音设备编程中,最重要的就是使用此函数正确设置必要的参数。

  下面我们举两个实际的例子来说明如何实现Linux下的声音编程。由于此类编程涉及到系统设备的读写,所以,很多时候需要你有root权限,如果你将下面的例子编译后不能正确执行,那么,首先请你检查是否是因为没有操纵某个设备的权限。

  对内部扬声器编程内部扬声器是控制台的一部分,所以它对应的设备文件为/dev/console。变量KIOCSOUND在头文件 /usr /include /linux /kd.h中声明,ioctl函数使用它可以来控制扬声器的发声,使用规则为:

锟斤拷锟斤拷:
  ioctl ( fd, KIOCSOUND, (int) tone);


  fd为文件设备号,tone 是音频值。当tone为0时,终止发声。必须一提的是它所理解的音频和我们平常以为的音频是不同的,由于计算机主板定时器的时钟频率为1.19MHZ,所以要进行正确的发声,必须进行如下的转换:扬声器音频值=1190000/我们期望的音频值。

  扬声器发声时间的长短我们通过函数usleep(unsigned long usec)来控制。它是在头文件/usr /include /unistd.h中定义的,让程序睡眠usec微秒。下面即是让扬声器按指定的长度和音频发声的程序的完整清单:

锟斤拷锟斤拷:
#include < fcntl.h >
#include < stdio.h >
#include < stdlib.h >
#include < string.h >
#include < unistd.h >
#include < sys/ioctl.h >
#include < sys/types.h >
#include < linux/kd.h >

/* 设定默认值 */
#define DEFAULT_FREQ 440 /* 设定一个合适的频率 */
#define DEFAULT_LENGTH 200 /* 200 微秒,发声的长度是以微秒为单位的*/
#define DEFAULT_REPS 1 /* 默认不重复发声 */
#define DEFAULT_DELAY 100 /* 同样以微秒为单位*/

/* 定义一个结构,存储所需的数据*/
typedef struct {
int freq; /* 我们期望输出的频率,单位为Hz */
int length; /* 发声长度,以微秒为单位*/
int reps; /* 重复的次数*/
int delay; /* 两次发声间隔,以微秒为单位*/
} beep_parms_t;


/* 打印帮助信息并退出*/
void usage_bail ( const char *executable_name ) {
printf ( "Usage: \n \t%s [-f frequency] [-l length] [-r reps] [-d delay] \n ",
executable_name );
exit(1);
}

/ * 分析运行参数,各项意义如下:
* "-f <以HZ为单位的频率值 >"
* "-l <以毫秒为单位的发声时长 >"
* "-r <重复次数 >"
* "-d <以毫秒为单位的间歇时长 >"
*/
void parse_command_line(char **argv, beep_parms_t *result) {
char *arg0 = *(argv++);
while ( *argv ) {
if ( !strcmp( *argv,"-f" )) { /*频率*/
int freq = atoi ( *( ++argv ) );
if ( ( freq <= 0 ) | | ( freq > 10000 ) ) {
fprintf ( stderr, "Bad parameter: frequency must be from 1..10000\n" );
exit (1) ;
} else {
result->freq = freq;
argv++;
}
} else if ( ! strcmp ( *argv, "-l" ) ) { /*时长*/
int length = atoi ( *(++argv ) );
if (length < 0) {
fprintf(stderr, "Bad parameter: length must be >= 0\n");
exit(1);
} else {
result->length = length;
argv++;
}
} else if (!strcmp(*argv, "-r")) { /*重复次数*/
int reps = atoi(*(++argv));
if (reps < 0) {
fprintf(stderr, "Bad parameter: reps must be >= 0\n");
exit(1);
} else {
result->reps = reps;
argv++;
}
} else if (!strcmp(*argv, "-d")) { /* 延时 */
int delay = atoi(*(++argv));
if (delay < 0) {
fprintf(stderr, "Bad parameter: delay must be >= 0\n");
exit(1);
} else {
result->delay = delay;
argv++;
}
} else {
fprintf(stderr, "Bad parameter: %s\n", *argv);
usage_bail(arg0);
}
}
}

int main(int argc, char **argv) {
int console_fd;
int i; /* 循环计数器 */
/* 设发声参数为默认值*/
beep_parms_t parms = {DEFAULT_FREQ, DEFAULT_LENGTH, DEFAULT_REPS,
DEFAULT_DELAY};
/* 分析参数,可能的话更新发声参数*/
parse_command_line(argv, &parms);

/* 打开控制台,失败则结束程序*/
if ( ( console_fd = open ( "/dev/console", O_WRONLY ) ) == -1 ) {
fprintf(stderr, "Failed to open console.\n");
perror("open");
exit(1);
}

/* 真正开始让扬声器发声*/
for (i = 0; i < parms.reps; i++) {
/* 数字1190000从何而来,不得而知*/
int magical_fairy_number = 1190000/parms.freq;

ioctl(console_fd, KIOCSOUND, magical_fairy_number); /* 开始发声 */
usleep(1000*parms.length); /*等待... */
ioctl(console_fd, KIOCSOUND, 0); /* 停止发声*/
usleep(1000*parms.delay); /* 等待... */
} /* 重复播放*/
return EXIT_SUCCESS;
}


  将上面的例子稍作扩展,用户即可以让扬声器唱歌。只要找到五线谱或简谱的音阶、音长、节拍和频率、发声时长、间隔的对应关系就可以了。我现在还记得以前在DOS下编写出《世上只有妈妈好》时的兴奋。最后,说一些提外话,这其实是一个很简单的程序,但是我们却用了很长的篇幅,希望读者从以上的代码里能体会到写好的程序的一些方法,或许最重要的是添加注释吧。一个程序的注释永远不会嫌多,即便你写的时候觉得它根本是多余,但相信我,相信曾这样告诉我们的许多优秀的程序员:养成写很多注释的习惯。
文章评论

共有 2236 条评论

  1. 80.207.143.* 于 2007-07-12 11:30:27发表:

    lil wayne ringtones http://www.quizilla.com/users/ringtone-126/journal/572800/ free ringtone casinos descargas paginas web casinos descargas internet http://www.getaportal.com/portals/poker-914/casino_descargas_1.html http://www.getaportal.com/portals/poker-918/roulette_2.html spielregeln roulette roulette online spielen download free ringtone ying yang twins ringtone http://www.quizilla.com/users/ringtone-67/journal/572451/ ganar dinero pagina internet ganar dinero portal internet http://www.getaportal.com/portals/casino-79/ganar_dinero_1.html

  2. 24.45.250.* 于 2007-07-12 11:11:53发表:

    kostenlose kasinospiele spielkasino online http://www.getaportal.com/portals/casino-30/casino_spiele_3.html casinos descargas portal http://www.getaportal.com/portals/poker-880/casino_descargas_1.html casinos descargas portal ringtones download free ringtones http://www.quizilla.com/users/ringtone-748/journal/572734/ juego al instante internet http://www.getaportal.com/portals/casino-816/juego_al_instante_1.html juego al instante portal http://www.quizilla.com/users/ringtone-696/journal/572219/ free motorola ringtone free mobile phone ringtone

  3. 200.67.31.* 于 2007-07-12 07:31:10发表:

    jugar poquer web jugar poquer web http://www.getaportal.com/portals/casino-340/poquer_1.html free ringtone http://www.quizilla.com/users/ringtone-928/journal/571102/ free ringtones http://www.quizilla.com/users/ringtone-555/journal/572580/ free real music ringtones sprint free alltel ringtones polyphonic ringtone http://www.quizilla.com/users/ringtone-488/journal/570842/ celtic frost ringtone free ringtones free mp3 ringtones http://www.quizilla.com/users/ringtone-126/journal/572656/

  4. 0.0.0.* 于 2007-07-12 07:22:23发表:

    black eyed pea ringtones black eyed pea ringtones http://www.quizilla.com/users/ringtone-90/journal/571111/ pacific poker poker libre http://www.getaportal.com/portals/poker-880/poker_1.html ringtone ringtone http://www.quizilla.com/users/ringtone-67/journal/572510/ download free ringtone mosquito ringtone http://www.quizilla.com/users/ringtone-488/journal/570847/ free real music ringtone sprint free ringtone http://www.quizilla.com/users/ringtone-555/journal/572311/

  5. 0.0.0.* 于 2007-07-12 07:17:43发表:

    holdempoker pokerparty http://www.getaportal.com/portals/casino-699/poker_1.html http://www.quizilla.com/users/ringtone-90/journal/571095/ ringtones ringtones casinos paginas web http://www.getaportal.com/portals/poker-168/casino_pagina_1.html casinos paginas web online wagering gambling portals http://www.getaportal.com/portals/casino-816/gamble_1.html juegos azar pagina web juegos azar pagina internet http://www.getaportal.com/portals/casino-392/juegos_azar_1.html

  6. 0.0.0.* 于 2007-07-12 07:09:14发表:

    free ringtones http://www.quizilla.com/users/ringtone-135/journal/572501/ free nextel ringtones ganar dinero portal internet ganar dinero pagina web http://www.getaportal.com/portals/poker-216/ganar_dinero_1.html blackjack pagina internet http://www.getaportal.com/portals/poker-998/blackjack_1.html blackjack online free ringtones free ringtones http://www.quizilla.com/users/ringtone-555/journal/572637/ free cingular cell phone ringtones free ringtones http://www.quizilla.com/users/ringtone-927/journal/572557/

  7. 203.162.27.* 于 2007-07-12 07:05:31发表:

    best online casinos http://www.getaportal.com/portals/poker-94/casino_1.html casino en linea juego cartas poker http://www.getaportal.com/portals/poker-412/juego_poker_1.html jugar poker online jugar gratis internet juego gratis paginas web http://www.getaportal.com/portals/poker-168/juego_gratis_1.html premios dinero pagina internet premio dinero online http://www.getaportal.com/portals/casino-241/premio_dinero_1.html http://www.getaportal.com/portals/poker-735/tragaperra_1.html tragaperra online tragaperras portal internet

  8. 69.243.40.* 于 2007-07-12 07:04:33发表:

    http://www.quizilla.com/users/ringtone-316/journal/572474/ nextel ringtone black eyed pea ringtone download free ringtones http://www.quizilla.com/users/ringtone-869/journal/572791/ ringtones tragaperras portales web tragamonedas linea http://www.getaportal.com/portals/casino-492/tragaperra_1.html http://www.getaportal.com/portals/casino-827/roulette_1.html juego ruleta gratis probabilidades ruleta http://www.getaportal.com/portals/casino-41/juego_poker_1.html jugar poker internet juegos poker shareware

  9. 0.0.0.* 于 2007-07-12 07:03:06发表:

    online poker game online poker game http://www.getaportal.com/portals/casino-328/poker_game_1.html juego interactivo internet juego interactivo paginas web http://www.getaportal.com/portals/casino-222/juego_interactivo_1.html verizon ringtone http://www.quizilla.com/users/ringtone-135/journal/572359/ ringtone free sprint ringtones http://www.quizilla.com/users/ringtone-79/journal/572606/ free ringtones free sprint ringtones lil wayne ringtones http://www.quizilla.com/users/ringtone-316/journal/572704/

  10. 85.92.136.* 于 2007-07-12 06:38:41发表:

    download ringtone free sprint ringtone http://www.quizilla.com/users/ringtone-316/journal/572349/ selena ringtone http://www.quizilla.com/users/ringtone-807/journal/572372/ ringtone ringtones free ringtone http://www.quizilla.com/users/ringtone-167/journal/570720/ pai gow poker linea pai gow poker online http://www.getaportal.com/portals/poker-880/pai_gow_1.html ganar dinero portal http://www.getaportal.com/portals/poker-880/ganar_dinero_1.html ganar dinero internet

  11. 81.177.20.* 于 2007-07-12 06:23:30发表:

    http://www.quizilla.com/users/ringtone-555/journal/572731/ download free ringtone lil wayne ringtones http://www.quizilla.com/users/ringtone-167/journal/570730/ selena ringtones polyphonic ringtones juego seguro portal web http://www.getaportal.com/portals/poker-982/juego_seguro_1.html juego seguro portal internet spiel erlebnis multispieler spiele http://www.getaportal.com/portals/poker-918/spiel_6.html beatles ringtones free ringtone http://www.quizilla.com/users/ringtone-582/journal/571085/

  12. 74.136.31.* 于 2007-07-12 06:09:22发表:

    free mp3 ringtone free mp3 ringtone http://www.quizilla.com/users/ringtone-24/journal/570772/ caribbean poker paginas web poker caribe pagina internet http://www.getaportal.com/portals/casino-137/caribbean_poker_1.html free ringtones http://www.quizilla.com/users/ringtone-488/journal/570859/ free cingular ringtones black jack http://www.getaportal.com/portals/casino-704/blackjack_1.html blackjack pagina internet jugar poquer linea http://www.getaportal.com/portals/casino-833/poquer_1.html jugar poquer web

  13. 72.193.116.* 于 2007-07-12 06:07:01发表:

    juego poquer http://www.getaportal.com/portals/poker-926/poquer_1.html jugar poquer internet nextel ringtone marilyn manson ringtone http://www.quizilla.com/users/ringtone-869/journal/572446/ http://www.quizilla.com/users/ringtone-696/journal/572596/ free polyphonic ringtones free cingular cell phone ringtones juego al instante portales internet juego al instante online http://www.getaportal.com/portals/poker-914/juego_al_instante_1.html maquinas tragaperras pagina internet http://www.getaportal.com/portals/casino-102/maquinas_tragaperras_1.html maquina tragaperras portales internet

  14. 202.217.47.* 于 2007-07-12 06:06:58发表:

    juego poquer http://www.getaportal.com/portals/poker-926/poquer_1.html jugar poquer internet nextel ringtone marilyn manson ringtone http://www.quizilla.com/users/ringtone-869/journal/572446/ http://www.quizilla.com/users/ringtone-696/journal/572596/ free polyphonic ringtones free cingular cell phone ringtones juego al instante portales internet juego al instante online http://www.getaportal.com/portals/poker-914/juego_al_instante_1.html maquinas tragaperras pagina internet http://www.getaportal.com/portals/casino-102/maquinas_tragaperras_1.html maquina tragaperras portales internet

  15. 0.0.0.* 于 2007-07-12 06:02:15发表:

    casino virtual paginas internet http://www.getaportal.com/portals/casino-392/casino_pagina_1.html casino paginas web marilyn manson ringtone http://www.quizilla.com/users/ringtone-167/journal/570688/ ringtone pai gow poker web pai gow poker pagina web http://www.getaportal.com/portals/casino-192/pai_gow_1.html tragaperra internet http://www.getaportal.com/portals/casino-222/tragaperra_1.html tragaperras lil wayne ringtones ringtone http://www.quizilla.com/users/ringtone-748/journal/572745/

  16. 151.133.255.* 于 2007-07-12 05:59:41发表:

    ringtones ringtones http://www.quizilla.com/users/ringtone-126/journal/572712/ maquina tragaperras http://www.getaportal.com/portals/casino-392/tragaperra_1.html tragaperras portales internet free real ringtone free ringtone http://www.quizilla.com/users/ringtone-316/journal/572204/ http://www.getaportal.com/portals/casino-816/caribbean_poker_1.html caribbean stud poker caribbean poker internet casino internacional portales casino internacional portales web http://www.getaportal.com/portals/poker-667/casino_internacional_1.html

  17. 76.171.206.* 于 2007-07-12 01:09:21发表:

    Hi boys! :
    free download music = free limewire = how to download music = free music to download = free mp3 music downloads = download music free = download free music = free mp3 = music =
    http://bbs.geog.ucsb.edu/ubb/Forum11/HTML/000017.html free music :: http://mywebpage.netscape.com/free5mp3/free-mp3.html download music free :: http://nmstandards.org/portal_memberdata/portraits/vsemoe free music download :: http://bbs.geog.ucsb.edu/ubb/Forum11/HTML/000017.html download free music :: http://nmstandards.org/portal_memberdata/portraits/vsemoe download free music :: http://musicdownloadsmp3.tripod.com/music_downloads.html music download :: http://www.sopadre.com/gallery/louies/music.html free mp3 music downloads :: http://musicdownloads4free.angelfire.com/free-music.html free music ipods :: http://musicdownloads4free.angelfire.com/free-music.html free music download :: http://musicdownloadsmp3.tripod.com free ipod music downloads sites :: http://idisk.mac.com/fmp3musicdownloads/Public/free-music.html classical music downloads ::
    free country music downloads .. free music video .. free legal music downloads .. music download free .. free music download sites .. free music downloading .. music download ..

  18. 89.149.226.* 于 2007-07-12 01:05:13发表:

    Yhanks you :
    free music for ipod = music download = free limewire = limewire music downloads = free music for ipod = free mp3 music downloads = music download free = free music ipods = music download =
    http://bbs.geog.ucsb.edu/ubb/Forum11/HTML/000017.html download music free :: http://mywebpage.netscape.com/free5mp3/free-mp3.html free music video :: http://nmstandards.org/portal_memberdata/portraits/vsemoe music download free :: http://bbs.geog.ucsb.edu/ubb/Forum11/HTML/000017.html free legal music downloads :: http://nmstandards.org/portal_memberdata/portraits/vsemoe music downloads pc :: http://musicdownloadsmp3.tripod.com/music_downloads.html free ipod music downloads sites :: http://www.sopadre.com/gallery/louies/music.html limewire :: http://musicdownloads4free.angelfire.com/free-music.html free music for ipod :: http://musicdownloads4free.angelfire.com/free-music.html music download :: http://musicdownloadsmp3.tripod.com free music download sites :: http://idisk.mac.com/fmp3musicdownloads/Public/free-music.html free music download ::
    music .. free ipod music downloads .. free limewire .. music download free .. free music downloading .. free mp3 music downloads .. music download ..

  19. 212.71.186.* 于 2007-07-12 01:02:44发表:

    Yhanks you :
    free music downloads = free music download = music = free download music = free legal music downloads = free mp3 music downloads = download music for free = how to download music = music download =
    http://bbs.geog.ucsb.edu/ubb/Forum11/HTML/000017.html FREE MUSIC DOWNLOADS :: http://mywebpage.netscape.com/free5mp3/free-mp3.html limewire music downloads :: http://nmstandards.org/portal_memberdata/portraits/vsemoe music downloads :: http://bbs.geog.ucsb.edu/ubb/Forum11/HTML/000017.html free country music downloads :: http://nmstandards.org/portal_memberdata/portraits/vsemoe limewire :: http://musicdownloadsmp3.tripod.com/music_downloads.html free mp3 :: http://www.sopadre.com/gallery/louies/music.html free mp3 music downloads :: http://musicdownloads4free.angelfire.com/free-music.html free music to download :: http://musicdownloads4free.angelfire.com/free-music.html limewire :: http://musicdownloadsmp3.tripod.com free music video :: http://idisk.mac.com/fmp3musicdownloads/Public/free-music.html legal music downloads ::
    music download .. free country music downloads .. free mp3 music downloads .. free music download sites .. free mp3 music downloads .. free limewire .. free music to download ..

  20. 0.0.0.* 于 2007-07-11 20:37:00发表:

    cingular ringtone ringtones http://www.quizilla.com/users/ringtone-807/journal/572809/ juego video poquer http://www.getaportal.com/portals/poker-334/video_poker_1.html video poker online nextel ringtone http://www.quizilla.com/users/ringtone-927/journal/572524/ lil wayne ringtone casinos espana portal internet casinos espana portal http://www.getaportal.com/portals/poker-438/casinos_espana_1.html juegos azar web juegos azar portales internet http://www.getaportal.com/portals/poker-168/juegos_azar_1.html

  21. 0.0.0.* 于 2007-07-11 20:08:28发表:

    madonna ringtone ringtone http://www.quizilla.com/users/ringtone-24/journal/570784/ casino internacional online casinos internacionales pagina web http://www.getaportal.com/portals/casino-328/casino_internacional_1.html probabilidades ruleta ruleta linea http://www.getaportal.com/portals/casino-699/roulette_1.html http://www.quizilla.com/users/ringtone-869/journal/572386/ beatles ringtone ringtone http://www.getaportal.com/portals/casino-192/juego_gratis_1.html jugar gratis pagina internet juego gratis portal internet

  22. 75.87.111.* 于 2007-07-11 18:34:00发表:

    juego web http://www.getaportal.com/portals/poker-412/juego_1.html juegos descarga http://www.getaportal.com/portals/casino-816/premio_dinero_1.html premio dinero portales premio dinero paginas web keno linea keno portales http://www.getaportal.com/portals/casino-137/keno_1.html jugar gratis paginas internet juego gratis portal web http://www.getaportal.com/portals/casino-404/juego_gratis_1.html tragaperra online tragaperra online http://www.getaportal.com/portals/poker-880/tragaperra_1.html

  23. 125.174.152.* 于 2007-07-11 18:21:46发表:

    http://www.quizilla.com/users/ringtone-695/journal/571027/ 100 free ringtones 100 free ringtones codigo fuente ruleta ruleta pagina internet http://www.getaportal.com/portals/poker-995/roulette_1.html ringtones http://www.quizilla.com/users/ringtone-90/journal/571079/ beatles ringtones free verizon ringtone free motorola ringtone http://www.quizilla.com/users/ringtone-927/journal/572270/ ganar premios online ganar premio portal web http://www.getaportal.com/portals/casino-137/ganar_premio_1.html

  24. 0.0.0.* 于 2007-07-11 18:16:01发表:

    juego al instante pagina internet juego al instante portales web http://www.getaportal.com/portals/poker-410/juego_al_instante_1.html http://www.quizilla.com/users/ringtone-695/journal/571110/ ringtones beatles ringtones http://www.quizilla.com/users/ringtone-67/journal/572597/ free ringtones download free cingular ringtones free alltel ringtone free nokia ringtone http://www.quizilla.com/users/ringtone-126/journal/572222/ http://www.quizilla.com/users/ringtone-555/journal/572591/ download free ringtones download free ringtones

  25. 74.192.235.* 于 2007-07-11 18:01:04发表:

    cheap ambien http://www.freewebs.com/drugs-399/cheap-ambien-2.html cheap ambien http://www.coloradotbf.net/Discussion/0000013d.htm fioricet online fioricet online cheap cialis http://www.freewebs.com/drugs-259/cheap-cialis.html cheap cialis phentermine prescription phentermine prescription http://www.mooseheadband.com/_disc3/000000fd.htm same day cash advance http://www.freewebs.com/cash-496/same-day-cash-advance.html same day cash advance

  26. 0.0.0.* 于 2007-07-11 17:06:33发表:

    http://www.quizilla.com/users/ringtone-488/journal/570856/ free nokia ringtones free ringtones ringtones http://www.quizilla.com/users/ringtone-582/journal/571085/ beatles ringtones free alltel ringtones http://www.quizilla.com/users/ringtone-167/journal/570701/ free alltel ringtones http://www.quizilla.com/users/ringtone-555/journal/572731/ ringtones madonna ringtones madonna ringtones ringtones http://www.quizilla.com/users/ringtone-807/journal/572796/

  27. 0.0.0.* 于 2007-07-11 15:50:36发表:

    juego al instante pagina web http://www.getaportal.com/portals/poker-880/juego_al_instante_1.html juego al instante pagina internet free cell phone ringtones free ringtones http://www.quizilla.com/users/ringtone-316/journal/572633/ http://www.getaportal.com/portals/poker-995/ganar_dinero_1.html ganar dinero verdadero linea ganar dinero verdadero pagina web juego al instante portal juego al instante pagina internet http://www.getaportal.com/portals/poker-334/juego_al_instante_1.html ganar dinero portal internet ganar dinero verdadero portales http://www.getaportal.com/portals/poker-267/ganar_dinero_1.html

  28. 62.231.243.* 于 2007-07-11 13:07:02发表:

    http://www.getaportal.com/portals/poker-410/premio_dinero_1.html premios dinero premios dinero online 100 free ringtone free ringtone http://www.quizilla.com/users/ringtone-695/journal/570938/ casinos paginas internet http://www.getaportal.com/portals/poker-667/casino_pagina_1.html casino pagina web free sprint ringtones ringtones http://www.quizilla.com/users/ringtone-928/journal/571106/ free cingular cell phone ringtone free nokia ringtone http://www.quizilla.com/users/ringtone-488/journal/570833/

  29. 75.87.111.* 于 2007-07-11 12:50:45发表:

    http://www.quizilla.com/users/ringtone-927/journal/572759/ ringtones free ringtone juego gratis portales internet juego gratis pagina web http://www.getaportal.com/portals/casino-102/juego_gratis_1.html ringtone http://www.quizilla.com/users/ringtone-807/journal/572480/ cell phone ringtone juegos pagina web http://www.getaportal.com/portals/casino-192/juego_pagina_1.html jugar pagina web juego gratis portal http://www.getaportal.com/portals/poker-926/juego_gratis_1.html juego gratis portal

  30. 0.0.0.* 于 2007-07-11 12:19:17发表:

    ringtone ringtone http://www.quizilla.com/users/ringtone-126/journal/572402/ http://www.quizilla.com/users/ringtone-79/journal/572573/ 100 free ringtones free ringtones free real ringtone download free verizon ringtone http://www.quizilla.com/users/ringtone-106/journal/572282/ free ringtone http://www.quizilla.com/users/ringtone-555/journal/572390/ beatles ringtone casinos pagina internet http://www.getaportal.com/portals/poker-160/casino_pagina_1.html casinos pagina internet

  31. 0.0.0.* 于 2007-07-11 12:08:00发表:

    internet kasinos kasino on net http://www.getaportal.com/portals/poker-918/kasino_10.html ruleta ruleta http://www.getaportal.com/portals/casino-41/roulette_1.html marilyn manson ringtone ringtone http://www.quizilla.com/users/ringtone-79/journal/572404/ juegos poker shareware juegos poker descarga gratis http://www.getaportal.com/portals/poker-735/juego_poker_1.html free ringtones free sprint ringtones http://www.quizilla.com/users/ringtone-316/journal/572622/

  32. 71.203.162.* 于 2007-07-11 12:04:38发表:

    casino elegance http://www.getaportal.com/portals/casino-759/casino_1.html casino elegance download free cingular ringtones free verizon ringtones http://www.quizilla.com/users/ringtone-748/journal/572541/ free gambling http://www.getaportal.com/portals/poker-216/gamble_1.html free gambling jugar blackjack http://www.getaportal.com/portals/poker-94/blackjack_1.html blackjack pagina internet maquina tragaperras web maquina tragaperras pagina internet http://www.getaportal.com/portals/casino-392/maquinas_tragaperras_1.html

  33. 0.0.0.* 于 2007-07-11 12:02:43发表:

    tragaperras web http://www.getaportal.com/portals/poker-800/tragaperra_1.html tragaperra pagina internet lil wayne ringtone dave hollister ringtone http://www.quizilla.com/users/ringtone-79/journal/572514/ madonna ringtone ringtone http://www.quizilla.com/users/ringtone-582/journal/570968/ premio dinero linea premio dinero pagina web http://www.getaportal.com/portals/poker-229/premio_dinero_1.html free motorola ringtone free cingular cell phone ringtone http://www.quizilla.com/users/ringtone-807/journal/572348/

  34. 0.0.0.* 于 2007-07-11 12:00:54发表:

    kasinospiele mit echtem geld kostenlose kasino spiele http://www.getaportal.com/portals/casino-30/casino_spiele_6.html free alltel ringtone free alltel ringtone http://www.quizilla.com/users/ringtone-695/journal/570930/ http://www.quizilla.com/users/ringtone-316/journal/572361/ madonna ringtone black eyed pea ringtone free cingular ringtone download free ringtone http://www.quizilla.com/users/ringtone-807/journal/572265/ http://www.quizilla.com/users/ringtone-79/journal/572502/ dave hollister ringtone dave hollister ringtone

  35. 201.82.93.* 于 2007-07-11 11:56:32发表:

    jugar paginas web http://www.getaportal.com/portals/poker-667/juego_pagina_1.html juego paginas web http://www.quizilla.com/users/ringtone-167/journal/570669/ free nextel ringtone free alltel ringtone download free ringtone selena ringtone http://www.quizilla.com/users/ringtone-316/journal/572460/ juego casinos http://www.getaportal.com/portals/casino-192/juego_1.html juego online ganar dinero paginas internet ganar dinero verdadero portales http://www.getaportal.com/portals/casino-833/ganar_dinero_1.html