From: Brian West Date: Tue, 5 Feb 2008 19:04:31 +0000 (+0000) Subject: add h263 plus video passthru X-Git-Tag: v1.0-rc1~397 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=c5d8b78f6d65065aa5df33b2abeb52597bbfaeb2;p=thirdparty%2Ffreeswitch.git add h263 plus video passthru git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@7530 d0543943-73ff-0310-b7d9-9358b9ac24b2 --- diff --git a/src/mod/codecs/mod_h26x/mod_h26x.c b/src/mod/codecs/mod_h26x/mod_h26x.c index 134d184db6..47b815ee07 100644 --- a/src/mod/codecs/mod_h26x/mod_h26x.c +++ b/src/mod/codecs/mod_h26x/mod_h26x.c @@ -89,6 +89,11 @@ SWITCH_MODULE_LOAD_FUNCTION(mod_h26x_load) SWITCH_CODEC_TYPE_VIDEO, 34, "H263", NULL, 90000, 90000, 0, 0, 0, 0, 0, 1, 1, 1, switch_h26x_init, switch_h26x_encode, switch_h26x_decode, switch_h26x_destroy); + SWITCH_ADD_CODEC(codec_interface, "H.263+ Video (passthru)"); + switch_core_codec_add_implementation(pool, codec_interface, + SWITCH_CODEC_TYPE_VIDEO, 115, "H263-1998", NULL, 90000, 90000, 0, + 0, 0, 0, 0, 1, 1, 1, + switch_h26x_init, switch_h26x_encode, switch_h26x_decode, switch_h26x_destroy); SWITCH_ADD_CODEC(codec_interface, "H.261 Video (passthru)"); switch_core_codec_add_implementation(pool, codec_interface, SWITCH_CODEC_TYPE_VIDEO, 31, "H261", NULL, 90000, 90000, 0,