From: Alexander Traud Date: Fri, 11 May 2018 17:49:12 +0000 (+0200) Subject: rtp_engine: Remove the double assigned RTP payload ID of H.263+. X-Git-Tag: 15.5.0-rc1~69^2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=4f60585de1164fb4274580fd54d77bcd998ee387;p=thirdparty%2Fasterisk.git rtp_engine: Remove the double assigned RTP payload ID of H.263+. Mantis-3709 (Commit 68ff3c3, Asterisk 1.2) added support for the video format H.263+. For this, the RTP payload ID 103 got assigned statically. Commit f1aadc8 assigned another payload ID 98 for this format in Asterisk 1.6. Change-Id: I90e35b158487f8f1f8187da6241b54cd3b74e667 --- diff --git a/main/rtp_engine.c b/main/rtp_engine.c index 5242e811df..5726579a3c 100644 --- a/main/rtp_engine.c +++ b/main/rtp_engine.c @@ -3360,7 +3360,7 @@ int ast_rtp_engine_init(void) */ add_static_payload(96, ast_format_slin192, 0); add_static_payload(97, ast_format_ilbc, 0); - add_static_payload(98, ast_format_h263p, 0); + add_static_payload(99, ast_format_h264, 0); add_static_payload(100, ast_format_vp8, 0); add_static_payload(101, NULL, AST_RTP_DTMF);