[vlc-devel] Debug messages
Francesco, Cuzzocrea
francesco at bltitalia.com
Wed May 31 17:11:08 CEST 2017
Hi Francois,
thanks for the fast answer. I didn't figure out why the submodule is
empty: I've attempt to modify sequence in
vlc_module_begin()
set_shortname(N_("BLT Import"))
set_description(N_("BLT Files demuxer"))
set_category(CAT_INPUT)
set_subcategory(SUBCAT_INPUT_DEMUX)
set_capability("access_demux", 100)
set_callbacks(DemuxOpen, DemuxClose)
add_submodule()
set_capability("access", 100)
set_callbacks(AccessOpen, AccessClose)
add_shortcut("blt")
vlc_module_end ()
but nothing changes. I didn't understand how to fill a module. When I
specify capability and callbacks isn't filled ?
I read some source code (that is ogg.c under demux) and the sequence is
the same; adding :shortname, description,
category, subcategory, capability and callbacks.
Regards
Francesco
On 31/05/2017 16.48, Francois Cartegnie wrote:
> Le 31/05/2017 à 16:38, Francesco, Cuzzocrea a écrit :
>> Where are printed debug messages done inside a module? I wrote an acces
>> demux module with
>>
>> vlc_module_begin()
>>
>> set_shortname(N_("BLT Import"))
>> set_description(N_("BLT Files demuxer"))
>> set_capability("access_demux", 100)
>> set_category(CAT_INPUT)
>> set_subcategory(SUBCAT_INPUT_DEMUX)
>> set_callbacks(DemuxOpen, DemuxClose)
>> add_submodule()
>> set_capability("access", 100)
> You're adding an empty submodule
> before setting your own module priority.
>
> Module then is never probed (Open()), hence no logs.
> Will only be loaded 'on demand' demux=
>
> Francois
> _______________________________________________
> vlc-devel mailing list
> To unsubscribe or modify your subscription options:
> https://mailman.videolan.org/listinfo/vlc-devel
--
/*******************************************************************\
* Ing. Francesco Cuzzocrea
* company: BLT Italia srl web: http://www.blt.it
* address: via Rosselli, 91 city: Lido di CAMAIORE
* country: ITALY zip: 55043-i
* Tel. : +39 0584 904788 Fax: +39 0584 904789
* e-mail: francesco at bltitalia.com
\*******************************************************************/
More information about the vlc-devel
mailing list