From: Emmanuel Schmidbauer Date: Thu, 29 Oct 2015 12:31:01 +0000 (-0400) Subject: FS-8392: change rtpmap payload to a number in dynamic range to allow both H263 and... X-Git-Tag: v1.6.5~5^2~68^2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=e6ae2e9becd51fe1ea4141d381ba2006bac823f3;p=thirdparty%2Ffreeswitch.git FS-8392: change rtpmap payload to a number in dynamic range to allow both H263 and H263+ to be offered --- diff --git a/src/mod/applications/mod_av/avcodec.c b/src/mod/applications/mod_av/avcodec.c index 3589eb3389..4d4cb24f88 100644 --- a/src/mod/applications/mod_av/avcodec.c +++ b/src/mod/applications/mod_av/avcodec.c @@ -25,6 +25,7 @@ * * Seven Du * Anthony Minessale + * Emmanuel Schmidbauer * * mod_avcodec -- Codec with libav.org * @@ -1493,7 +1494,7 @@ SWITCH_MODULE_LOAD_FUNCTION(mod_avcodec_load) switch_h264_init, switch_h264_encode, switch_h264_decode, switch_h264_control, switch_h264_destroy); SWITCH_ADD_CODEC(codec_interface, "H263+ Video"); - switch_core_codec_add_video_implementation(pool, codec_interface, 34, "H263-1998", NULL, + switch_core_codec_add_video_implementation(pool, codec_interface, 115, "H263-1998", NULL, switch_h264_init, switch_h264_encode, switch_h264_decode, switch_h264_control, switch_h264_destroy); SWITCH_ADD_API(api_interface, "av_codec", "av_codec information", av_codec_api_function, "");