Browse Source

put the modules in a more sane order, so that the ones that do

the most work (or are most "destructive") are last, and the short
and simple ones first...  maybe we should do a sort on an attribute
the implies how many bytes are read or requires http access or
something..

[git-p4: depot-paths = "//depot/": change = 868]
v0.3
John-Mark Gurney 19 years ago
parent
commit
8e6c2d0c84
1 changed files with 3 additions and 1 deletions
  1. +3
    -1
      pymediaserv

+ 3
- 1
pymediaserv View File

@@ -25,7 +25,9 @@ def tryloadmodule(mod):
pass

# ZipStorage w/ tar support should be last as it will gobble up empty files.
modules = [ 'dvd', 'mpegtsmod', 'shoutcast', 'ZipStorage' ]
# These should be sorted by how much work they do, the least work the earlier.
# mpegtsmod can be really expensive.
modules = [ 'shoutcast', 'dvd', 'ZipStorage', 'mpegtsmod' ]
modmap = {}
for i in modules:
modmap[i] = tryloadmodule(i)


Loading…
Cancel
Save