[vlc-devel] commit: core: add snapshot-file and record-file for signalling new materials created by vlc (Erwan Tulou )
git version control
git at videolan.org
Sat Aug 29 21:00:00 CEST 2009
vlc | branch: master | Erwan Tulou <erwan10 at videolan.org> | Wed Aug 19 20:58:07 2009 +0200| [e8795696a97295c54c1668013e01fe284db8e1d4] | committer: Erwan Tulou
core: add snapshot-file and record-file for signalling new materials created by vlc
> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=e8795696a97295c54c1668013e01fe284db8e1d4
---
src/libvlc.c | 4 ++++
1 files changed, 4 insertions(+), 0 deletions(-)
diff --git a/src/libvlc.c b/src/libvlc.c
index 9860d54..4b078a8 100644
--- a/src/libvlc.c
+++ b/src/libvlc.c
@@ -814,6 +814,10 @@ int libvlc_InternalInit( libvlc_int_t *p_libvlc, int i_argc,
p_keys );
}
+ /* variables for signalling creation of new files */
+ var_Create( p_libvlc, "snapshot-file", VLC_VAR_STRING );
+ var_Create( p_libvlc, "record-file", VLC_VAR_STRING );
+
/* Initialize playlist and get commandline files */
p_playlist = playlist_Create( VLC_OBJECT(p_libvlc) );
if( !p_playlist )
More information about the vlc-devel
mailing list