Commit 903aa1fa authored by Gildas Bazin's avatar Gildas Bazin

* modules/gui/wxwindows/interface.cpp: fixed typo.
* modules/audio_filter/converter/u8tofloat32.c: fixed typo.
parent 7a32e8dc
...@@ -2,7 +2,7 @@ ...@@ -2,7 +2,7 @@
* u8tofloat32.c : converter from unsigned 8 bits integer to float32. * u8tofloat32.c : converter from unsigned 8 bits integer to float32.
***************************************************************************** *****************************************************************************
* Copyright (C) 2002 VideoLAN * Copyright (C) 2002 VideoLAN
* $Id: u8tofloat32.c,v 1.1 2002/11/08 14:23:49 gbazin Exp $ * $Id: u8tofloat32.c,v 1.2 2002/11/18 15:19:26 gbazin Exp $
* *
* Authors: Gildas Bazin <gbazin@netcourrier.com> * Authors: Gildas Bazin <gbazin@netcourrier.com>
* *
...@@ -44,7 +44,7 @@ static void DoWork ( aout_instance_t *, aout_filter_t *, aout_buffer_t *, ...@@ -44,7 +44,7 @@ static void DoWork ( aout_instance_t *, aout_filter_t *, aout_buffer_t *,
* Module descriptor * Module descriptor
*****************************************************************************/ *****************************************************************************/
vlc_module_begin(); vlc_module_begin();
set_description( _("audio filter for s8->float32 conversion") ); set_description( _("audio filter for u8->float32 conversion") );
set_capability( "audio filter", 1 ); set_capability( "audio filter", 1 );
set_callbacks( Create, NULL ); set_callbacks( Create, NULL );
vlc_module_end(); vlc_module_end();
......
...@@ -2,7 +2,7 @@ ...@@ -2,7 +2,7 @@
* interface.cpp : wxWindows plugin for vlc * interface.cpp : wxWindows plugin for vlc
***************************************************************************** *****************************************************************************
* Copyright (C) 2000-2001 VideoLAN * Copyright (C) 2000-2001 VideoLAN
* $Id: interface.cpp,v 1.1 2002/11/18 13:02:16 gbazin Exp $ * $Id: interface.cpp,v 1.2 2002/11/18 15:19:26 gbazin Exp $
* *
* Authors: Gildas Bazin <gbazin@netcourrier.com> * Authors: Gildas Bazin <gbazin@netcourrier.com>
* *
...@@ -84,12 +84,12 @@ enum ...@@ -84,12 +84,12 @@ enum
PlayStream_Event, PlayStream_Event,
PauseStream_Event, PauseStream_Event,
PrevStream_Event, PrevStream_Event,
NextStream_Event NextStream_Event,
/* it is important for the id corresponding to the "About" command to have /* it is important for the id corresponding to the "About" command to have
* this standard value as otherwise it won't be handled properly under Mac * this standard value as otherwise it won't be handled properly under Mac
* (where it is special and put into the "Apple" menu) */ * (where it is special and put into the "Apple" menu) */
About_Event = wxID_ABOUT, About_Event = wxID_ABOUT
}; };
BEGIN_EVENT_TABLE(Interface, wxFrame) BEGIN_EVENT_TABLE(Interface, wxFrame)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment