From 9bb87e91c0930f16cf615cfc374089912440e5e0 Mon Sep 17 00:00:00 2001 From: Carl Hetherington Date: Sat, 4 May 2013 18:01:19 +0100 Subject: Add primitive description of what the playlist is doing. Add missing de-interleave of multi-channel audio sources. --- run/dcpomatic_cli | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100755 run/dcpomatic_cli (limited to 'run/dcpomatic_cli') diff --git a/run/dcpomatic_cli b/run/dcpomatic_cli new file mode 100755 index 000000000..bf2f08015 --- /dev/null +++ b/run/dcpomatic_cli @@ -0,0 +1,12 @@ +#!/bin/bash + +export LD_LIBRARY_PATH=build/src/lib:$LD_LIBRARY_PATH:build/src +if [ "$1" == "--debug" ]; then + shift + gdb --args build/src/tools/dcpomatic_cli "$@" +elif [ "$1" == "--valgrind" ]; then + shift + valgrind --tool="memcheck" --leak-check=full --show-reachable=yes build/src/tools/dcpomatic_cli "$@" +else + build/src/tools/dcpomatic_cli "$@" +fi -- cgit v1.2.3