summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJeffrey Goode <jeffg7@gmail.com>2010-05-15 03:34:31 +0000
committerJeffrey Goode <jeffg7@gmail.com>2010-05-15 03:34:31 +0000
commit6ef04a7f0e2540a78e3e197ad842b85d8119c15d (patch)
tree5c55dd71ed09f2369fc939a4a6d98fa2a95b233b
parentff548fad8689ab767a62d2c7d9b2f2c4efece1e8 (diff)
downloadrockbox-6ef04a7f0e2540a78e3e197ad842b85d8119c15d.tar.gz
rockbox-6ef04a7f0e2540a78e3e197ad842b85d8119c15d.zip
Eliminate %zd tag in printf format strings, replace them with %ld. The %z formatter kept generating type mismatch warnings.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@26040 a1c6a512-1295-4272-9138-f99709370657
-rw-r--r--apps/buffering.c4
-rw-r--r--apps/plugins/mpegplayer/audio_thread.c4
-rw-r--r--apps/plugins/mpegplayer/disk_buf.c4
-rw-r--r--apps/plugins/mpegplayer/mpeg_parser.c32
-rw-r--r--apps/plugins/mpegplayer/pcm_output.c2
5 files changed, 25 insertions, 21 deletions
diff --git a/apps/buffering.c b/apps/buffering.c
index 5fda50198f..f194e2b82d 100644
--- a/apps/buffering.c
+++ b/apps/buffering.c
@@ -685,8 +685,8 @@ static bool buffer_handle(int handle_id)
685 /* stop buffering data for now and post-pone buffering the rest */ 685 /* stop buffering data for now and post-pone buffering the rest */
686 stop = true; 686 stop = true;
687 DEBUGF( "%s(): Preventing handle corruption: h1.id:%d h2.id:%d" 687 DEBUGF( "%s(): Preventing handle corruption: h1.id:%d h2.id:%d"
688 " copy_n:%lu overlap:%zd h1.filerem:%lu\n", __func__, 688 " copy_n:%lu overlap:%ld h1.filerem:%lu\n", __func__,
689 h->id, h->next->id, (unsigned long)copy_n, overlap, 689 h->id, h->next->id, (unsigned long)copy_n, (long)overlap,
690 (unsigned long)h->filerem); 690 (unsigned long)h->filerem);
691 copy_n -= overlap; 691 copy_n -= overlap;
692 } 692 }
diff --git a/apps/plugins/mpegplayer/audio_thread.c b/apps/plugins/mpegplayer/audio_thread.c
index e80239096e..d626df6681 100644
--- a/apps/plugins/mpegplayer/audio_thread.c
+++ b/apps/plugins/mpegplayer/audio_thread.c
@@ -279,8 +279,8 @@ static int audio_sync(struct audio_thread_data *td,
279 { 279 {
280 if (audio_buffer(str, STREAM_PM_RANDOM_ACCESS) == STREAM_DATA_END) 280 if (audio_buffer(str, STREAM_PM_RANDOM_ACCESS) == STREAM_DATA_END)
281 { 281 {
282 DEBUGF("audio_sync:STR_DATA_END\n aqu:%zd swl:%ld swr:%ld\n", 282 DEBUGF("audio_sync:STR_DATA_END\n aqu:%ld swl:%ld swr:%ld\n",
283 audio_queue.used, str->hdr.win_left, str->hdr.win_right); 283 (long)audio_queue.used, str->hdr.win_left, str->hdr.win_right);
284 if (audio_queue.used <= MAD_BUFFER_GUARD) 284 if (audio_queue.used <= MAD_BUFFER_GUARD)
285 goto sync_data_end; 285 goto sync_data_end;
286 } 286 }
diff --git a/apps/plugins/mpegplayer/disk_buf.c b/apps/plugins/mpegplayer/disk_buf.c
index 07b68af96b..0720197f3a 100644
--- a/apps/plugins/mpegplayer/disk_buf.c
+++ b/apps/plugins/mpegplayer/disk_buf.c
@@ -881,8 +881,8 @@ bool disk_buf_init(void)
881 881
882 DEBUGF("disk_buf info:\n" 882 DEBUGF("disk_buf info:\n"
883 " page count: %d\n" 883 " page count: %d\n"
884 " size: %zd\n", 884 " size: %ld\n",
885 disk_buf.pgcount, disk_buf.size); 885 disk_buf.pgcount, (long)disk_buf.size);
886 886
887 rb->memset(disk_buf.cache, 0xff, 887 rb->memset(disk_buf.cache, 0xff,
888 disk_buf.pgcount*sizeof (*disk_buf.cache)); 888 disk_buf.pgcount*sizeof (*disk_buf.cache));
diff --git a/apps/plugins/mpegplayer/mpeg_parser.c b/apps/plugins/mpegplayer/mpeg_parser.c
index 5c0fedfd51..27f71e6bde 100644
--- a/apps/plugins/mpegplayer/mpeg_parser.c
+++ b/apps/plugins/mpegplayer/mpeg_parser.c
@@ -366,9 +366,9 @@ static off_t mpeg_parser_seek_PTS(uint32_t time, unsigned id)
366 pos = pos_new; 366 pos = pos_new;
367 367
368 DEBUGF("Seeking stream 0x%02x\n", id); 368 DEBUGF("Seeking stream 0x%02x\n", id);
369 DEBUGF("$$ tl:%u t:%u ct:?? tr:%u\n pl:%zd pn:%zd pr:%zd\n", 369 DEBUGF("$$ tl:%u t:%u ct:?? tr:%u\n pl:%ld pn:%ld pr:%ld\n",
370 (unsigned)time_left, (unsigned)time, (unsigned)time_right, 370 (unsigned)time_left, (unsigned)time, (unsigned)time_right,
371 pos_left, pos_new, pos_right); 371 (long)pos_left, (long)pos_new, (long)pos_right);
372 372
373 sk.dir = SSCAN_REVERSE; 373 sk.dir = SSCAN_REVERSE;
374 374
@@ -425,9 +425,10 @@ static off_t mpeg_parser_seek_PTS(uint32_t time, unsigned id)
425 state = STATE2; /* Last scan was early */ 425 state = STATE2; /* Last scan was early */
426 sk.dir = SSCAN_REVERSE; 426 sk.dir = SSCAN_REVERSE;
427 427
428 DEBUGF(">> tl:%u t:%u ct:%u tr:%u\n pl:%zd pn:%zd pr:%zd\n", 428 DEBUGF(">> tl:%u t:%u ct:%u tr:%u\n pl:%ld pn:%ld pr:%ld\n",
429 (unsigned)time_left, (unsigned)time, (unsigned)currpts, 429 (unsigned)time_left, (unsigned)time, (unsigned)currpts,
430 (unsigned)time_right, pos_left, pos_new, pos_right); 430 (unsigned)time_right, (long)pos_left, (long)pos_new,
431 (long)pos_right);
431 } 432 }
432 else if (currpts > time) 433 else if (currpts > time)
433 { 434 {
@@ -453,16 +454,18 @@ static off_t mpeg_parser_seek_PTS(uint32_t time, unsigned id)
453 state = STATE3; /* Last scan was late */ 454 state = STATE3; /* Last scan was late */
454 sk.dir = SSCAN_REVERSE; 455 sk.dir = SSCAN_REVERSE;
455 456
456 DEBUGF("<< tl:%u t:%u ct:%u tr:%u\n pl:%zd pn:%zd pr:%zd\n", 457 DEBUGF("<< tl:%u t:%u ct:%u tr:%u\n pl:%ld pn:%ld pr:%ld\n",
457 (unsigned)time_left, (unsigned)time, (unsigned)currpts, 458 (unsigned)time_left, (unsigned)time, (unsigned)currpts,
458 (unsigned)time_right, pos_left, pos_new, pos_right); 459 (unsigned)time_right, (long)pos_left, (long)pos_new,
460 pos_right);
459 } 461 }
460 else 462 else
461 { 463 {
462 /* Exact match - it happens */ 464 /* Exact match - it happens */
463 DEBUGF("|| tl:%u t:%u ct:%u tr:%u\n pl:%zd pn:%zd pr:%zd\n", 465 DEBUGF("|| tl:%u t:%u ct:%u tr:%u\n pl:%ld pn:%ld pr:%ld\n",
464 (unsigned)time_left, (unsigned)time, (unsigned)currpts, 466 (unsigned)time_left, (unsigned)time, (unsigned)currpts,
465 (unsigned)time_right, pos_left, pos_new, pos_right); 467 (unsigned)time_right, (long)pos_left, (long)pos_new,
468 (long)pos_right);
466 pts = currpts; 469 pts = currpts;
467 pos = sk.pos; 470 pos = sk.pos;
468 state = STATE9; 471 state = STATE9;
@@ -492,9 +495,10 @@ static off_t mpeg_parser_seek_PTS(uint32_t time, unsigned id)
492 * will find it. */ 495 * will find it. */
493 pos_new = pos_left; 496 pos_new = pos_left;
494 sk.dir = SSCAN_FORWARD; 497 sk.dir = SSCAN_FORWARD;
495 DEBUGF("?? tl:%u t:%u ct:%u tr:%u\n pl:%zd pn:%zd pr:%zd\n", 498 DEBUGF("?? tl:%u t:%u ct:%u tr:%u\n pl:%ld pn:%ld pr:%ld\n",
496 (unsigned)time_left, (unsigned)time, (unsigned)currpts, 499 (unsigned)time_left, (unsigned)time, (unsigned)currpts,
497 (unsigned)time_right, pos_left, pos_new, pos_right); 500 (unsigned)time_right, (long)pos_left, (long)pos_new,
501 (long)pos_right);
498 state = STATE1; 502 state = STATE1;
499 break; 503 break;
500 default: 504 default:
@@ -521,8 +525,8 @@ static off_t mpeg_parser_seek_PTS(uint32_t time, unsigned id)
521 sk.dir = SSCAN_FORWARD; 525 sk.dir = SSCAN_FORWARD;
522 526
523 uint32_t nextpts = mpeg_parser_scan_pts(&sk, id); 527 uint32_t nextpts = mpeg_parser_scan_pts(&sk, id);
524 DEBUGF("Seek pos:%zd pts:%u t:%u next pts:%u \n", 528 DEBUGF("Seek pos:%ld pts:%u t:%u next pts:%u \n",
525 pos, (unsigned)pts, (unsigned)time, (unsigned)nextpts); 529 (long)pos, (unsigned)pts, (unsigned)time, (unsigned)nextpts);
526 530
527 if (pts <= time && time < nextpts) 531 if (pts <= time && time < nextpts)
528 { 532 {
@@ -608,8 +612,8 @@ try_again:
608 str_parser.parms.sd.sk.len = 1024*1024; 612 str_parser.parms.sd.sk.len = 1024*1024;
609 str_parser.parms.sd.sk.dir = SSCAN_FORWARD; 613 str_parser.parms.sd.sk.dir = SSCAN_FORWARD;
610 614
611 DEBUGF("thumb pos:%ld len:%zd\n", str_parser.parms.sd.sk.pos, 615 DEBUGF("thumb pos:%ld len:%ld\n", str_parser.parms.sd.sk.pos,
612 str_parser.parms.sd.sk.len); 616 (long)str_parser.parms.sd.sk.len);
613 617
614 result = str_send_msg(&video_str, STREAM_SYNC, 618 result = str_send_msg(&video_str, STREAM_SYNC,
615 (intptr_t)&str_parser.parms.sd); 619 (intptr_t)&str_parser.parms.sd);
diff --git a/apps/plugins/mpegplayer/pcm_output.c b/apps/plugins/mpegplayer/pcm_output.c
index cd6c45f712..a5d8f86e5b 100644
--- a/apps/plugins/mpegplayer/pcm_output.c
+++ b/apps/plugins/mpegplayer/pcm_output.c
@@ -99,7 +99,7 @@ static void get_more(unsigned char **start, size_t *size)
99 /* Just show a warning about this - will never happen 99 /* Just show a warning about this - will never happen
100 * without a bug in the audio thread code or a clobbered 100 * without a bug in the audio thread code or a clobbered
101 * buffer */ 101 * buffer */
102 DEBUGF("get_more: invalid size (%zd)\n", sz); 102 DEBUGF("get_more: invalid size (%ld)\n", (long)sz);
103 } 103 }
104 104
105 if (offset < -100*CLOCK_RATE/1000) 105 if (offset < -100*CLOCK_RATE/1000)