From c5d8b78f6d65065aa5df33b2abeb52597bbfaeb2 Mon Sep 17 00:00:00 2001 From: Brian West Date: Tue, 5 Feb 2008 19:04:31 +0000 Subject: [PATCH] add h263 plus video passthru git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@7530 d0543943-73ff-0310-b7d9-9358b9ac24b2 --- src/mod/codecs/mod_h26x/mod_h26x.c | 5 +++++ 1 file changed, 5 insertions(+) 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,