comparison src/wma/wma.c @ 2440:5e87f7cc8d13

Remove unneeded vars.
author William Pitcock <nenolod@atheme.org>
date Fri, 07 Mar 2008 15:56:40 -0600
parents be645fc2980d
children 42a5c9d5830b
comparison
equal deleted inserted replaced
2439:be645fc2980d 2440:5e87f7cc8d13
295 AVFormatContext *ic = NULL; 295 AVFormatContext *ic = NULL;
296 uint8_t *inbuf_ptr; 296 uint8_t *inbuf_ptr;
297 int out_size, size, len; 297 int out_size, size, len;
298 AVPacket pkt; 298 AVPacket pkt;
299 guint8 *wma_outbuf, *wma_s_outbuf; 299 guint8 *wma_outbuf, *wma_s_outbuf;
300 int wma_st_buff, wma_idx, wma_idx2; 300 int wma_st_buff, wma_idx;
301 301
302 if(av_open_input_file(&ic, playback->filename, NULL, 0, NULL) < 0) return; 302 if(av_open_input_file(&ic, playback->filename, NULL, 0, NULL) < 0) return;
303 303
304 for(wma_idx = 0; wma_idx < ic->nb_streams; wma_idx++) { 304 for(wma_idx = 0; wma_idx < ic->nb_streams; wma_idx++) {
305 c = &ic->streams[wma_idx]->codec; 305 c = &ic->streams[wma_idx]->codec;