summaryrefslogtreecommitdiffstats
path: root/TOOLS/vf_dlopen/tile.c
diff options
context:
space:
mode:
authorKevin Mitchell <kevmitch@gmail.com>2014-05-14 13:49:16 -0700
committerKevin Mitchell <kevmitch@gmail.com>2014-05-15 10:32:16 -0700
commit1eee4d779954974cd413be5e46f1ed877836ef31 (patch)
treee77d80486a61ce524fc90fd2dda7557bddd2c38d /TOOLS/vf_dlopen/tile.c
parent2b1b8d6c95952f03049a9f643058c114899680bc (diff)
downloadmpv-1eee4d779954974cd413be5e46f1ed877836ef31.tar.bz2
mpv-1eee4d779954974cd413be5e46f1ed877836ef31.tar.xz
TOOLS/vf_dlopen: use new pixelformats, fix usage for newstyle args
Diffstat (limited to 'TOOLS/vf_dlopen/tile.c')
-rw-r--r--TOOLS/vf_dlopen/tile.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/TOOLS/vf_dlopen/tile.c b/TOOLS/vf_dlopen/tile.c
index ad9f72ebdc..57355bbc4c 100644
--- a/TOOLS/vf_dlopen/tile.c
+++ b/TOOLS/vf_dlopen/tile.c
@@ -30,17 +30,17 @@
/*
* tile filter
*
- * usage: -vf dlopen=./tile.so:4:3
+ * usage: --vf=dlopen=/path/to/tile.so:4:3
*
- * only supports rgb24 and yv12 for now
+ * only supports rgb24 and yuv420p for now
* in theory can support any format where rows are a multiple of bytes, and the
* multiple is known
*/
#define ALLFORMATS \
- /* format bytes xmul ymul */ \
- FORMAT("rgb24", 3, 1, 1) \
- FORMAT("yv12", 1, 2, 2)
+ /* format bytes xmul ymul */ \
+ FORMAT("rgb24" , 3, 1, 1) \
+ FORMAT("yuv420p", 1, 2, 2)
typedef struct {
int rows, cols;