mirror of
https://github.com/nyanmisaka/ffmpeg-rockchip.git
synced 2026-01-23 23:21:06 +01:00
avfilter/vf_histeq: Change enums to int, which are accessed via AVOption as int
This fixes depending on implementation defined behavior Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
parent
7363889771
commit
6cd079a4e7
1 changed files with 1 additions and 1 deletions
|
|
@ -57,7 +57,7 @@ typedef struct {
|
|||
const AVClass *class;
|
||||
float strength;
|
||||
float intensity;
|
||||
enum HisteqAntibanding antibanding;
|
||||
int antibanding; ///< HisteqAntibanding
|
||||
int in_histogram [256]; ///< input histogram
|
||||
int out_histogram[256]; ///< output histogram
|
||||
int LUT[256]; ///< lookup table derived from histogram[]
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue