summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Roitzsch <mroi@users.sourceforge.net>2003-02-07 17:28:10 +0000
committerMichael Roitzsch <mroi@users.sourceforge.net>2003-02-07 17:28:10 +0000
commit516a8718ba7a292fcd5e566467e597215473568a (patch)
tree28b7feed8ced63488633cc9fb92b11f1b5e7d265
parentd0513bbbf470ca6ad9b9c879db8efd3300b596cf (diff)
downloadxine-lib-516a8718ba7a292fcd5e566467e597215473568a.tar.gz
xine-lib-516a8718ba7a292fcd5e566467e597215473568a.tar.bz2
add consistency warnings
CVS patchset: 4114 CVS date: 2003/02/07 17:28:10
-rw-r--r--src/xine-engine/audio_out.h6
-rw-r--r--src/xine-engine/video_out.h14
2 files changed, 17 insertions, 3 deletions
diff --git a/src/xine-engine/audio_out.h b/src/xine-engine/audio_out.h
index 3d4d836ac..3c9379ca0 100644
--- a/src/xine-engine/audio_out.h
+++ b/src/xine-engine/audio_out.h
@@ -17,7 +17,7 @@
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
*
- * $Id: audio_out.h,v 1.51 2003/02/06 00:09:20 miguelfreitas Exp $
+ * $Id: audio_out.h,v 1.52 2003/02/07 17:28:10 mroi Exp $
*/
#ifndef HAVE_AUDIO_OUT_H
#define HAVE_AUDIO_OUT_H
@@ -171,6 +171,10 @@ struct ao_format_s {
/*
* xine_audio_port_s contains the port every audio decoder talks to
+ *
+ * Remember that adding new functions to this structure requires
+ * adaption of the post plugin decoration layer. Be sure to look into
+ * src/xine-engine/post.[ch].
*/
struct xine_audio_port_s {
diff --git a/src/xine-engine/video_out.h b/src/xine-engine/video_out.h
index a0d68c82f..64bc438ad 100644
--- a/src/xine-engine/video_out.h
+++ b/src/xine-engine/video_out.h
@@ -17,7 +17,7 @@
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
*
- * $Id: video_out.h,v 1.82 2003/02/06 00:09:20 miguelfreitas Exp $
+ * $Id: video_out.h,v 1.83 2003/02/07 17:28:12 mroi Exp $
*
*
* xine version of video_out.h
@@ -60,7 +60,12 @@ typedef struct vo_driver_s vo_driver_t;
typedef struct extra_info_s extra_info_t;
#endif
-/* public part, video drivers may add private fields */
+/* public part, video drivers may add private fields
+ *
+ * Remember that adding new functions to this structure requires
+ * adaption of the post plugin decoration layer. Be sure to look into
+ * src/xine-engine/post.[ch].
+ */
struct vo_frame_s {
/*
* member functions
@@ -136,6 +141,11 @@ struct vo_frame_s {
};
+/*
+ * Remember that adding new functions to this structure requires
+ * adaption of the post plugin decoration layer. Be sure to look into
+ * src/xine-engine/post.[ch].
+ */
struct xine_video_port_s {
uint32_t (*get_capabilities) (xine_video_port_t *this); /* for constants see below */