rpm: Remove MEncoder from rpm packaging
[mplayer/glamo.git] / input / ar.h
blob12944f84e1753969bd9753db1a7f693e7569cde2
1 /*
2 * Apple Remote input interface
4 * Copyright (C) 2007 Zoltan Ponekker <pontscho at kac.poliod.hu>
6 * This file is part of MPlayer.
8 * MPlayer is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation; either version 2 of the License, or
11 * (at your option) any later version.
13 * MPlayer is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
18 * You should have received a copy of the GNU General Public License along
19 * with MPlayer; if not, write to the Free Software Foundation, Inc.,
20 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
23 #ifndef MPLAYER_AR_H
24 #define MPLAYER_AR_H
26 #define AR_BASE 0x500
27 #define AR_PLAY (AR_BASE + 0)
28 #define AR_PLAY_HOLD (AR_BASE + 1)
29 #define AR_NEXT (AR_BASE + 2)
30 #define AR_NEXT_HOLD (AR_BASE + 3)
31 #define AR_PREV (AR_BASE + 4)
32 #define AR_PREV_HOLD (AR_BASE + 5)
33 #define AR_MENU (AR_BASE + 6)
34 #define AR_MENU_HOLD (AR_BASE + 7)
35 #define AR_VUP (AR_BASE + 8)
36 #define AR_VDOWN (AR_BASE + 9)
38 /* MacOSX Driver */
39 int mp_input_ar_init(void);
40 int mp_input_ar_read(void *ctx, int fd);
41 void mp_input_ar_close(int fd);
43 /* Linux Driver */
44 int mp_input_appleir_init(char* dev);
45 int mp_input_appleir_read(void *ctx, int fd);
47 #endif /* MPLAYER_AR_H */