mirror of
https://github.com/librempeg/librempeg
synced 2024-11-23 11:39:47 +00:00
Use PRId64 in seek test
Originally committed as revision 10098 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
parent
40802d36bc
commit
99e8b22dc5
@ -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");
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user