[FFmpeg-cvslog] avfilter/af_astats: use UINT64_C instead of the LLU suffix
James Almer
git at videolan.org
Mon Jul 20 05:08:18 CEST 2015
ffmpeg | branch: master | James Almer <jamrial at gmail.com> | Mon Jul 20 00:04:38 2015 -0300| [6de5b6cd861639ad7238b9cf629f50669fc6dd0c] | committer: James Almer
avfilter/af_astats: use UINT64_C instead of the LLU suffix
Should fix compilation with vs2012
Signed-off-by: James Almer <jamrial at gmail.com>
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=6de5b6cd861639ad7238b9cf629f50669fc6dd0c
---
libavfilter/af_astats.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/libavfilter/af_astats.c b/libavfilter/af_astats.c
index e38d66b..b17d663 100644
--- a/libavfilter/af_astats.c
+++ b/libavfilter/af_astats.c
@@ -167,7 +167,7 @@ static inline void update_stat(AudioStatsContext *s, ChannelStats *p, double d)
p->max_diff = FFMAX(p->max_diff, FFABS(d - (p->max_diff == -1 ? d : p->last)));
p->diff1_sum += FFABS(d - p->last);
p->last = d;
- p->mask |= llrint(d * (1LLU<<63));
+ p->mask |= llrint(d * (UINT64_C(1) << 63));
if (p->nb_samples >= s->tc_samples) {
p->max_sigma_x2 = FFMAX(p->max_sigma_x2, p->avg_sigma_x2);
More information about the ffmpeg-cvslog
mailing list