From: Mark Lipscombe Date: Thu, 19 Nov 2015 09:54:06 +0000 (+1100) Subject: FS-8559: mod_shout should have "mpga" in it's list of supported extensions X-Git-Tag: v1.6.5~5^2~6^2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=3293baa33690131dd42f5797930e73b0018b8f88;p=thirdparty%2Ffreeswitch.git FS-8559: mod_shout should have "mpga" in it's list of supported extensions Add mpga to the list of supported formats for mod_shout so that files retrieved using mod_http_cache with a mime type of audio/mpeg are able to be played using mod_shout. --- diff --git a/src/mod/formats/mod_shout/mod_shout.c b/src/mod/formats/mod_shout/mod_shout.c index f4b297d167..7e5cc2fef5 100644 --- a/src/mod/formats/mod_shout/mod_shout.c +++ b/src/mod/formats/mod_shout/mod_shout.c @@ -1707,6 +1707,7 @@ SWITCH_MODULE_LOAD_FUNCTION(mod_shout_load) supported_formats[0] = "shout"; supported_formats[1] = "mp3"; + supported_formats[2] = "mpga"; /* connect my internal structure to the blank pointer passed to me */ *module_interface = switch_loadable_module_create_module_interface(pool, modname);