Commit 4d13bcce authored by Mark Harris's avatar Mark Harris Committed by Martin Storsjö

sdp: fix opus sprop-stereo fmtp syntax

Signed-off-by: 's avatarMartin Storsjö <martin@martin.st>
parent f6ccee9b
......@@ -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;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment