summaryrefslogtreecommitdiff
path: root/mail/thunderbird/files/patch-bug806139
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 /mail/thunderbird/files/patch-bug806139
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 'mail/thunderbird/files/patch-bug806139')
-rw-r--r--mail/thunderbird/files/patch-bug80613929
1 files changed, 29 insertions, 0 deletions
diff --git a/mail/thunderbird/files/patch-bug806139 b/mail/thunderbird/files/patch-bug806139
new file mode 100644
index 000000000000..d3676869659b
--- /dev/null
+++ b/mail/thunderbird/files/patch-bug806139
@@ -0,0 +1,29 @@
+--- mozilla/content/html/content/public/nsHTMLMediaElement.h~
++++ mozilla/content/html/content/public/nsHTMLMediaElement.h
+@@ -311,7 +311,7 @@ public:
+ static bool IsH264Enabled();
+ static bool IsH264Type(const nsACString& aType);
+ static const char gH264Types[3][16];
+- static char const *const gH264Codecs[7];
++ static char const *const gH264Codecs[9];
+ #endif
+
+ #ifdef MOZ_MEDIA_PLUGINS
+--- mozilla/content/html/content/src/nsHTMLMediaElement.cpp~
++++ mozilla/content/html/content/src/nsHTMLMediaElement.cpp
+@@ -2114,12 +2114,14 @@ const char nsHTMLMediaElement::gH264Type
+ "video/quicktime",
+ };
+
+-char const *const nsHTMLMediaElement::gH264Codecs[7] = {
++char const *const nsHTMLMediaElement::gH264Codecs[9] = {
+ "avc1.42E01E",
+ "avc1.42001E",
+ "avc1.58A01E",
+ "avc1.4D401E",
+ "avc1.64001E",
++ "avc1.64001F",
++ "mp4v.20.3",
+ "mp4a.40.2",
+ nullptr
+ };