mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2026-06-19 19:03:00 +02:00
Replace most of the %lld and %llx by their (cleaner) PRI*64 counterparts.
patch by Steve Lhomme, slhomme divxcorp com Originally committed as revision 6868 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
committed by
Diego Biurrun
parent
523fc7c17d
commit
949b1a13bf
@@ -156,7 +156,7 @@ static int load_ipmovie_packet(IPMVEContext *s, ByteIOContext *pb,
|
||||
s->audio_frame_count +=
|
||||
(s->audio_chunk_size - 6) / s->audio_channels;
|
||||
|
||||
debug_ipmovie("sending audio frame with pts %lld (%d audio frames)\n",
|
||||
debug_ipmovie("sending audio frame with pts %"PRId64" (%d audio frames)\n",
|
||||
audio_pts, s->audio_frame_count);
|
||||
|
||||
chunk_type = CHUNK_VIDEO;
|
||||
@@ -190,7 +190,7 @@ static int load_ipmovie_packet(IPMVEContext *s, ByteIOContext *pb,
|
||||
pkt->stream_index = s->video_stream_index;
|
||||
pkt->pts = s->video_pts;
|
||||
|
||||
debug_ipmovie("sending video frame with pts %lld\n",
|
||||
debug_ipmovie("sending video frame with pts %"PRId64"\n",
|
||||
pkt->pts);
|
||||
|
||||
s->video_pts += s->frame_pts_inc;
|
||||
|
||||
Reference in New Issue
Block a user