]> git.ipfire.org Git - thirdparty/freeswitch.git/commitdiff
fix
authorBrian West <brian@freeswitch.org>
Fri, 1 Feb 2008 19:48:24 +0000 (19:48 +0000)
committerBrian West <brian@freeswitch.org>
Fri, 1 Feb 2008 19:48:24 +0000 (19:48 +0000)
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@7470 d0543943-73ff-0310-b7d9-9358b9ac24b2

src/mod/codecs/mod_h26x/mod_h26x.c

index 84752ac2bcfc1bf5d8490989b82786285de875c5..4e7a0344ec197c6680a4e0a01bd027d7919ade8e 100644 (file)
@@ -79,15 +79,17 @@ SWITCH_MODULE_LOAD_FUNCTION(mod_h26x_load)
        switch_codec_interface_t *codec_interface;
        /* connect my internal structure to the blank pointer passed to me */
        *module_interface = switch_loadable_module_create_module_interface(pool, modname);
-       SWITCH_ADD_CODEC(codec_interface, "H.26x Video (passthru)");
+       SWITCH_ADD_CODEC(codec_interface, "H.264 Video (passthru)");
     switch_core_codec_add_implementation(pool, codec_interface,
                                          SWITCH_CODEC_TYPE_VIDEO, 99, "H264", 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, 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.261 Video (passthru)");
     switch_core_codec_add_implementation(pool, codec_interface,
                                          SWITCH_CODEC_TYPE_VIDEO, 31, "H261", NULL, 90000, 90000, 0,
                                          0, 0, 0, 0, 1, 1, 1,