[SCM] libav/experimental: vf_shuffleplanes: fix the type of the mapping indices

siretart at users.alioth.debian.org siretart at users.alioth.debian.org
Sun Aug 10 16:01:49 UTC 2014


The following commit has been merged in the experimental branch:
commit 713d3f98c8b0ff6cc86985d9e4d85e3f5b3c7004
Author: Anton Khirnov <anton at khirnov.net>
Date:   Thu Mar 6 08:32:50 2014 +0100

    vf_shuffleplanes: fix the type of the mapping indices
    
    They are TYPE_INT AVOptions, so they must be ints

diff --git a/libavfilter/vf_shuffleplanes.c b/libavfilter/vf_shuffleplanes.c
index 8422d2f..1bc77b0 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;

-- 
Libav/FFmpeg packaging



More information about the pkg-multimedia-commits mailing list