You've already forked FFmpeg
mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-08-10 06:10:52 +02:00
vf_shuffleplanes: fix the type of the mapping indices
They are TYPE_INT AVOptions, so they must be ints
This commit is contained in:
@@ -34,7 +34,7 @@ typedef struct ShufflePlanesContext {
|
|||||||
int planes;
|
int planes;
|
||||||
|
|
||||||
/* mapping indices */
|
/* mapping indices */
|
||||||
uint8_t map[4];
|
int map[4];
|
||||||
|
|
||||||
/* set to 1 if some plane is used more than once, so we need to make a copy */
|
/* set to 1 if some plane is used more than once, so we need to make a copy */
|
||||||
int copy;
|
int copy;
|
||||||
|
Reference in New Issue
Block a user