diff options
| author | Felix Domke <tmbinc@elitedvb.net> | 2007-04-12 19:59:36 +0000 |
|---|---|---|
| committer | Felix Domke <tmbinc@elitedvb.net> | 2007-04-12 19:59:36 +0000 |
| commit | 21c6d9dffd08ebe0a94e99b68a98d3d1cebccebb (patch) | |
| tree | 04277d26563c3a0510df81d94803d04715fb4b43 /lib/service/servicefs.cpp | |
| parent | 2afcb9094eb0596e2ce4fef77d8208f399ca8e8d (diff) | |
| download | enigma2-21c6d9dffd08ebe0a94e99b68a98d3d1cebccebb.tar.gz enigma2-21c6d9dffd08ebe0a94e99b68a98d3d1cebccebb.zip | |
use hex instead of decimal
Diffstat (limited to 'lib/service/servicefs.cpp')
| -rw-r--r-- | lib/service/servicefs.cpp | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/lib/service/servicefs.cpp b/lib/service/servicefs.cpp index f2772192..728bb460 100644 --- a/lib/service/servicefs.cpp +++ b/lib/service/servicefs.cpp @@ -142,17 +142,17 @@ RESULT eServiceFS::getContent(std::list<eServiceReference> &list, bool sorted) if (extension == ".ts") type = eServiceFactoryDVB::id; else if (extension == ".mp3") - type = 4097; + type = 0x1001; else if (extension == ".ogg") - type = 4097; + type = 0x1001; else if (extension == ".mpg") - type = 4097; + type = 0x1001; else if (extension == ".vob") - type = 4097; + type = 0x1001; else if (extension == ".wav" || extension == ".wave") - type = 4097; + type = 0x1001; else if (extension == ".m3u" || extension == ".pls" || extension == ".e2pls") - type = 4098; + type = 4098; // ?? this id is not defined in any service handler, just in python code. if (type != -1) { |
