summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDamien Zammit <damien@zamaudio.com>2015-08-05 03:02:13 +1000
committerDamien Zammit <damien@zamaudio.com>2015-08-05 03:02:13 +1000
commite8785fac8423cd51dfee7e2af12106350b8dc34d (patch)
tree8e1fbd6d245f9dddba9425b5849ce3979e2d7e6a
parent54e5bde99791885a777ff0b4d6ff75b0a5e9cc0c (diff)
Updated README
Signed-off-by: Damien Zammit <damien@zamaudio.com>
-rw-r--r--README.md8
-rw-r--r--ptfformat.cc2
2 files changed, 4 insertions, 6 deletions
diff --git a/README.md b/README.md
index 6b832cf..1314828 100644
--- a/README.md
+++ b/README.md
@@ -1,8 +1,9 @@
ptfformat
=========
-ptfformat currently opens 98% of .ptf files
+ptfformat currently opens any .ptf file
and collects audio source/region/track information.
+(PT9 .ptf not supported yet)
The idea is to make ardour open ptf sessions.
@@ -13,7 +14,4 @@ Usage:
make
./ptftool file.ptf
-If the parsing fails due to missing lookup,
-work out the lookup table from:
-
- ./ptunxor file.ptf
+There are no more missing lookups!
diff --git a/ptfformat.cc b/ptfformat.cc
index 4cd01c6..2da6de3 100644
--- a/ptfformat.cc
+++ b/ptfformat.cc
@@ -325,7 +325,7 @@ PTFFormat::parse8(void) {
numberofwavs |= (uint32_t)(ptfunxored[j-3] << 16);
numberofwavs |= (uint32_t)(ptfunxored[j-4] << 8);
numberofwavs |= (uint32_t)(ptfunxored[j-5]);
- //printf("%d wavs\n", numberofwavs);
+ printf("%d wavs\n", numberofwavs);
break;
}
k--;