summaryrefslogtreecommitdiff
path: root/src/xine-engine
diff options
context:
space:
mode:
authorGuenter Bartsch <guenter@users.sourceforge.net>2002-12-27 13:44:58 +0000
committerGuenter Bartsch <guenter@users.sourceforge.net>2002-12-27 13:44:58 +0000
commitbd8cd7733f7c7684a85703b7a7d91fff1d2a6238 (patch)
tree9c5c9613253ae43b1c67dffd2f591446d13167dc /src/xine-engine
parent04955b377812da99d9d9cebe9fddad0e83785ddd (diff)
downloadxine-lib-bd8cd7733f7c7684a85703b7a7d91fff1d2a6238.tar.gz
xine-lib-bd8cd7733f7c7684a85703b7a7d91fff1d2a6238.tar.bz2
fix dvb events
CVS patchset: 3692 CVS date: 2002/12/27 13:44:58
Diffstat (limited to 'src/xine-engine')
-rw-r--r--src/xine-engine/xine_internal.h17
1 files changed, 16 insertions, 1 deletions
diff --git a/src/xine-engine/xine_internal.h b/src/xine-engine/xine_internal.h
index c022b44d8..859b661ad 100644
--- a/src/xine-engine/xine_internal.h
+++ b/src/xine-engine/xine_internal.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: xine_internal.h,v 1.118 2002/12/27 03:40:08 miguelfreitas Exp $
+ * $Id: xine_internal.h,v 1.119 2002/12/27 13:44:59 guenter Exp $
*
*/
@@ -328,6 +328,21 @@ int xine_get_audio_channel (xine_stream_t *stream) ;
int xine_get_spu_channel (xine_stream_t *stream) ;
+/*
+ * internal events
+ */
+
+/* sent by dvb frontend to inform ts demuxer of new pids */
+#define XINE_EVENT_PIDS_CHANGE 0x80000000
+
+/*
+ * pids change event - inform ts demuxer of new pids
+ */
+typedef struct {
+ int vpid; /* video program id */
+ int apid; /* audio program id */
+} xine_pids_data_t;
+
#ifdef __cplusplus
}
#endif