[FFmpeg-cvslog] sdp: fix opus sprop-stereo fmtp syntax

Mark Harris git at videolan.org
Tue Mar 1 20:56:44 CET 2016


ffmpeg | branch: master | Mark Harris <mark.hsj at gmail.com> | Mon Feb 29 20:08:14 2016 -0800| [c3bb6166dd05801e86a959085cdffbc3fb1ac46d] | committer: Michael Niedermayer

sdp: fix opus sprop-stereo fmtp syntax

Signed-off-by: Michael Niedermayer <michael at niedermayer.cc>

> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=c3bb6166dd05801e86a959085cdffbc3fb1ac46d
---

 libavformat/sdp.c |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/libavformat/sdp.c b/libavformat/sdp.c
index 2ab37a8..368402b 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;



More information about the ffmpeg-cvslog mailing list