This website works better with JavaScript.
Home
Help
Sign In
falkTX
/
FFmpeg
mirror of
https://github.com/falkTX/FFmpeg.git
Watch
1
Star
0
Fork
0
Code
Issues
0
Releases
338
Wiki
Activity
Browse Source
vf_shuffleplanes: fix the type of the mapping indices
They are TYPE_INT AVOptions, so they must be ints
tags/n2.3
Anton Khirnov
11 years ago
parent
3bfdee00cd
commit
713d3f98c8
1 changed files
with
1 additions
and
1 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+1
-1
libavfilter/vf_shuffleplanes.c
+ 1
- 1
libavfilter/vf_shuffleplanes.c
View File
@@ -34,7 +34,7 @@ typedef struct ShufflePlanesContext {
int planes;
/* mapping indices */
u
in
t8_
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;
Write
Preview
Loading…
Cancel
Save