[FFmpeg-cvslog] af_asyncts: Use llabs instead of labs for 64-bit variable

Diego Biurrun git at videolan.org
Sat Apr 1 12:30:25 EEST 2017


ffmpeg | branch: master | Diego Biurrun <diego at biurrun.de> | Mon Jan  4 11:14:51 2016 +0100| [fbd1f7639d0142c391bec85d1d840c835210843f] | committer: Diego Biurrun

af_asyncts: Use llabs instead of labs for 64-bit variable

libavfilter/af_asyncts.c:212:9: warning: absolute value function 'labs' given an argument of type 'int64_t' (aka 'long long') but has parameter of type 'long' which may cause truncation of value [-Wabsolute-value]

> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=fbd1f7639d0142c391bec85d1d840c835210843f
---

 libavfilter/af_asyncts.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/libavfilter/af_asyncts.c b/libavfilter/af_asyncts.c
index e662c84..862b7a8 100644
--- a/libavfilter/af_asyncts.c
+++ b/libavfilter/af_asyncts.c
@@ -209,7 +209,7 @@ static int filter_frame(AVFilterLink *inlink, AVFrame *buf)
     delta    = pts - s->pts - get_delay(s);
     out_size = avresample_available(s->avr);
 
-    if (labs(delta) > s->min_delta ||
+    if (llabs(delta) > s->min_delta ||
         (s->first_frame && delta && s->first_pts != AV_NOPTS_VALUE)) {
         av_log(ctx, AV_LOG_VERBOSE, "Discontinuity - %"PRId64" samples.\n", delta);
         out_size = av_clipl_int32((int64_t)out_size + delta);



More information about the ffmpeg-cvslog mailing list