From 9aafe503d08e2766f5343cca1c13e96a47c6bd4c Mon Sep 17 00:00:00 2001 From: Florian Smeets Date: Tue, 20 Nov 2012 23:01:15 +0000 Subject: - Update firefox and thunderbird to 17.0 - Update seamonkey to 2.14 - Update ESR ports and libxul to 10.0.11 - support more h264 codecs when using GSTREAMER with YouTube - Unbreak firefox-esr, thunderbird-esr and libxul on head >= 1000024 [1] - Buildsystem is not python 3 aware, use python up to 2.7 [2] PR: ports/173679 [1] Submitted by: swills [1], demon [2] In collaboration with: Jan Beich Security: d23119df-335d-11e2-b64c-c8600054b392 Approved by: portmgr (beat) Feature safe: yes --- www/firefox/files/patch-bug777696 | 32 -------------------------------- 1 file changed, 32 deletions(-) delete mode 100644 www/firefox/files/patch-bug777696 (limited to 'www/firefox/files/patch-bug777696') diff --git a/www/firefox/files/patch-bug777696 b/www/firefox/files/patch-bug777696 deleted file mode 100644 index 364608926d5a..000000000000 --- a/www/firefox/files/patch-bug777696 +++ /dev/null @@ -1,32 +0,0 @@ -commit 0c0d1a8 -Author: Landry Breuil -Date: Mon Jul 30 17:57:15 2012 +0200 - - Bug 777696: Fix gstreamer backend on big endian architectures. r=doublec ---- - content/media/gstreamer/nsGStreamerReader.cpp | 8 ++++++++ - 1 file changed, 8 insertions(+) - -diff --git content/media/gstreamer/nsGStreamerReader.cpp content/media/gstreamer/nsGStreamerReader.cpp -index 0fb801a..4a69196 100644 ---- content/media/gstreamer/nsGStreamerReader.cpp -+++ content/media/gstreamer/nsGStreamerReader.cpp -@@ -132,10 +132,18 @@ nsresult nsGStreamerReader::Init(nsBuiltinDecoderReader* aCloneDonor) - mAudioSink = gst_parse_bin_from_description("capsfilter name=filter ! " - #ifdef MOZ_TREMOR - "appsink name=audiosink sync=true caps=audio/x-raw-float," -+#ifdef IS_LITTLE_ENDIAN - "channels={1,2},rate=44100,width=32,endianness=1234", TRUE, NULL); - #else -+ "channels={1,2},rate=44100,width=32,endianness=4321", TRUE, NULL); -+#endif -+#else - "appsink name=audiosink sync=true caps=audio/x-raw-int," -+#ifdef IS_LITTLE_ENDIAN - "channels={1,2},rate=48000,width=16,endianness=1234", TRUE, NULL); -+#else -+ "channels={1,2},rate=48000,width=16,endianness=4321", TRUE, NULL); -+#endif - #endif - mAudioAppSink = GST_APP_SINK(gst_bin_get_by_name(GST_BIN(mAudioSink), - "audiosink")); -- cgit v1.2.3