Browse Source

vf_shuffleplanes: fix the type of the mapping indices

They are TYPE_INT AVOptions, so they must be ints
Anton Khirnov 11 years ago
parent
commit
713d3f98c8
1 changed files with 1 additions and 1 deletions
  1. 1 1
      libavfilter/vf_shuffleplanes.c

+ 1 - 1
libavfilter/vf_shuffleplanes.c

@@ -34,7 +34,7 @@ typedef struct ShufflePlanesContext {
     int planes;
 
     /* 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 */
     int copy;