diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2011-12-13 20:01:49 +0100 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2011-12-13 20:01:49 +0100 |
commit | 9aeaf629038c572073e836277cd1fa981465dd6c (patch) | |
tree | 307fec57f5fbe05f65a3406a8e5c331d0f9f2323 /libavcodec/ratecontrol.c | |
parent | 35f707abe1bd3b80b1951010539285d4c3a14dba (diff) | |
download | ffmpeg-9aeaf629038c572073e836277cd1fa981465dd6c.tar.gz |
Fix all GNU %Ld
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavcodec/ratecontrol.c')
-rw-r--r-- | libavcodec/ratecontrol.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/ratecontrol.c b/libavcodec/ratecontrol.c index 1fe014fe2f..e49df8b2a0 100644 --- a/libavcodec/ratecontrol.c +++ b/libavcodec/ratecontrol.c @@ -708,7 +708,7 @@ float ff_rate_estimate_qscale(MpegEncContext *s, int dry_run) dts_pic= s->last_picture_ptr; //if(dts_pic) -// av_log(NULL, AV_LOG_ERROR, "%Ld %Ld %Ld %d\n", s->current_picture_ptr->pts, s->user_specified_pts, dts_pic->pts, picture_number); +// av_log(NULL, AV_LOG_ERROR, "%"PRId64" %"PRId64" %"PRId64" %d\n", s->current_picture_ptr->pts, s->user_specified_pts, dts_pic->pts, picture_number); if (!dts_pic || dts_pic->f.pts == AV_NOPTS_VALUE) wanted_bits= (uint64_t)(s->bit_rate*(double)picture_number/fps); |