comparison parser.c @ 4795:522e52c630bd libavcodec

typos/grammar
author diego
date Sat, 07 Apr 2007 14:09:20 +0000
parents 9b4c5d2fb8ce
children 841ecebff8c8
comparison
equal deleted inserted replaced
4794:2c9f06854306 4795:522e52c630bd
228 printf("overread %d, state:%X next:%d index:%d o_index:%d\n", pc->overread, pc->state, next, pc->index, pc->overread_index); 228 printf("overread %d, state:%X next:%d index:%d o_index:%d\n", pc->overread, pc->state, next, pc->index, pc->overread_index);
229 printf("%X %X %X %X\n", (*buf)[0], (*buf)[1],(*buf)[2],(*buf)[3]); 229 printf("%X %X %X %X\n", (*buf)[0], (*buf)[1],(*buf)[2],(*buf)[3]);
230 } 230 }
231 #endif 231 #endif
232 232
233 /* copy overreaded bytes from last frame into buffer */ 233 /* Copy overread bytes from last frame into buffer. */
234 for(; pc->overread>0; pc->overread--){ 234 for(; pc->overread>0; pc->overread--){
235 pc->buffer[pc->index++]= pc->buffer[pc->overread_index++]; 235 pc->buffer[pc->index++]= pc->buffer[pc->overread_index++];
236 } 236 }
237 237
238 /* flush remaining if EOF */ 238 /* flush remaining if EOF */