Commit Graph

66 Commits

Author SHA1 Message Date
Clément Stenac f485214f09 For consistency, remove references to vlc from libvlc
Also, make it clearer what is shared and instance-specific

So,
libvlc_t ==> libvlc_global_t
vlc_t ==> libvlc_int_t (internal instance)

p_object->p_libvlc ==> p_object->p_libvlc_globale
p_object->p_vlc ==> p_object->p_libvlc

VLC_OBJECT_VLC ==> VLC_OBJECT_LIBVLC

And by the way, there is some cleanup required :) (ie, some things are created in the global object instead of the instance-specific one)
2006-09-15 14:31:51 +00:00
Clément Stenac 8f973a0b05 Fix playlist crasher and simplify a few things
(Remove ITEMPLAY method, which had become redundant)
2006-05-31 20:40:54 +00:00
Clément Stenac bcb8ad992a String stuff 2006-04-13 09:04:34 +00:00
Felix Paul Kühne 778a77df2d * 2nd review of video* and control/telnet.c 2006-03-31 16:12:31 +00:00
Rémi Denis-Courmont e9fb749afd All: missing #include "charset.h" 2006-02-18 20:34:32 +00:00
Rémi Denis-Courmont 543574fd1d Another bunch of Unicode file names fixes (refs #528) 2006-02-13 09:54:15 +00:00
Rémi Denis-Courmont adc858d87a Uniformize source files encoding 2006-02-01 18:06:48 +00:00
Antoine Cellerier 2cb472dba0 FSF address change. 2006-01-12 23:10:04 +00:00
Gildas Bazin f2a9e65e07 * modules/video_filter/*: use p_vout->fmt_in/out. 2005-10-25 19:24:21 +00:00
Rémi Denis-Courmont fe087a3828 Make Zorglub less unhappy 2005-07-09 06:17:09 +00:00
Rémi Denis-Courmont 85b29bdc28 Copyright fixes
(da big courmischage)
2005-07-08 18:12:44 +00:00
Derk-Jan Hartman 0c8da59955 * Some changes to preferences categorization (This really needs a lot more work) 2005-06-10 15:29:32 +00:00
Gildas Bazin 3f6f97f132 * include/video_output.h, ALL: changed api for vout_Request()/vout_Create() to be more flexible. 2005-03-05 16:49:15 +00:00
Clément Stenac ba9826cacf Preferences consistency fixes by Christophe Mutricy <xtophe at nxtelevision d0t com>
+ put access and demux in the right place
2005-03-03 06:58:04 +00:00
Eric Petit c6376cacaf motiondetect.c: gcc < 3 compile fix 2005-01-15 03:02:57 +00:00
Jérome Decoodt 70a4f2e234 Added simple motion detect filter.
This filter uses a description file which follows this format :
x1,y1,x2,y2,level,downspeed,upspeed,mrl
...
where x1,y1,x2,y2 describe a sensible rectangle, level is the minimum difference for an active pixel, downspeed an upspeed are to integers.
mrl is a mrl to go when the filter has detected movement in the rectangle.

This is fun with vlm. For example, you should try to launch vlc normaly with vlm and then type :
new camera broadcast
setup camera enabled
setup camera input mrl to your camera
setup camera option filter=motiondetect,transform
#setup camera option transform-type=vflip
#indeed, I did not reach to make this working
control camera play

Have fun ;)
2005-01-13 23:28:36 +00:00