[banshee] [StreamTagger] Re-enable video metadata writing



commit 5dc601a942823951cb4bd4c64e1dc72c4de60073
Author: Gabriel Burt <gabriel burt gmail com>
Date:   Sun Aug 29 16:07:51 2010 -0500

    [StreamTagger] Re-enable video metadata writing
    
    I had disabled it a couple years ago due to an infinite loop bug, but
    that has been fixed for over a year.  Fixes bgo#528383

 .../Banshee.Core/Banshee.Streaming/StreamTagger.cs |    7 -------
 1 files changed, 0 insertions(+), 7 deletions(-)
---
diff --git a/src/Core/Banshee.Core/Banshee.Streaming/StreamTagger.cs b/src/Core/Banshee.Core/Banshee.Streaming/StreamTagger.cs
index ada9a3d..25a11d4 100644
--- a/src/Core/Banshee.Core/Banshee.Streaming/StreamTagger.cs
+++ b/src/Core/Banshee.Core/Banshee.Streaming/StreamTagger.cs
@@ -284,13 +284,6 @@ namespace Banshee.Streaming
 
         public static bool SaveToFile (TrackInfo track, bool write_metadata, bool write_rating_and_play_count)
         {
-            // FIXME taglib# does not seem to handle writing metadata to video files well at all atm
-            // so not allowing
-            if ((track.MediaAttributes & TrackMediaAttributes.VideoStream) != 0) {
-                Hyena.Log.DebugFormat ("Avoiding 100% cpu bug with taglib# by not writing metadata to video file {0}", track);
-                return false;
-            }
-
             // Note: this should be kept in sync with the metadata read in StreamTagger.cs
             TagLib.File file = ProcessUri (track.Uri);
             if (file == null) {



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