From ee0c7706a0848d61bf302b99d59457bfa386d040 Mon Sep 17 00:00:00 2001 From: Michael Fabian 'Xaymar' Dirks Date: Wed, 24 Jul 2019 14:38:30 +0200 Subject: [PATCH] ffmpeg/swscale: Apply clang-tidy fix for l <-> L --- source/ffmpeg/swscale.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/source/ffmpeg/swscale.cpp b/source/ffmpeg/swscale.cpp index 9bbb4b3..079d78a 100644 --- a/source/ffmpeg/swscale.cpp +++ b/source/ffmpeg/swscale.cpp @@ -176,8 +176,8 @@ bool ffmpeg::swscale::initialize(int flags) } sws_setColorspaceDetails(this->context, sws_getCoefficients(source_colorspace), source_full_range ? 1 : 0, - sws_getCoefficients(target_colorspace), target_full_range ? 1 : 0, 1L << 16 | 0l, - 1L << 16 | 0l, 1L << 16 | 0l); + sws_getCoefficients(target_colorspace), target_full_range ? 1 : 0, 1L << 16 | 0L, + 1L << 16 | 0L, 1L << 16 | 0L); return true; }