gnash-commit
[Top][All Lists]
Advanced

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

[Gnash-commit] gnash ChangeLog libmedia/gst/SoundGst.cpp


From: Bastiaan Jacques
Subject: [Gnash-commit] gnash ChangeLog libmedia/gst/SoundGst.cpp
Date: Sat, 09 Feb 2008 00:01:47 +0000

CVSROOT:        /sources/gnash
Module name:    gnash
Changes by:     Bastiaan Jacques <bjacques>     08/02/09 00:01:46

Modified files:
        .              : ChangeLog 
        libmedia/gst   : SoundGst.cpp 

Log message:
        Shuffle linking order so that volume will happen after conversion.

CVSWeb URLs:
http://cvs.savannah.gnu.org/viewcvs/gnash/ChangeLog?cvsroot=gnash&r1=1.5600&r2=1.5601
http://cvs.savannah.gnu.org/viewcvs/gnash/libmedia/gst/SoundGst.cpp?cvsroot=gnash&r1=1.3&r2=1.4

Patches:
Index: ChangeLog
===================================================================
RCS file: /sources/gnash/gnash/ChangeLog,v
retrieving revision 1.5600
retrieving revision 1.5601
diff -u -b -r1.5600 -r1.5601
--- ChangeLog   8 Feb 2008 23:48:01 -0000       1.5600
+++ ChangeLog   9 Feb 2008 00:01:46 -0000       1.5601
@@ -1,5 +1,10 @@
 2008-02-08 Bastiaan Jacques <address@hidden>
 
+       * libmedia/gst/SoundGst.cpp: Shuffle linking order so that
+       volume will happen after conversion.
+
+2008-02-08 Bastiaan Jacques <address@hidden>
+
        * libmedia/gst/SoundGst.cpp: Disable the seeking assistant
        mp3parse module for now. Add a small amount of error output.
 

Index: libmedia/gst/SoundGst.cpp
===================================================================
RCS file: /sources/gnash/gnash/libmedia/gst/SoundGst.cpp,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -b -r1.3 -r1.4
--- libmedia/gst/SoundGst.cpp   8 Feb 2008 23:48:01 -0000       1.3
+++ libmedia/gst/SoundGst.cpp   9 Feb 2008 00:01:46 -0000       1.4
@@ -433,11 +433,11 @@
   gboolean success;
   if (decoder) {
   
-    gst_bin_add_many(GST_BIN(_pipeline), _buffersrc, decoder, _volume,
-                     audioconvert, audioresample, audiosink, NULL);
+    gst_bin_add_many(GST_BIN(_pipeline), _buffersrc, decoder,
+                     audioconvert, audioresample, _volume, audiosink, NULL);
 
-    success = gst_element_link_many(_buffersrc, decoder, _volume, audioconvert,
-                                    audioresample, audiosink, NULL);
+    success = gst_element_link_many(_buffersrc, decoder, audioconvert,
+                                    audioresample, _volume, audiosink, NULL);
   } else {    
     gst_bin_add_many(GST_BIN(_pipeline), _buffersrc,
                      audioconvert, audioresample, _volume, audiosink, NULL);




reply via email to

[Prev in Thread] Current Thread [Next in Thread]