author | llornkcor <llornkcor> | 2002-04-20 20:11:06 (UTC) |
---|---|---|
committer | llornkcor <llornkcor> | 2002-04-20 20:11:06 (UTC) |
commit | 99904a1df601bb5d1c0e6d43a3e04a63fe13cf51 (patch) (unidiff) | |
tree | 51ea12679f08c7007bf5367fa4b6cede2d4fc187 | |
parent | 5d70d17bf478808387cf6e555cc1a65777e6399a (diff) | |
download | opie-99904a1df601bb5d1c0e6d43a3e04a63fe13cf51.zip opie-99904a1df601bb5d1c0e6d43a3e04a63fe13cf51.tar.gz opie-99904a1df601bb5d1c0e6d43a3e04a63fe13cf51.tar.bz2 |
removed .mp3 files from using libmpeg
-rw-r--r-- | core/multimedia/opieplayer/libmpeg3/libmpeg3.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/multimedia/opieplayer/libmpeg3/libmpeg3.c b/core/multimedia/opieplayer/libmpeg3/libmpeg3.c index c0fc570..acaecf7 100644 --- a/core/multimedia/opieplayer/libmpeg3/libmpeg3.c +++ b/core/multimedia/opieplayer/libmpeg3/libmpeg3.c | |||
@@ -66,13 +66,13 @@ int mpeg3_check_sig(char *path) | |||
66 | 66 | ||
67 | ext = strrchr(path, '.'); | 67 | ext = strrchr(path, '.'); |
68 | if(ext) | 68 | if(ext) |
69 | { | 69 | { |
70 | /* Test file extension. */ | 70 | /* Test file extension. */ |
71 | if(strncasecmp(ext, ".mp2", 4) && | 71 | if(strncasecmp(ext, ".mp2", 4) && |
72 | strncasecmp(ext, ".mp3", 4) && | 72 | // strncasecmp(ext, ".mp3", 4) && |
73 | strncasecmp(ext, ".m1v", 4) && | 73 | strncasecmp(ext, ".m1v", 4) && |
74 | strncasecmp(ext, ".m2v", 4) && | 74 | strncasecmp(ext, ".m2v", 4) && |
75 | strncasecmp(ext, ".m2s", 4) && | 75 | strncasecmp(ext, ".m2s", 4) && |
76 | strncasecmp(ext, ".mpg", 4) && | 76 | strncasecmp(ext, ".mpg", 4) && |
77 | strncasecmp(ext, ".vob", 4) && | 77 | strncasecmp(ext, ".vob", 4) && |
78 | strncasecmp(ext, ".mpeg", 4) && | 78 | strncasecmp(ext, ".mpeg", 4) && |