Magellan Linux

Annotation of /trunk/beep-media-player/patches/beep-media-player-0.9.7-drag-and-drop.patch

Parent Directory Parent Directory | Revision Log Revision Log


Revision 144 - (hide annotations) (download)
Tue May 8 20:06:05 2007 UTC (17 years, 1 month ago) by niro
File size: 560 byte(s)
-import

1 niro 144 --- Input/mpg123/mpg123.c.orig Sun Jul 11 16:41:00 2004
2     +++ Input/mpg123/mpg123.c Sun Jul 11 16:46:55 2004
3     @@ -431,6 +431,10 @@
4     if (!strncasecmp(ext, ".mp2", 4) || !strncasecmp(ext, ".mp3", 4)) {
5     return TRUE;
6     }
7     + /* Playlists */
8     + if (!strncasecmp(ext, ".m3u", 4) || !strncasecmp(ext, ".pls", 4)) {
9     + return TRUE;
10     + }
11     if (!strncasecmp(ext, ".wav", 4)) {
12     wavid = read_wav_id(filename);
13     if (wavid == 85 || wavid == 80) { /* Microsoft says 80, files say 85... */