diff options
author | Guenter Bartsch <guenter@users.sourceforge.net> | 2001-09-12 22:18:47 +0000 |
---|---|---|
committer | Guenter Bartsch <guenter@users.sourceforge.net> | 2001-09-12 22:18:47 +0000 |
commit | 7d6fb6c905dbd842eead370f2412a55eda31cecb (patch) | |
tree | 45d81b00889662bf46f3ce4c15f1b898566f1b9f /src/xine-engine/buffer.h | |
parent | 436000020930b0ce16be4a34fae8ff5df28450a5 (diff) | |
download | xine-lib-7d6fb6c905dbd842eead370f2412a55eda31cecb.tar.gz xine-lib-7d6fb6c905dbd842eead370f2412a55eda31cecb.tar.bz2 |
further tweaks and patches for menu support: new buftypes (BUF_CONTROL_DISCONTINUITY,BUF_CONTROL_NOP,BUF_CONTROL_AUDIO_CHANNEL,BUF_CONTROL_SPU_CHANNEL) so input plugins can enhance their communication with the xine engine (regarding pts continuities for example) - not all is implemented yet, but what is implemented is working pretty well - at least for me ;))
CVS patchset: 627
CVS date: 2001/09/12 22:18:47
Diffstat (limited to 'src/xine-engine/buffer.h')
-rw-r--r-- | src/xine-engine/buffer.h | 14 |
1 files changed, 9 insertions, 5 deletions
diff --git a/src/xine-engine/buffer.h b/src/xine-engine/buffer.h index 85f99e585..d8cd73690 100644 --- a/src/xine-engine/buffer.h +++ b/src/xine-engine/buffer.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: buffer.h,v 1.12 2001/09/10 03:04:48 guenter Exp $ + * $Id: buffer.h,v 1.13 2001/09/12 22:18:47 guenter Exp $ * * * contents: @@ -60,10 +60,14 @@ extern "C" { /* control buffer types */ -#define BUF_CONTROL_BASE 0x01000000 -#define BUF_CONTROL_START 0x01000000 -#define BUF_CONTROL_END 0x01010000 -#define BUF_CONTROL_QUIT 0x01020000 +#define BUF_CONTROL_BASE 0x01000000 +#define BUF_CONTROL_START 0x01000000 +#define BUF_CONTROL_END 0x01010000 +#define BUF_CONTROL_QUIT 0x01020000 +#define BUF_CONTROL_DISCONTINUITY 0x01030000 +#define BUF_CONTROL_NOP 0x01040000 +#define BUF_CONTROL_AUDIO_CHANNEL 0x01050000 +#define BUF_CONTROL_SPU_CHANNEL 0x01060000 /* video buffer types: */ |