# HG changeset patch # User bcoudurier # Date 1142170736 0 # Node ID 1e37927ea0bd2a7de58ff14588bb7e5cd98aa7d3 # Parent 22538d21681fdcaa2f8301021eb0c6468af69df1 fix conversion types in dprintf diff -r 22538d21681f -r 1e37927ea0bd mov.c --- a/mov.c Sat Mar 11 18:43:10 2006 +0000 +++ b/mov.c Sun Mar 12 13:38:56 2006 +0000 @@ -439,7 +439,7 @@ } total_size += 8; a.offset += 8; - dprintf("type: %08x %.4s sz: %Lx %Lx %Lx\n", a.type, (char*)&a.type, a.size, atom.size, total_size); + dprintf("type: %08x %.4s sz: %PRIx64 %PRIx64 %PRIx64\n", a.type, (char*)&a.type, a.size, atom.size, total_size); if (a.size == 1) { /* 64 bit extended size */ a.size = get_be64(pb) - 8; a.offset += 8; @@ -738,7 +738,7 @@ if (st->codec->extradata) { strcpy(st->codec->extradata, "SVQ3"); // fake get_buffer(pb, st->codec->extradata + 0x5a, atom.size); - dprintf("Reading SMI %Ld %s\n", atom.size, (char*)st->codec->extradata + 0x5a); + dprintf("Reading SMI %PRId64 %s\n", atom.size, (char*)st->codec->extradata + 0x5a); } else url_fskip(pb, atom.size); @@ -1717,7 +1717,7 @@ } dts = time + (msc->current_sample-1 - sample) * (int64_t)duration; dts = av_rescale(dts, AV_TIME_BASE, msc->time_scale); - dprintf("stream: %d dts: %Ld best_dts: %Ld offset: %Ld \n", i, dts, best_dts, offset); + dprintf("stream: %d dts: %PRId64 best_dts: %PRId64 offset: %PRId64 \n", i, dts, best_dts, offset); if(dts < best_dts){ best_dts= dts; sc = msc;