summaryrefslogtreecommitdiff
path: root/libavformat/sdp.c
diff options
context:
space:
mode:
authorMark Harris <mark.hsj@gmail.com>2016-02-29 20:09:53 -0800
committerMartin Storsjö <martin@martin.st>2016-03-01 08:56:36 +0200
commit4d13bcceb9a1820f8e9b2c89e00816d3db41b716 (patch)
treecd140216ea2cfa4c2eadb2d397cdb15aef2f15d0 /libavformat/sdp.c
parentf6ccee9bed92c09799777c1dfb2b2772763e0e83 (diff)
sdp: fix opus sprop-stereo fmtp syntax
Signed-off-by: Martin Storsjö <martin@martin.st>
Diffstat (limited to 'libavformat/sdp.c')
-rw-r--r--libavformat/sdp.c2
1 files changed, 1 insertions, 1 deletions
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;