comparison src/wma/wma.c @ 65:d54fa96988b3 trunk

[svn] - correct formatting issue
author nenolod
date Sat, 30 Sep 2006 22:05:07 -0700
parents 3da1b8942b8b
children c812e846b84e
comparison
equal deleted inserted replaced
64:755a71ca3c92 65:d54fa96988b3
425 if(avcodec_open(c, codec) < 0) return; 425 if(avcodec_open(c, codec) < 0) return;
426 426
427 wsong_title = get_song_title(ic, filename); 427 wsong_title = get_song_title(ic, filename);
428 wsong_time = get_song_time(ic); 428 wsong_time = get_song_time(ic);
429 429
430 if(wma_ip.output->open_audio( FMT_S16_NE, c->sample_rate, c->channels) <= 0) return; 430 if(wma_ip.output->open_audio(FMT_S16_NE, c->sample_rate, c->channels) <= 0) return;
431 431
432 wma_st_buff = ST_BUFF; 432 wma_st_buff = ST_BUFF;
433 433
434 wma_ip.set_info(wsong_title, wsong_time, c->bit_rate, c->sample_rate, c->channels); 434 wma_ip.set_info(wsong_title, wsong_time, c->bit_rate, c->sample_rate, c->channels);
435 435