summaryrefslogtreecommitdiff
path: root/www/firefox/files/patch-bug777696
diff options
context:
space:
mode:
authorFlorian Smeets <flo@FreeBSD.org>2012-11-20 23:01:15 +0000
committerFlorian Smeets <flo@FreeBSD.org>2012-11-20 23:01:15 +0000
commit9aafe503d08e2766f5343cca1c13e96a47c6bd4c (patch)
treed56a366dfc71562e65a02f0224eed5e9c21419cd /www/firefox/files/patch-bug777696
parent- New port: octave-forge-cgi. (diff)
- 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 <jbeich@tormail.org> Security: d23119df-335d-11e2-b64c-c8600054b392 Approved by: portmgr (beat) Feature safe: yes
Diffstat (limited to 'www/firefox/files/patch-bug777696')
-rw-r--r--www/firefox/files/patch-bug77769632
1 files changed, 0 insertions, 32 deletions
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 <landry@openbsd.org>
-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"));