project: Apply patches from const correctness checks

This commit is contained in:
Michael Fabian 'Xaymar' Dirks
2019-07-24 14:19:00 +02:00
parent 1a8f4d6a02
commit 0399989238
5 changed files with 14 additions and 14 deletions
+2 -2
View File
@@ -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;
}