summaryrefslogtreecommitdiffstats
path: root/scripts
diff options
context:
space:
mode:
authorDaniel Schürmann <daschuer@mixxx.org>2015-02-06 22:17:14 +0100
committerDaniel Schürmann <daschuer@mixxx.org>2015-02-06 22:17:14 +0100
commitcd78847a6e06bae9d9c14673a486f43141aa1796 (patch)
treef7641a5332eacb974a301dd00a92dd0723c5ee1a /scripts
parent7ac69f6d9c46beffa2e7b9ec9ae27c1d1096be47 (diff)
Added mor comments to generate_sample_functions.py
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/generate_sample_functions.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/scripts/generate_sample_functions.py b/scripts/generate_sample_functions.py
index 1aea0bd14c..138ba54e3b 100755
--- a/scripts/generate_sample_functions.py
+++ b/scripts/generate_sample_functions.py
@@ -225,7 +225,9 @@ def main(args):
if __name__ == '__main__':
parser = argparse.ArgumentParser(
- description='Auto-generate sample processing and mixing functions.')
+ description='Auto-generate sample processing and mixing functions.' +
+ 'Example Call:' +
+ './generate_sample_functions.py --sampleutil_autogen_h ../src/sampleutil_autogen.h --channelmixer_autogen_cpp ../src/engine/channelmixer_autogen.cpp')
parser.add_argument('--sampleutil_autogen_h')
parser.add_argument('--channelmixer_autogen_cpp')
parser.add_argument('--max_channels', type=int, default=32)