From 4d13bcceb9a1820f8e9b2c89e00816d3db41b716 Mon Sep 17 00:00:00 2001 From: Mark Harris Date: Mon, 29 Feb 2016 20:09:53 -0800 Subject: sdp: fix opus sprop-stereo fmtp syntax MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Martin Storsjö --- libavformat/sdp.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'libavformat') diff --git a/libavformat/sdp.c b/libavformat/sdp.c index d21ffacabc..b513ccadc7 100644 --- a/libavformat/sdp.c +++ b/libavformat/sdp.c @@ -692,7 +692,7 @@ static char *sdp_write_media_attributes(char *buff, int size, AVCodecParameters av_strlcatf(buff, size, "a=rtpmap:%d opus/48000/2\r\n", payload_type); if (p->channels == 2) { - av_strlcatf(buff, size, "a=fmtp:%d sprop-stereo:1\r\n", + av_strlcatf(buff, size, "a=fmtp:%d sprop-stereo=1\r\n", payload_type); } break; -- cgit v1.2.3