Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mpc-hc/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAnton Khirnov <anton@khirnov.net>2014-03-06 11:32:50 +0400
committerAnton Khirnov <anton@khirnov.net>2014-03-06 12:24:53 +0400
commit713d3f98c8b0ff6cc86985d9e4d85e3f5b3c7004 (patch)
treefa97e430e9059122a1355d716a4ba71efd16d061 /libavfilter/vf_shuffleplanes.c
parent3bfdee00cd92ff07c364d4901c4aefda32780756 (diff)
vf_shuffleplanes: fix the type of the mapping indices
They are TYPE_INT AVOptions, so they must be ints
Diffstat (limited to 'libavfilter/vf_shuffleplanes.c')
-rw-r--r--libavfilter/vf_shuffleplanes.c2
1 files changed, 1 insertions, 1 deletions
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;