summaryrefslogtreecommitdiff
path: root/libavformat/sdp.c
diff options
context:
space:
mode:
authorMark Harris <mark.hsj@gmail.com>2016-02-29 20:08:14 -0800
committerMichael Niedermayer <michael@niedermayer.cc>2016-03-01 20:52:33 +0100
commitc3bb6166dd05801e86a959085cdffbc3fb1ac46d (patch)
tree1a448794e06234f135acb86a628405c2bc3017b0 /libavformat/sdp.c
parent4845f0720e38c5baab7baad52bfce1451f1c1639 (diff)
downloadffmpeg-c3bb6166dd05801e86a959085cdffbc3fb1ac46d.tar.gz
sdp: fix opus sprop-stereo fmtp syntax
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
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 2ab37a8f5e..368402b072 100644
--- a/libavformat/sdp.c
+++ b/libavformat/sdp.c
@@ -706,7 +706,7 @@ static char *sdp_write_media_attributes(char *buff, int size, AVCodecContext *c,
av_strlcatf(buff, size, "a=rtpmap:%d opus/48000/2\r\n",
payload_type);
if (c->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;