Module: libav Branch: master Commit: 4d13bcceb9a1820f8e9b2c89e00816d3db41b716
Author: Mark Harris <[email protected]> Committer: Martin Storsjö <[email protected]> Date: Mon Feb 29 20:09:53 2016 -0800 sdp: fix opus sprop-stereo fmtp syntax Signed-off-by: Martin Storsjö <[email protected]> --- libavformat/sdp.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libavformat/sdp.c b/libavformat/sdp.c index d21ffac..b513cca 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; _______________________________________________ libav-commits mailing list [email protected] https://lists.libav.org/mailman/listinfo/libav-commits
