mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-12-23 12:43:46 +02:00
Use RTP_PT_PRIVATE in sdp.c instead of hardcoding 96.
Originally committed as revision 20922 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
parent
37ce3d6ba7
commit
f877954fd3
@ -211,19 +211,19 @@ static char *sdp_write_media_attributes(char *buff, int size, AVCodecContext *c,
|
||||
payload_type, config);
|
||||
break;
|
||||
case CODEC_ID_PCM_S16BE:
|
||||
if (payload_type >= 96)
|
||||
if (payload_type >= RTP_PT_PRIVATE)
|
||||
av_strlcatf(buff, size, "a=rtpmap:%d L16/%d/%d\r\n",
|
||||
payload_type,
|
||||
c->sample_rate, c->channels);
|
||||
break;
|
||||
case CODEC_ID_PCM_MULAW:
|
||||
if (payload_type >= 96)
|
||||
if (payload_type >= RTP_PT_PRIVATE)
|
||||
av_strlcatf(buff, size, "a=rtpmap:%d PCMU/%d/%d\r\n",
|
||||
payload_type,
|
||||
c->sample_rate, c->channels);
|
||||
break;
|
||||
case CODEC_ID_PCM_ALAW:
|
||||
if (payload_type >= 96)
|
||||
if (payload_type >= RTP_PT_PRIVATE)
|
||||
av_strlcatf(buff, size, "a=rtpmap:%d PCMA/%d/%d\r\n",
|
||||
payload_type,
|
||||
c->sample_rate, c->channels);
|
||||
@ -257,7 +257,7 @@ static void sdp_write_media(char *buff, int size, AVCodecContext *c, const char
|
||||
|
||||
payload_type = ff_rtp_get_payload_type(c);
|
||||
if (payload_type < 0) {
|
||||
payload_type = 96; /* FIXME: how to assign a private pt? rtp.c is broken too */
|
||||
payload_type = RTP_PT_PRIVATE; /* FIXME: how to assign a private pt? rtp.c is broken too */
|
||||
}
|
||||
|
||||
switch (c->codec_type) {
|
||||
|
Loading…
Reference in New Issue
Block a user