Browse code

vf_shuffleplanes: fix the type of the mapping indices

They are TYPE_INT AVOptions, so they must be ints

Anton Khirnov authored on 2014/03/06 16:32:50
Showing 1 changed files
... ...
@@ -34,7 +34,7 @@ typedef struct ShufflePlanesContext {
34 34
     int planes;
35 35
 
36 36
     /* mapping indices */
37
-    uint8_t map[4];
37
+    int map[4];
38 38
 
39 39
     /* set to 1 if some plane is used more than once, so we need to make a copy */
40 40
     int copy;