Browse Source

sdp: fix opus sprop-stereo fmtp syntax

Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
tags/n3.1
Mark Harris Michael Niedermayer 10 years ago
parent
commit
c3bb6166dd
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      libavformat/sdp.c

+ 1
- 1
libavformat/sdp.c View File

@@ -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;


Loading…
Cancel
Save