[rhythmbox] generic-player: write M3U playlists in DOS format



commit f5fdd9bcc25844d30a4f23e70554176b93fba83c
Author: Ryan May <rmay31 gmail com>
Date:   Sat Jan 30 13:56:55 2010 +1000

    generic-player: write M3U playlists in DOS format
    
    For now, we're assuming that all devices that use M3U playlist format
    expect the playlists to be in DOS format.  See bug #608397.

 plugins/generic-player/rb-generic-player-source.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)
---
diff --git a/plugins/generic-player/rb-generic-player-source.c b/plugins/generic-player/rb-generic-player-source.c
index 13acd33..3fec9eb 100644
--- a/plugins/generic-player/rb-generic-player-source.c
+++ b/plugins/generic-player/rb-generic-player-source.c
@@ -1081,7 +1081,7 @@ rb_generic_player_source_get_playlist_format (RBGenericPlayerSource *source)
 	if (playlist_formats == NULL || g_strv_length (playlist_formats) == 0 || strv_contains (playlist_formats, "audio/x-scpls")) {
 		result = TOTEM_PL_PARSER_PLS;
 	} else if (strv_contains (playlist_formats, "audio/x-mpegurl")) {
-		result = TOTEM_PL_PARSER_M3U;
+		result = TOTEM_PL_PARSER_M3U_DOS;
 	} else if (strv_contains (playlist_formats, "audio/x-iriver-pla")) {
 		result = TOTEM_PL_PARSER_IRIVER_PLA;
 	} else {



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]