mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-12-23 12:43:46 +02:00
Use different dynamic payload types for audio and video.
Originally committed as revision 20940 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
parent
bac24dd2a5
commit
6399c17d54
@ -85,7 +85,7 @@ static int rtp_write_header(AVFormatContext *s1)
|
||||
|
||||
payload_type = ff_rtp_get_payload_type(st->codec);
|
||||
if (payload_type < 0)
|
||||
payload_type = RTP_PT_PRIVATE; /* private payload type */
|
||||
payload_type = RTP_PT_PRIVATE + (st->codec->codec_type == CODEC_TYPE_AUDIO);
|
||||
s->payload_type = payload_type;
|
||||
|
||||
// following 2 FIXMEs could be set based on the current time, there is normally no info leak, as RTP will likely be transmitted immediately
|
||||
|
@ -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 = RTP_PT_PRIVATE; /* FIXME: how to assign a private pt? rtp.c is broken too */
|
||||
payload_type = RTP_PT_PRIVATE + (c->codec_type == CODEC_TYPE_AUDIO);
|
||||
}
|
||||
|
||||
switch (c->codec_type) {
|
||||
|
Loading…
Reference in New Issue
Block a user