Browse Source

avfilter/vf_colorlevels: typedef ThreadData struct

tags/n4.4
Paul B Mahol 4 years ago
parent
commit
a7e826b9e1
1 changed files with 5 additions and 5 deletions
  1. +5
    -5
      libavfilter/vf_colorlevels.c

+ 5
- 5
libavfilter/vf_colorlevels.c View File

@@ -105,7 +105,7 @@ static int config_input(AVFilterLink *inlink)
return 0; return 0;
} }


struct thread_data {
typedef struct ThreadData {
const uint8_t *srcrow; const uint8_t *srcrow;
uint8_t *dstrow; uint8_t *dstrow;
int dst_linesize; int dst_linesize;
@@ -118,11 +118,11 @@ struct thread_data {


int imin; int imin;
int omin; int omin;
};
} ThreadData;


#define LOAD_COMMON\ #define LOAD_COMMON\
ColorLevelsContext *s = ctx->priv;\ ColorLevelsContext *s = ctx->priv;\
const struct thread_data *td = arg;\
const ThreadData *td = arg;\
\ \
int process_h = td->h;\ int process_h = td->h;\
const int slice_start = (process_h * jobnr ) / nb_jobs;\ const int slice_start = (process_h * jobnr ) / nb_jobs;\
@@ -199,7 +199,7 @@ static int filter_frame(AVFilterLink *inlink, AVFrame *in)
int omin = lrint(r->out_min * UINT8_MAX); int omin = lrint(r->out_min * UINT8_MAX);
int omax = lrint(r->out_max * UINT8_MAX); int omax = lrint(r->out_max * UINT8_MAX);
double coeff; double coeff;
struct thread_data td;
ThreadData td;


if (imin < 0) { if (imin < 0) {
imin = UINT8_MAX; imin = UINT8_MAX;
@@ -251,7 +251,7 @@ static int filter_frame(AVFilterLink *inlink, AVFrame *in)
int omin = lrint(r->out_min * UINT16_MAX); int omin = lrint(r->out_min * UINT16_MAX);
int omax = lrint(r->out_max * UINT16_MAX); int omax = lrint(r->out_max * UINT16_MAX);
double coeff; double coeff;
struct thread_data td;
ThreadData td;


if (imin < 0) { if (imin < 0) {
imin = UINT16_MAX; imin = UINT16_MAX;


Loading…
Cancel
Save