X-Git-Url: https://git.sesse.net/?a=blobdiff_plain;f=modules%2Faudio_mixer%2Ffloat32.c;h=c3284b63fcb93b56de64303817b526aad04a6004;hb=300a5c1017d98a0cb0435e2ff9889204c7187c1f;hp=84b4fc2eeb63c5007afc0cd6948faf99d0cb6d34;hpb=8928554ebd629ddc1d4cdc6d670bc2e1a918dd83;p=vlc diff --git a/modules/audio_mixer/float32.c b/modules/audio_mixer/float32.c index 84b4fc2eeb..c3284b63fc 100644 --- a/modules/audio_mixer/float32.c +++ b/modules/audio_mixer/float32.c @@ -1,8 +1,8 @@ /***************************************************************************** * float32.c : precise float32 audio mixer implementation ***************************************************************************** - * Copyright (C) 2002 VideoLAN - * $Id: float32.c,v 1.7 2002/11/14 22:38:47 massiot Exp $ + * Copyright (C) 2002 the VideoLAN team + * $Id$ * * Authors: Christophe Massiot * @@ -18,13 +18,12 @@ * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software - * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111, USA. + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA. *****************************************************************************/ /***************************************************************************** * Preamble *****************************************************************************/ -#include #include /* malloc(), free() */ #include @@ -43,7 +42,9 @@ static void DoWork ( aout_instance_t *, aout_buffer_t * ); * Module descriptor *****************************************************************************/ vlc_module_begin(); - set_description( _("float32 audio mixer module") ); + set_category( CAT_AUDIO ); + set_subcategory( SUBCAT_AUDIO_MISC ); + set_description( _("Float32 audio mixer") ); set_capability( "audio mixer", 10 ); set_callbacks( Create, NULL ); vlc_module_end();