diff options
author | Mark Harris <mark.hsj@gmail.com> | 2016-02-29 20:08:14 -0800 |
---|---|---|
committer | Michael Niedermayer <michael@niedermayer.cc> | 2016-03-01 20:52:33 +0100 |
commit | c3bb6166dd05801e86a959085cdffbc3fb1ac46d (patch) | |
tree | 1a448794e06234f135acb86a628405c2bc3017b0 /libavformat | |
parent | 4845f0720e38c5baab7baad52bfce1451f1c1639 (diff) | |
download | ffmpeg-c3bb6166dd05801e86a959085cdffbc3fb1ac46d.tar.gz |
sdp: fix opus sprop-stereo fmtp syntax
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
Diffstat (limited to 'libavformat')
-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 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; |