From 713d3f98c8b0ff6cc86985d9e4d85e3f5b3c7004 Mon Sep 17 00:00:00 2001 From: Anton Khirnov Date: Thu, 6 Mar 2014 08:32:50 +0100 Subject: vf_shuffleplanes: fix the type of the mapping indices They are TYPE_INT AVOptions, so they must be ints --- libavfilter/vf_shuffleplanes.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'libavfilter') diff --git a/libavfilter/vf_shuffleplanes.c b/libavfilter/vf_shuffleplanes.c index 8422d2f84e..1bc77b0a31 100644 --- a/libavfilter/vf_shuffleplanes.c +++ b/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; -- cgit v1.2.3