From f9df243b036053ede057201fe0181f907dca9a57 Mon Sep 17 00:00:00 2001 From: Jacek Antonelli Date: Sat, 2 May 2009 02:23:40 -0500 Subject: Added libgstqtwrapper.so to Mac manifest. --- ChangeLog.txt | 6 ++++++ linden/indra/newview/viewer_manifest.py | 1 + 2 files changed, 7 insertions(+) diff --git a/ChangeLog.txt b/ChangeLog.txt index 6d33304..cc5a261 100644 --- a/ChangeLog.txt +++ b/ChangeLog.txt @@ -1,3 +1,9 @@ +2009-05-02 Jacek Antonelli <jacek.antonelli@gmail.com> + + * linden/indra/newview/viewer_manifest.py: + Added libgstqtwrapper.so to Mac manifest. + + 2009-04-20 Jacek Antonelli <jacek.antonelli@gmail.com> * linden/indra/llaudio/audioengine_openal.cpp: diff --git a/linden/indra/newview/viewer_manifest.py b/linden/indra/newview/viewer_manifest.py index 9aeb31e..091fc57 100755 --- a/linden/indra/newview/viewer_manifest.py +++ b/linden/indra/newview/viewer_manifest.py @@ -525,6 +525,7 @@ class DarwinManifest(ViewerManifest): self.path("libgstpng.so") self.path("libgstpostproc.so") self.path("libgstqtdemux.so") + self.path("libgstqtwrapper.so") self.path("libgstqueue2.so") self.path("libgstreal.so") self.path("libgstrtp.so") -- cgit v1.1 From b8ccba3827d4b75a5ac60993571affdd4caa986e Mon Sep 17 00:00:00 2001 From: Jacek Antonelli Date: Mon, 18 May 2009 15:35:27 -0500 Subject: Changed the list of installed Mac gstreamer plugins. Commented out libgstqtwrapper.so, since it causes issues with MP3s (and perhaps other types). Added: libgstfilter.so libgstmultifile.so libgststereo.so libgstvideobalance.so libgstvideobox.so libgstvideocrop.so libgstvideoflip.so libgstvideomixer.so libgstvideorate.so libgstvideosignal.so --- ChangeLog.txt | 21 +++++++++++++++++++++ linden/indra/newview/viewer_manifest.py | 12 +++++++++++- 2 files changed, 32 insertions(+), 1 deletion(-) diff --git a/ChangeLog.txt b/ChangeLog.txt index cc5a261..a2c9027 100644 --- a/ChangeLog.txt +++ b/ChangeLog.txt @@ -1,3 +1,24 @@ +2009-05-18 Jacek Antonelli <jacek.antonelli@gmail.com> + + * linden/indra/newview/viewer_manifest.py: + Changed the list of installed Mac gstreamer plugins. + + Commented out libgstqtwrapper.so, since it causes issues with + MP3s (and perhaps other types). + + Added: + libgstfilter.so + libgstmultifile.so + libgststereo.so + libgstvideobalance.so + libgstvideobox.so + libgstvideocrop.so + libgstvideoflip.so + libgstvideomixer.so + libgstvideorate.so + libgstvideosignal.so + + 2009-05-02 Jacek Antonelli <jacek.antonelli@gmail.com> * linden/indra/newview/viewer_manifest.py: diff --git a/linden/indra/newview/viewer_manifest.py b/linden/indra/newview/viewer_manifest.py index 091fc57..6c8de60 100755 --- a/linden/indra/newview/viewer_manifest.py +++ b/linden/indra/newview/viewer_manifest.py @@ -503,6 +503,7 @@ class DarwinManifest(ViewerManifest): self.path("libgstffmpeg.so") self.path("libgstffmpegcolorspace.so") self.path("libgstffmpegscale.so") + self.path("libgstfilter.so") self.path("libgstflac.so") self.path("libgstflv.so") self.path("libgstgdp.so") @@ -516,6 +517,7 @@ class DarwinManifest(ViewerManifest): self.path("libgstmpeg4videoparse.so") self.path("libgstmpegdemux.so") self.path("libgstmpegvideoparse.so") + self.path("libgstmultifile.so") self.path("libgstmultipart.so") self.path("libgstneonhttpsrc.so") self.path("libgstogg.so") @@ -525,7 +527,7 @@ class DarwinManifest(ViewerManifest): self.path("libgstpng.so") self.path("libgstpostproc.so") self.path("libgstqtdemux.so") - self.path("libgstqtwrapper.so") + #self.path("libgstqtwrapper.so") self.path("libgstqueue2.so") self.path("libgstreal.so") self.path("libgstrtp.so") @@ -533,11 +535,19 @@ class DarwinManifest(ViewerManifest): self.path("libgstrtsp.so") self.path("libgstsdpelem.so") self.path("libgstselector.so") + self.path("libgststereo.so") self.path("libgsttcp.so") self.path("libgsttheora.so") self.path("libgsttypefindfunctions.so") self.path("libgstudp.so") + self.path("libgstvideobalance.so") + self.path("libgstvideobox.so") + self.path("libgstvideocrop.so") + self.path("libgstvideoflip.so") + self.path("libgstvideomixer.so") + self.path("libgstvideorate.so") self.path("libgstvideoscale.so") + self.path("libgstvideosignal.so") self.path("libgstvolume.so") self.path("libgstvorbis.so") self.path("libgstwavparse.so") -- cgit v1.1