2008-12-13 19:28:00 +01:00
|
|
|
/*
|
|
|
|
* This file is part of MPlayer.
|
|
|
|
*
|
|
|
|
* MPlayer is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* MPlayer is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License along
|
|
|
|
* with MPlayer; if not, write to the Free Software Foundation, Inc.,
|
|
|
|
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
|
|
|
*/
|
|
|
|
|
2008-02-22 10:09:46 +01:00
|
|
|
#ifndef MPLAYER_INPUT_H
|
|
|
|
#define MPLAYER_INPUT_H
|
2008-01-01 22:35:58 +01:00
|
|
|
|
2003-09-14 19:52:59 +02:00
|
|
|
// All command IDs
|
2011-07-16 17:17:48 +02:00
|
|
|
enum mp_command_type {
|
2011-07-16 16:47:02 +02:00
|
|
|
MP_CMD_SEEK,
|
|
|
|
MP_CMD_AUDIO_DELAY,
|
|
|
|
MP_CMD_QUIT,
|
|
|
|
MP_CMD_PAUSE,
|
|
|
|
MP_CMD_GRAB_FRAMES, // deprecated: was a no-op command for years
|
|
|
|
MP_CMD_PLAY_TREE_STEP,
|
|
|
|
MP_CMD_PLAY_TREE_UP_STEP,
|
|
|
|
MP_CMD_PLAY_ALT_SRC_STEP,
|
|
|
|
MP_CMD_SUB_DELAY,
|
|
|
|
MP_CMD_OSD,
|
|
|
|
MP_CMD_VOLUME,
|
|
|
|
MP_CMD_MIXER_USEMASTER,
|
|
|
|
MP_CMD_CONTRAST,
|
|
|
|
MP_CMD_BRIGHTNESS,
|
|
|
|
MP_CMD_HUE,
|
|
|
|
MP_CMD_SATURATION,
|
|
|
|
MP_CMD_FRAMEDROPPING,
|
|
|
|
MP_CMD_TV_STEP_CHANNEL,
|
|
|
|
MP_CMD_TV_STEP_NORM,
|
|
|
|
MP_CMD_TV_STEP_CHANNEL_LIST,
|
|
|
|
MP_CMD_CAPTURING,
|
|
|
|
MP_CMD_VO_FULLSCREEN,
|
|
|
|
MP_CMD_SUB_POS,
|
|
|
|
MP_CMD_DVDNAV,
|
|
|
|
MP_CMD_SCREENSHOT,
|
|
|
|
MP_CMD_PANSCAN,
|
|
|
|
MP_CMD_MUTE,
|
|
|
|
MP_CMD_LOADFILE,
|
|
|
|
MP_CMD_LOADLIST,
|
|
|
|
MP_CMD_VF_CHANGE_RECTANGLE,
|
|
|
|
MP_CMD_GAMMA,
|
|
|
|
MP_CMD_SUB_VISIBILITY,
|
|
|
|
MP_CMD_VOBSUB_LANG, // deprecated: combined with SUB_SELECT
|
|
|
|
MP_CMD_GET_TIME_LENGTH,
|
|
|
|
MP_CMD_GET_PERCENT_POS,
|
|
|
|
MP_CMD_SUB_STEP,
|
|
|
|
MP_CMD_TV_SET_CHANNEL,
|
|
|
|
MP_CMD_EDL_MARK,
|
|
|
|
MP_CMD_SUB_ALIGNMENT,
|
|
|
|
MP_CMD_TV_LAST_CHANNEL,
|
|
|
|
MP_CMD_OSD_SHOW_TEXT,
|
|
|
|
MP_CMD_TV_SET_FREQ,
|
|
|
|
MP_CMD_TV_SET_NORM,
|
|
|
|
MP_CMD_TV_SET_BRIGHTNESS,
|
|
|
|
MP_CMD_TV_SET_CONTRAST,
|
|
|
|
MP_CMD_TV_SET_HUE,
|
|
|
|
MP_CMD_TV_SET_SATURATION,
|
|
|
|
MP_CMD_GET_VO_FULLSCREEN,
|
|
|
|
MP_CMD_GET_SUB_VISIBILITY,
|
|
|
|
MP_CMD_SUB_FORCED_ONLY,
|
|
|
|
MP_CMD_VO_ONTOP,
|
|
|
|
MP_CMD_SUB_SELECT,
|
|
|
|
MP_CMD_VO_ROOTWIN,
|
|
|
|
MP_CMD_SWITCH_VSYNC,
|
|
|
|
MP_CMD_SWITCH_RATIO,
|
|
|
|
MP_CMD_FRAME_STEP,
|
|
|
|
MP_CMD_SPEED_INCR,
|
|
|
|
MP_CMD_SPEED_MULT,
|
|
|
|
MP_CMD_SPEED_SET,
|
|
|
|
MP_CMD_RUN,
|
|
|
|
MP_CMD_SUB_LOG,
|
|
|
|
MP_CMD_SWITCH_AUDIO,
|
|
|
|
MP_CMD_GET_TIME_POS,
|
|
|
|
MP_CMD_SUB_LOAD,
|
|
|
|
MP_CMD_SUB_REMOVE,
|
|
|
|
MP_CMD_KEYDOWN_EVENTS,
|
|
|
|
MP_CMD_VO_BORDER,
|
|
|
|
MP_CMD_SET_PROPERTY,
|
|
|
|
MP_CMD_SET_PROPERTY_OSD,
|
|
|
|
MP_CMD_GET_PROPERTY,
|
|
|
|
MP_CMD_OSD_SHOW_PROPERTY_TEXT,
|
|
|
|
MP_CMD_OSD_SHOW_PROGRESSION,
|
|
|
|
MP_CMD_SEEK_CHAPTER,
|
|
|
|
MP_CMD_GET_FILENAME,
|
|
|
|
MP_CMD_GET_VIDEO_CODEC,
|
|
|
|
MP_CMD_GET_VIDEO_BITRATE,
|
|
|
|
MP_CMD_GET_VIDEO_RESOLUTION,
|
|
|
|
MP_CMD_GET_AUDIO_CODEC,
|
|
|
|
MP_CMD_GET_AUDIO_BITRATE,
|
|
|
|
MP_CMD_GET_AUDIO_SAMPLES,
|
|
|
|
MP_CMD_GET_META_TITLE,
|
|
|
|
MP_CMD_GET_META_ARTIST,
|
|
|
|
MP_CMD_GET_META_ALBUM,
|
|
|
|
MP_CMD_GET_META_YEAR,
|
|
|
|
MP_CMD_GET_META_COMMENT,
|
|
|
|
MP_CMD_GET_META_TRACK,
|
|
|
|
MP_CMD_GET_META_GENRE,
|
|
|
|
MP_CMD_RADIO_STEP_CHANNEL,
|
|
|
|
MP_CMD_RADIO_SET_CHANNEL,
|
|
|
|
MP_CMD_RADIO_SET_FREQ,
|
|
|
|
MP_CMD_SET_MOUSE_POS,
|
|
|
|
MP_CMD_STEP_PROPERTY,
|
|
|
|
MP_CMD_STEP_PROPERTY_OSD,
|
|
|
|
MP_CMD_RADIO_STEP_FREQ,
|
|
|
|
MP_CMD_TV_STEP_FREQ,
|
|
|
|
MP_CMD_LOOP,
|
|
|
|
MP_CMD_BALANCE,
|
|
|
|
MP_CMD_SUB_SCALE,
|
|
|
|
MP_CMD_TV_TELETEXT_ADD_DEC,
|
|
|
|
MP_CMD_TV_TELETEXT_GO_LINK,
|
|
|
|
MP_CMD_TV_START_SCAN,
|
|
|
|
MP_CMD_SUB_SOURCE,
|
|
|
|
MP_CMD_SUB_FILE,
|
|
|
|
MP_CMD_SUB_VOB,
|
|
|
|
MP_CMD_SUB_DEMUX,
|
|
|
|
MP_CMD_SWITCH_ANGLE,
|
|
|
|
MP_CMD_ASS_USE_MARGINS,
|
|
|
|
MP_CMD_SWITCH_TITLE,
|
|
|
|
MP_CMD_STOP,
|
|
|
|
|
|
|
|
/// DVDNAV commands
|
|
|
|
MP_CMD_DVDNAV_UP = 1000,
|
|
|
|
MP_CMD_DVDNAV_DOWN,
|
|
|
|
MP_CMD_DVDNAV_LEFT,
|
|
|
|
MP_CMD_DVDNAV_RIGHT,
|
|
|
|
MP_CMD_DVDNAV_MENU,
|
|
|
|
MP_CMD_DVDNAV_SELECT,
|
|
|
|
MP_CMD_DVDNAV_PREVMENU,
|
|
|
|
MP_CMD_DVDNAV_MOUSECLICK,
|
|
|
|
|
|
|
|
/// DVB commands
|
|
|
|
MP_CMD_DVB_SET_CHANNEL = 5101,
|
|
|
|
|
|
|
|
/// Audio Filter commands
|
|
|
|
MP_CMD_AF_SWITCH,
|
|
|
|
MP_CMD_AF_ADD,
|
|
|
|
MP_CMD_AF_DEL,
|
|
|
|
MP_CMD_AF_CLR,
|
|
|
|
MP_CMD_AF_CMDLINE,
|
2011-07-16 17:17:48 +02:00
|
|
|
};
|
2002-11-15 00:41:44 +01:00
|
|
|
|
2003-09-14 19:52:59 +02:00
|
|
|
// The arg types
|
2002-01-30 13:46:03 +01:00
|
|
|
#define MP_CMD_ARG_INT 0
|
|
|
|
#define MP_CMD_ARG_FLOAT 1
|
|
|
|
#define MP_CMD_ARG_STRING 2
|
2002-04-03 19:58:17 +02:00
|
|
|
#define MP_CMD_ARG_VOID 3
|
2002-01-30 13:46:03 +01:00
|
|
|
|
2002-03-19 14:29:28 +01:00
|
|
|
#ifndef MP_CMD_MAX_ARGS
|
2002-01-30 13:46:03 +01:00
|
|
|
#define MP_CMD_MAX_ARGS 10
|
2002-03-19 14:29:28 +01:00
|
|
|
#endif
|
|
|
|
|
|
|
|
// Error codes for the drivers
|
2002-01-30 13:46:03 +01:00
|
|
|
|
2003-12-24 23:00:51 +01:00
|
|
|
// An error occurred but we can continue
|
2002-01-30 13:46:03 +01:00
|
|
|
#define MP_INPUT_ERROR -1
|
2003-12-24 23:00:51 +01:00
|
|
|
// A fatal error occurred, this driver should be removed
|
2002-01-30 13:46:03 +01:00
|
|
|
#define MP_INPUT_DEAD -2
|
2003-09-14 19:52:59 +02:00
|
|
|
// No input was available
|
2002-01-30 13:46:03 +01:00
|
|
|
#define MP_INPUT_NOTHING -3
|
2005-06-27 10:16:23 +02:00
|
|
|
//! Input will be available if you try again
|
|
|
|
#define MP_INPUT_RETRY -4
|
2011-05-01 14:57:39 +02:00
|
|
|
// Key FIFO was full - release events may be lost, zero button-down status
|
|
|
|
#define MP_INPUT_RELEASE_ALL -5
|
|
|
|
|
2002-01-30 13:46:03 +01:00
|
|
|
|
2008-04-30 06:15:52 +02:00
|
|
|
struct input_ctx;
|
|
|
|
|
2011-07-16 17:17:48 +02:00
|
|
|
struct mp_cmd_arg {
|
2011-07-16 16:47:02 +02:00
|
|
|
int type;
|
2011-07-16 17:17:48 +02:00
|
|
|
union {
|
|
|
|
int i;
|
|
|
|
float f;
|
|
|
|
char *s;
|
|
|
|
void *v;
|
|
|
|
} v;
|
|
|
|
};
|
2002-01-30 13:46:03 +01:00
|
|
|
|
|
|
|
typedef struct mp_cmd {
|
2011-07-16 16:47:02 +02:00
|
|
|
int id;
|
|
|
|
char *name;
|
|
|
|
int nargs;
|
2011-07-16 17:17:48 +02:00
|
|
|
struct mp_cmd_arg args[MP_CMD_MAX_ARGS];
|
2011-07-16 16:47:02 +02:00
|
|
|
int pausing;
|
2011-07-17 03:47:50 +02:00
|
|
|
struct mp_cmd *queue_prev;
|
|
|
|
struct mp_cmd *queue_next;
|
2002-01-30 13:46:03 +01:00
|
|
|
} mp_cmd_t;
|
|
|
|
|
|
|
|
|
2011-07-16 16:47:02 +02:00
|
|
|
/* Add a new command input source.
|
|
|
|
* "fd" is a file descriptor (use a negative value if you don't use any fd)
|
|
|
|
* "select" tells whether to use select() on the fd to determine when to
|
|
|
|
* try reading.
|
|
|
|
* "read_func" is optional. If NULL a default function which reads data
|
2011-07-16 17:17:48 +02:00
|
|
|
* directly from the fd will be used. It must return either text data
|
|
|
|
* or one of the MP_INPUT error codes above.
|
|
|
|
* "close_func" will be called when closing. Can be NULL. Its return value
|
|
|
|
* is ignored (it's only there to allow using standard close() as the func).
|
2011-07-16 16:47:02 +02:00
|
|
|
*/
|
2008-04-30 12:14:03 +02:00
|
|
|
int mp_input_add_cmd_fd(struct input_ctx *ictx, int fd, int select,
|
2011-07-16 17:17:48 +02:00
|
|
|
int read_func(int fd, char *dest, int size),
|
|
|
|
int close_func(int fd));
|
2002-01-30 13:46:03 +01:00
|
|
|
|
2003-09-14 19:52:59 +02:00
|
|
|
// This removes a cmd driver, you usually don't need to use it.
|
2008-04-30 12:14:03 +02:00
|
|
|
void mp_input_rm_cmd_fd(struct input_ctx *ictx, int fd);
|
2002-01-30 13:46:03 +01:00
|
|
|
|
2011-07-16 16:47:02 +02:00
|
|
|
/* The args are similar to the cmd version above, except you must give
|
2011-07-16 17:17:48 +02:00
|
|
|
* a read_func, and it should return key codes (ASCII plus keycodes.h).
|
2011-07-16 16:47:02 +02:00
|
|
|
*/
|
2008-04-30 10:06:55 +02:00
|
|
|
int mp_input_add_key_fd(struct input_ctx *ictx, int fd, int select,
|
2011-07-16 17:17:48 +02:00
|
|
|
int read_func(void *ctx, int fd),
|
|
|
|
int close_func(int fd), void *ctx);
|
2002-01-30 13:46:03 +01:00
|
|
|
|
2011-07-17 03:47:50 +02:00
|
|
|
// Feed a keypress (alternative to being returned from read_func above)
|
|
|
|
void mp_input_feed_key(struct input_ctx *ictx, int code);
|
|
|
|
|
2003-09-14 19:52:59 +02:00
|
|
|
// As for the cmd one you usually don't need this function.
|
2008-04-30 10:06:55 +02:00
|
|
|
void mp_input_rm_key_fd(struct input_ctx *ictx, int fd);
|
2002-01-30 13:46:03 +01:00
|
|
|
|
2011-07-16 16:47:02 +02:00
|
|
|
// Get input key from its name.
|
2007-12-04 11:42:59 +01:00
|
|
|
int mp_input_get_key_from_name(const char *name);
|
|
|
|
|
2011-07-16 16:47:02 +02:00
|
|
|
// Add a command to the command queue.
|
|
|
|
int mp_input_queue_cmd(struct input_ctx *ictx, struct mp_cmd *cmd);
|
2002-02-23 22:13:35 +01:00
|
|
|
|
2011-07-16 16:47:02 +02:00
|
|
|
/* Return next available command, or sleep up to "time" ms if none is
|
|
|
|
* available. If "peek_only" is true return a reference to the command
|
|
|
|
* but leave it queued.
|
|
|
|
*/
|
|
|
|
struct mp_cmd *mp_input_get_cmd(struct input_ctx *ictx, int time,
|
|
|
|
int peek_only);
|
2002-01-30 13:46:03 +01:00
|
|
|
|
2011-07-16 16:47:02 +02:00
|
|
|
/* Parse text and return corresponding struct mp_cmd. */
|
|
|
|
struct mp_cmd *mp_input_parse_cmd(char *str);
|
2002-11-15 00:41:44 +01:00
|
|
|
|
2007-12-11 09:03:47 +01:00
|
|
|
/**
|
|
|
|
* Parse and queue commands separated by '\n'.
|
2011-07-16 16:47:02 +02:00
|
|
|
* Return number of commands queued.
|
2007-12-11 09:03:47 +01:00
|
|
|
*/
|
2008-04-30 12:00:59 +02:00
|
|
|
int mp_input_parse_and_queue_cmds(struct input_ctx *ictx, const char *str);
|
2007-12-11 09:03:47 +01:00
|
|
|
|
2002-03-19 14:29:28 +01:00
|
|
|
// After getting a command from mp_input_get_cmd you need to free it using this
|
|
|
|
// function
|
2011-07-16 16:47:02 +02:00
|
|
|
void mp_cmd_free(struct mp_cmd *cmd);
|
2002-01-30 13:46:03 +01:00
|
|
|
|
2003-09-14 19:52:59 +02:00
|
|
|
// This creates a copy of a command (used by the auto repeat stuff).
|
2011-07-16 16:47:02 +02:00
|
|
|
struct mp_cmd *mp_cmd_clone(struct mp_cmd *cmd);
|
2002-02-11 12:42:08 +01:00
|
|
|
|
2007-06-07 20:06:53 +02:00
|
|
|
// Set current input section
|
2008-04-30 07:56:45 +02:00
|
|
|
void mp_input_set_section(struct input_ctx *ictx, char *name);
|
2007-06-07 20:06:53 +02:00
|
|
|
|
|
|
|
// Get current input section
|
2008-04-30 07:56:45 +02:00
|
|
|
char *mp_input_get_section(struct input_ctx *ictx);
|
2007-06-07 20:06:53 +02:00
|
|
|
|
2011-07-16 16:47:02 +02:00
|
|
|
// Initialize the input system
|
2008-04-30 17:57:02 +02:00
|
|
|
struct input_conf;
|
2009-07-07 19:35:54 +02:00
|
|
|
struct input_ctx *mp_input_init(struct input_conf *input_conf);
|
2002-01-30 13:46:03 +01:00
|
|
|
|
2008-04-30 06:15:52 +02:00
|
|
|
void mp_input_uninit(struct input_ctx *ictx);
|
2002-10-23 16:46:20 +02:00
|
|
|
|
2008-08-12 13:22:26 +02:00
|
|
|
struct m_config;
|
|
|
|
void mp_input_register_options(struct m_config *cfg);
|
|
|
|
|
2002-10-23 16:46:20 +02:00
|
|
|
// Interruptible usleep: (used by libmpdemux)
|
2011-07-16 16:47:02 +02:00
|
|
|
int mp_input_check_interrupt(struct input_ctx *ictx, int time);
|
2002-10-23 16:46:20 +02:00
|
|
|
|
2008-01-08 22:40:44 +01:00
|
|
|
extern int async_quit_request;
|
|
|
|
|
2008-02-22 10:09:46 +01:00
|
|
|
#endif /* MPLAYER_INPUT_H */
|