comparison fli.c @ 4688:68582b4ce881

cosmetic fix
author melanson
date Wed, 13 Feb 2002 04:47:12 +0000
parents 2973e997c4a5
children f78d2b53aa48
comparison
equal deleted inserted replaced
4687:2973e997c4a5 4688:68582b4ce881
351 pixel_ptr++; 351 pixel_ptr++;
352 } 352 }
353 } 353 }
354 354
355 // by the end of the chunk, the stream ptr should equal the frame 355 // by the end of the chunk, the stream ptr should equal the frame
356 // size (minus 1, possible); if it doesn't, issue a warning 356 // size (minus 1, possibly); if it doesn't, issue a warning
357 if ((stream_ptr != encoded_size) && (stream_ptr != encoded_size - 1)) 357 if ((stream_ptr != encoded_size) && (stream_ptr != encoded_size - 1))
358 mp_msg(MSGT_DECVIDEO, MSGL_WARN, 358 mp_msg(MSGT_DECVIDEO, MSGL_WARN,
359 " warning: processed FLI chunk where encoded size = %d\n" \ 359 " warning: processed FLI chunk where encoded size = %d\n" \
360 " and final chunk ptr = and final chunk ptr = %d\n", 360 " and final chunk ptr = %d\n",
361 encoded_size, stream_ptr); 361 encoded_size, stream_ptr);
362 } 362 }