comparison libmpdemux/muxer_avi.c @ 34144:beafae9de2be

Employ correct off_t printf conversion specifiers; this time without typos. This fixes a handful of warnings like libmpcodecs/ve_vfw.c:150:7: warning: format '%d' expects type 'int', but argument 4 has type '__off64_t'
author diego
date Fri, 21 Oct 2011 15:44:58 +0000
parents cc8dfde2b6c5
children 93337793866d
comparison
equal deleted inserted replaced
34143:3f73c0da20c7 34144:beafae9de2be
485 write_avi_list(muxer->stream,listtypeAVIMOVIE,muxer->movi_end-stream_tell(muxer->stream)-12); 485 write_avi_list(muxer->stream,listtypeAVIMOVIE,muxer->movi_end-stream_tell(muxer->stream)-12);
486 } else { 486 } else {
487 if (stream_tell(muxer->stream) != MOVIALIGN) { 487 if (stream_tell(muxer->stream) != MOVIALIGN) {
488 mp_msg(MSGT_MUXER, MSGL_ERR, "Opendml superindex is too big for reserved space!\n"); 488 mp_msg(MSGT_MUXER, MSGL_ERR, "Opendml superindex is too big for reserved space!\n");
489 mp_msg(MSGT_MUXER, MSGL_ERR, 489 mp_msg(MSGT_MUXER, MSGL_ERR,
490 "Expected filepos %d, real filepos %"PRIu64"d, missing space %"PRIu64"d\n", 490 "Expected filepos %d, real filepos %"PRIu64", missing space %"PRIu64"\n",
491 MOVIALIGN, stream_tell(muxer->stream), stream_tell(muxer->stream) - MOVIALIGN); 491 MOVIALIGN, stream_tell(muxer->stream), stream_tell(muxer->stream) - MOVIALIGN);
492 mp_msg(MSGT_MUXER, MSGL_ERR, "Try increasing MOVIALIGN in libmpdemux/muxer_avi.c\n"); 492 mp_msg(MSGT_MUXER, MSGL_ERR, "Try increasing MOVIALIGN in libmpdemux/muxer_avi.c\n");
493 } 493 }
494 write_avi_list(muxer->stream,listtypeAVIMOVIE,muxer->movi_end-stream_tell(muxer->stream)-12); 494 write_avi_list(muxer->stream,listtypeAVIMOVIE,muxer->movi_end-stream_tell(muxer->stream)-12);
495 } 495 }