diff options
author | Mark Harris <mark.hsj@gmail.com> | 2016-02-29 20:09:53 -0800 |
---|---|---|
committer | Martin Storsjö <martin@martin.st> | 2016-03-01 08:56:36 +0200 |
commit | 4d13bcceb9a1820f8e9b2c89e00816d3db41b716 (patch) | |
tree | cd140216ea2cfa4c2eadb2d397cdb15aef2f15d0 /libavformat/sdp.c | |
parent | f6ccee9bed92c09799777c1dfb2b2772763e0e83 (diff) | |
download | ffmpeg-4d13bcceb9a1820f8e9b2c89e00816d3db41b716.tar.gz |
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.c | 2 |
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; |