Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorDavid Conrad <lessen42@gmail.com>2007-08-13 09:18:14 +0400
committerDavid Conrad <lessen42@gmail.com>2007-08-13 09:18:14 +0400
commit99e8b22dc56f5d850ac4142388dce029f7761ff3 (patch)
tree40fd7071d125618d5d9ef0a896c872f502554aa0 /tests
parent40802d36bc5bb023c1cca9cc0901338eff7c24a2 (diff)
Use PRId64 in seek test
Originally committed as revision 10098 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'tests')
-rw-r--r--tests/seek_test.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/seek_test.c b/tests/seek_test.c
index 025268549f..2ab71612a7 100644
--- a/tests/seek_test.c
+++ b/tests/seek_test.c
@@ -72,7 +72,7 @@ int main(int argc, char **argv)
printf("ret:%2d", ret);
if(ret>=0){
st= ic->streams[pkt.stream_index];
- printf(" st:%2d dts:%f pts:%f pos:%Ld size:%d flags:%d", pkt.stream_index, pkt.dts*av_q2d(st->time_base), pkt.pts*av_q2d(st->time_base), pkt.pos, pkt.size, pkt.flags);
+ printf(" st:%2d dts:%f pts:%f pos:%" PRId64 " size:%d flags:%d", pkt.stream_index, pkt.dts*av_q2d(st->time_base), pkt.pts*av_q2d(st->time_base), pkt.pos, pkt.size, pkt.flags);
}
printf("\n");
}