adding vout module to tree
Samuel Hocevar
sam at zoy.org
Wed Sep 4 17:52:38 CEST 2002
On Wed, Sep 04, 2002, Bram Stolk wrote:
> ? modules/video_output/shm.c
> which is modelled after dummy vout.c
You need to add a module descriptor to this file, see for instance
modules/video_output/aa.c. It's not present in dummy/vout.c because of
the dummy/dummy.c common file. This is enough:
vlc_module_begin();
set_description( _("SHM video output module") );
set_capability( "video output", 10 );
set_callbacks( Create, Destroy );
vlc_module_end();
Also, launch vlc with -v to see why it wasn't loaded. You'll probably
get a "undefined symbol: _vlc_entry__0_5_0_cvs" error.
--
Sam.
--
This is the vlc-devel mailing-list, see http://www.videolan.org/vlc/
To unsubscribe, please read http://www.videolan.org/lists.html
If you are in trouble, please contact <postmaster at videolan.org>
More information about the vlc-devel
mailing list