comparison mp3.c @ 1312:24f1d6a50117 libavformat

10l typo
author michael
date Tue, 12 Sep 2006 14:16:48 +0000
parents 866d43ed0a67
children 9eeb01383e30
comparison
equal deleted inserted replaced
1311:d35cbb48d76d 1312:24f1d6a50117
261 end = buf + FFMIN(4096, p->buf_size - sizeof(uint32_t)); 261 end = buf + FFMIN(4096, p->buf_size - sizeof(uint32_t));
262 262
263 for(; buf < end; buf++) { 263 for(; buf < end; buf++) {
264 buf2 = buf; 264 buf2 = buf;
265 265
266 for(frames = 0; buf < end; frames++) { 266 for(frames = 0; buf2 < end; frames++) {
267 header = (buf2[0] << 24) | (buf2[1] << 16) | (buf2[2] << 8) | buf2[3]; 267 header = (buf2[0] << 24) | (buf2[1] << 16) | (buf2[2] << 8) | buf2[3];
268 fsize = mpa_decode_header(&avctx, header); 268 fsize = mpa_decode_header(&avctx, header);
269 if(fsize < 0) 269 if(fsize < 0)
270 break; 270 break;
271 buf2 += fsize; 271 buf2 += fsize;