mirror of
https://github.com/xenia-project/FFmpeg.git
synced 2025-02-10 22:33:14 +00:00
Do not return payload type 34 for H.263 (it is deprecated)
Originally committed as revision 18346 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
parent
809e07c618
commit
215037887d
@ -100,6 +100,8 @@ int ff_rtp_get_payload_type(AVCodecContext *codec)
|
||||
/* compute the payload type */
|
||||
for (payload_type = -1, i = 0; AVRtpPayloadTypes[i].pt >= 0; ++i)
|
||||
if (AVRtpPayloadTypes[i].codec_id == codec->codec_id) {
|
||||
if (codec->codec_id == CODEC_ID_H263)
|
||||
continue;
|
||||
if (codec->codec_id == CODEC_ID_PCM_S16BE)
|
||||
if (codec->channels != AVRtpPayloadTypes[i].audio_channels)
|
||||
continue;
|
||||
|
Loading…
x
Reference in New Issue
Block a user