Skip to content

Commit 9bb8426

Browse files
committed
Merge branch 'release-0.28'
2 parents cafca13 + e396020 commit 9bb8426

File tree

3 files changed

+18
-1
lines changed

3 files changed

+18
-1
lines changed

CHANGELOG.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,14 @@
1+
## 0.28.1
2+
3+
* Filter rtx support from remote SDP for Chrome <= 38
4+
* Fix Go 1.4 detection for minor versions
5+
* Bump minimal Go version
6+
* Fix Go 1.4 release target
7+
* Allow dist_gopath to fail
8+
* Check if system GOPATH exists
9+
* Add make tarball to travis
10+
11+
112
## 0.28.0
213

314
* Update Git hooks, to auto check translations

configure.ac

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,8 @@ AM_CONDITIONAL([DEFAULT_VENDOR_GOPATH], [test x"${VENDOR_GOPATH}" == x""])
9595
AM_CONDITIONAL([READONLY_VENDOR_GOPATH], [test -n "${VENDOR_GOPATH}" -a ! -w "${VENDOR_GOPATH}"])
9696
AM_COND_IF(DEFAULT_VENDOR_GOPATH, [AC_SUBST(VENDOR_GOPATH, $PWD/vendor)])
9797
AC_MSG_RESULT([$VENDOR_GOPATH])
98-
AM_CONDITIONAL([GO_14], [test x"${GO_VERSION}" == x"1.4"])
98+
AX_COMPARE_VERSION([$GO_VERSION], [lt], [1.5], [GO_14="1"], [GO_14="0"])
99+
AM_CONDITIONAL([GO_14], [test x"${GO_14}" = x"1"])
99100

100101
AC_PATH_PROGS([NODEJS],[nodejs node])
101102
if test x"${NODEJS}" == x"" ; then

static/js/mediastream/utils.js

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -447,6 +447,11 @@ define([], function() {
447447
// This change breaks very old versions of WebRTC. So we change it back locally
448448
// for Chrome <= 38 which makes things work fine again.
449449
sdp = sdp.replace(/UDP\/TLS\/RTP\/SAVPF/g, "RTP/SAVPF")
450+
451+
// Remove all rtx support from remote sdp, which is geneated by
452+
// Chrome 48+ but does not work with <= 38.
453+
sdp = sdp.replace(/a=rtpmap:\d+ rtx\/\d+\r\n/i, "");
454+
sdp = sdp.replace(/a=fmtp:\d+ apt=\d+\r\n/i, "");
450455
}
451456
return sdp;
452457
}

0 commit comments

Comments
 (0)