]> git.sesse.net Git - vlc/blobdiff - include/vlc_vod.h
Use var_InheritString for --decklink-video-connection.
[vlc] / include / vlc_vod.h
index 2c9e9516de59f9d63b79933d6d3db1d1d78afec8..9b136108f2b844a971087a407f249ed3f5c5cf9b 100644 (file)
  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
  *****************************************************************************/
 
-#if !defined( __LIBVLC__ )
-  #error You are not libvlc or one of its plugins. You cannot include this file
-#endif
+#ifndef VLC_VOD_H
+#define VLC_VOD_H 1
+
+/**
+ * \file
+ * This file defines an interface for VOD server modules in vlc
+ */
 
-#ifndef _VLC_VOD_H
-#define _VLC_VOD_H 1
+/**
+ * \defgroup vod Video On Demand (VOD)
+ * \ingroup server
+ * Video On Demand (VOD) functionality is provided from VLM.
+ * @{
+ */
 
 struct vod_t
 {
@@ -71,4 +79,8 @@ enum vod_query_e
     VOD_MEDIA_FORWARD,      /* arg1= double         res=    */
 };
 
+/**
+ * @}
+ */
+
 #endif