summaryrefslogtreecommitdiff
path: root/scripts
diff options
context:
space:
mode:
authorlvw <lvw@e10066b5-e1e2-0310-b819-94efdf66514b>2004-08-31 22:03:39 +0000
committerlvw <lvw@e10066b5-e1e2-0310-b819-94efdf66514b>2004-08-31 22:03:39 +0000
commit16856546e54a78e1326d5492d446c79e31194a41 (patch)
tree06644c5f9f88d0b0a5d5be7e6abd2028d6884f15 /scripts
parentdbb6752bbd1f5b47c65eb45c418a53f23cae866f (diff)
downloadvdr-plugin-muggle-16856546e54a78e1326d5492d446c79e31194a41.tar.gz
vdr-plugin-muggle-16856546e54a78e1326d5492d446c79e31194a41.tar.bz2
Coding style and naming of ogg ddecoder adapted. DB schema extended to hold audio properties sampling rate and channel count.
git-svn-id: https://vdr-muggle.svn.sourceforge.net/svnroot/vdr-muggle/branches/ogg_player@132 e10066b5-e1e2-0310-b819-94efdf66514b
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/createtables.mysql4
1 files changed, 4 insertions, 0 deletions
diff --git a/scripts/createtables.mysql b/scripts/createtables.mysql
index 5969ce2..079b3bd 100755
--- a/scripts/createtables.mysql
+++ b/scripts/createtables.mysql
@@ -219,6 +219,10 @@ CREATE TABLE tracks (
created date default NULL,
modified date default NULL,
backup tinyint(3) unsigned default NULL,
+
+ samplerate int(7) unsigned default NULL,
+ channels tinyint(3) unsigned default NULL,
+
id int(11) NOT NULL auto_increment,
PRIMARY KEY (id),
KEY title (title(10)),