summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDamien Zammit <damien@zamaudio.com>2015-07-26 15:34:56 +1000
committerDamien Zammit <damien@zamaudio.com>2015-07-26 15:34:56 +1000
commitb200d086ed3e7e50fae6109579e39d14af2d07cc (patch)
tree0bcdedcc9418f825b3f358bfeb7ba92e295cb60b
parent2387a9507be78e2d8da06408c60446b31a7b4810 (diff)
Updated output message titles
Signed-off-by: Damien Zammit <damien@zamaudio.com>
-rw-r--r--ptftool.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/ptftool.cc b/ptftool.cc
index 1ec82a0..be10a22 100644
--- a/ptftool.cc
+++ b/ptftool.cc
@@ -35,7 +35,7 @@ int main (int argc, char **argv) {
break;
case 0:
if (ptf.audiofiles.size() > 0) {
- printf("Audio file @ offset:\n");
+ printf("Audio file recorded @ offset:\n");
for (vector<PTFFormat::files_t>::iterator
a = ptf.audiofiles.begin();
a != ptf.audiofiles.end(); ++a) {
@@ -43,7 +43,7 @@ int main (int argc, char **argv) {
printf("%s @ %lu, len=%lu\n", a->filename.c_str(),
a->posabsolute, a->length);
}
- printf("\nOther track @ offset:\n");
+ printf("\nRegion @ absolute + inter-sample, length:\n");
for (vector<PTFFormat::files_t>::iterator
a = ptf.othertracks.begin();
a != ptf.othertracks.end(); ++a) {