summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorDiego 'Flameeyes' Pettenò <flameeyes@gmail.com>2007-04-19 11:08:01 +0200
committerDiego 'Flameeyes' Pettenò <flameeyes@gmail.com>2007-04-19 11:08:01 +0200
commit3df56a114f8f6549d7c518b9737451b3f0a6ff5e (patch)
tree1893cf4a5ffc707c304a985da11368f08c056f6f /src
parent6f8367c98923db16ffb3a4066ab207d61fe57dd4 (diff)
downloadxine-lib-3df56a114f8f6549d7c518b9737451b3f0a6ff5e.tar.gz
xine-lib-3df56a114f8f6549d7c518b9737451b3f0a6ff5e.tar.bz2
Mark _x_[av]o_new_port functions as internal function, both in doxygen and by not exporting them.
Diffstat (limited to 'src')
-rw-r--r--src/xine-engine/audio_out.h9
-rw-r--r--src/xine-engine/video_out.h9
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
}