[FFmpeg-cvslog] avfilter/vf_colorlevels: no need to use double for coeff
Paul B Mahol
git at videolan.org
Tue Feb 2 18:55:25 EET 2021
ffmpeg | branch: master | Paul B Mahol <onemda at gmail.com> | Tue Feb 2 16:14:48 2021 +0100| [7ee3a5594b9ddf54099cc9019b6e4239510c422e] | committer: Paul B Mahol
avfilter/vf_colorlevels: no need to use double for coeff
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=7ee3a5594b9ddf54099cc9019b6e4239510c422e
---
libavfilter/vf_colorlevels.c | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/libavfilter/vf_colorlevels.c b/libavfilter/vf_colorlevels.c
index b4d8106133..f1eeb68c54 100644
--- a/libavfilter/vf_colorlevels.c
+++ b/libavfilter/vf_colorlevels.c
@@ -111,7 +111,7 @@ typedef struct ThreadData {
int dst_linesize;
int src_linesize;
- double coeff;
+ float coeff;
uint8_t offset;
int h;
@@ -135,7 +135,7 @@ typedef struct ThreadData {
\
int imin = td->imin; \
int omin = td->omin; \
- double coeff = td->coeff;
+ float coeff = td->coeff;
static int colorlevel_slice_8(AVFilterContext *ctx, void *arg, int jobnr, int nb_jobs)
{
@@ -198,7 +198,7 @@ static int filter_frame(AVFilterLink *inlink, AVFrame *in)
int imax = lrint(r->in_max * UINT8_MAX);
int omin = lrint(r->out_min * UINT8_MAX);
int omax = lrint(r->out_max * UINT8_MAX);
- double coeff;
+ float coeff;
ThreadData td;
if (imin < 0) {
@@ -250,7 +250,7 @@ static int filter_frame(AVFilterLink *inlink, AVFrame *in)
int imax = lrint(r->in_max * UINT16_MAX);
int omin = lrint(r->out_min * UINT16_MAX);
int omax = lrint(r->out_max * UINT16_MAX);
- double coeff;
+ float coeff;
ThreadData td;
if (imin < 0) {
More information about the ffmpeg-cvslog
mailing list