]> git.sesse.net Git - vlc/blobdiff - src/stream_output/stream_output.h
Preferences: don't show empty boxes ('zoom' box bug)
[vlc] / src / stream_output / stream_output.h
index 723f628fb04546f4210e3e9abe5a3a25a9a97471..7745a9ebf18c6cfa9919bbc63f0e945fa7336bfc 100644 (file)
@@ -64,7 +64,7 @@ struct sap_handler_t
     sap_session_t **pp_sessions;
     sap_address_t **pp_addresses;
 
-    vlc_bool_t b_control;
+    bool b_control;
 
     int i_sessions;
     int i_addresses;
@@ -85,7 +85,7 @@ struct session_descriptor_t
     socklen_t addrlen;
 
     char *psz_sdp;
-    vlc_bool_t b_ssm;
+    bool b_ssm;
 };
 
 /* The main announce handler object */
@@ -98,7 +98,7 @@ struct announce_handler_t
 
 int announce_HandlerDestroy( announce_handler_t * );
 
+/* Release it with vlc_object_release() */
 sap_handler_t *announce_SAPHandlerCreate( announce_handler_t *p_announce );
-void announce_SAPHandlerDestroy( sap_handler_t *p_sap );
 
 #endif