]> git.webhop.me Git - lcd4linux.git/commitdiff
minor updates
authormichux <michux@3ae390bd-cb1e-0410-b409-cd5a39f66f1f>
Mon, 28 Jan 2008 17:25:22 +0000 (17:25 +0000)
committermichux <michux@3ae390bd-cb1e-0410-b409-cd5a39f66f1f>
Mon, 28 Jan 2008 17:25:22 +0000 (17:25 +0000)
git-svn-id: https://ssl.bulix.org/svn/lcd4linux/trunk@850 3ae390bd-cb1e-0410-b409-cd5a39f66f1f

plugin_mpd.c

index 0daa1d146d69520a3110698590f4a2ed4673bf7e..5b5b0534da8a27d3086cfc669cf1299a8bd20de3 100644 (file)
 
 TODO: 
  -what happens if the db is updating? int mpd_status_db_is_updating() 0/1
- -port configuration to lcd4linux.cfg (like mysql)
+
+BUGS:
+ -getMpdUptime() does not update its counter
+ -getMpdPlaytime() does not update its counter
 
 */
 
@@ -240,10 +243,13 @@ static int mpd_update()
     l_mpdPlaylistLength = mpd_playlist_get_playlist_length(mi);
     l_currentSongPos   = mpd_player_get_current_song_pos(mi);
 
-    /* dummy checks */
+    /* sanity checks */
     if (l_volume < 0 || l_volume > 100)
        l_volume = 0;
 
+    if (l_bitRate < 0)
+       l_bitRate = 0;
+       
     song = mpd_playlist_get_current_song(mi);
     if (song) {