diff options
-rw-r--r-- | src/xine-engine/audio_out.h | 9 | ||||
-rw-r--r-- | src/xine-engine/video_out.h | 9 |
2 files changed, 10 insertions, 8 deletions
diff --git a/src/xine-engine/audio_out.h b/src/xine-engine/audio_out.h index c5f335dbb..f4e01ad25 100644 --- a/src/xine-engine/audio_out.h +++ b/src/xine-engine/audio_out.h @@ -257,11 +257,12 @@ struct audio_driver_class_s { void (*dispose) (audio_driver_class_t *); }; -/* - * this initiates the audio_out sync routines - * found in ./src/xine-engine/audio_out.c +/** + * @brief Initialise the audio_out sync routines + * + * @internal */ -xine_audio_port_t *_x_ao_new_port (xine_t *xine, ao_driver_t *driver, int grab_only) XINE_PROTECTED; +xine_audio_port_t *_x_ao_new_port (xine_t *xine, ao_driver_t *driver, int grab_only); /* * audio output modes + capabilities diff --git a/src/xine-engine/video_out.h b/src/xine-engine/video_out.h index f0f98354b..b6b221478 100644 --- a/src/xine-engine/video_out.h +++ b/src/xine-engine/video_out.h @@ -442,11 +442,12 @@ struct video_overlay_manager_s { vo_driver_t *output, vo_frame_t *vo_img, int enabled); }; -/* - * build a video_out_port from - * a given video driver +/** + * @brief Build a video output port from a given video driver. + * + * @internal */ -xine_video_port_t *_x_vo_new_port (xine_t *xine, vo_driver_t *driver, int grabonly) XINE_PROTECTED; +xine_video_port_t *_x_vo_new_port (xine_t *xine, vo_driver_t *driver, int grabonly); #ifdef __cplusplus } |