vlc | branch: master | Hugo Beauzée-Luyssen <[email protected]> | Mon Aug 21 16:24:57 2017 +0200| [5b95aa9445d8bd0ed1b8c3a310169b5a30a39649] | committer: Hugo Beauzée-Luyssen
remap: Fix missing NULL terminator > http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=5b95aa9445d8bd0ed1b8c3a310169b5a30a39649 --- modules/audio_filter/channel_mixer/remap.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/audio_filter/channel_mixer/remap.c b/modules/audio_filter/channel_mixer/remap.c index 064be9b64f..b4136bb505 100644 --- a/modules/audio_filter/channel_mixer/remap.c +++ b/modules/audio_filter/channel_mixer/remap.c @@ -281,7 +281,7 @@ static int OpenFilter( vlc_object_t *p_this ) static const char *const options[] = { "channel-left", "channel-center", "channel-right", "channel-rearleft", "channel-rearcenter", "channel-rearright", "channel-middleleft", - "channel-middleright", "channel-lfe", "normalize", + "channel-middleright", "channel-lfe", "normalize", NULL }; config_ChainParse(p_filter, REMAP_CFG, options, p_filter->p_cfg); _______________________________________________ vlc-commits mailing list [email protected] https://mailman.videolan.org/listinfo/vlc-commits
