summaryrefslogtreecommitdiffstats
path: root/bff-premultiply.c
diff options
context:
space:
mode:
authorMattias Andrée <maandree@kth.se>2017-07-03 23:13:56 +0200
committerMattias Andrée <maandree@kth.se>2017-07-03 23:13:56 +0200
commit3d575088436f16f9fcbc86c0674a396cb218df52 (patch)
tree5f16152a4b7f966c61da1200edefc738598e4c2b /bff-premultiply.c
parentAdd bff-premultiply and bff-unpremultiply (diff)
downloadbff-3d575088436f16f9fcbc86c0674a396cb218df52.tar.gz
bff-3d575088436f16f9fcbc86c0674a396cb218df52.tar.bz2
bff-3d575088436f16f9fcbc86c0674a396cb218df52.tar.xz
whoops...
Signed-off-by: Mattias Andrée <maandree@kth.se>
Diffstat (limited to 'bff-premultiply.c')
-rw-r--r--bff-premultiply.c23
1 files changed, 23 insertions, 0 deletions
diff --git a/bff-premultiply.c b/bff-premultiply.c
new file mode 100644
index 0000000..0f80d1b
--- /dev/null
+++ b/bff-premultiply.c
@@ -0,0 +1,23 @@
+/* See LICENSE file for copyright and license details. */
+#include "common.h"
+
+USAGE("")
+
+int
+main(int argc, char *argv[])
+{
+ pid_t pid;
+
+ UNOFLAGS(argc);
+
+ bff_begin();
+
+ pid = bff_run((const char *[]){ "blind-premultiply", NULL },
+ STDIN_FILENO, STDOUT_FILENO);
+
+ bff_wait(pid, "blind-premultiply");
+
+ bff_end();
+
+ return 0;
+}