Mercurial > mplayer.hg
changeset 10577:7e5733a8c33b
Hi, here are slave commands:
tv_set_brightness
tv_set_contrast
tv_set_hue
tv_set_color
Patch by Kir Kostuchenko <kir@users.sourceforge.net>
author | gabucino |
---|---|
date | Tue, 12 Aug 2003 07:38:49 +0000 |
parents | e4cdc9ca94c5 |
children | b9d289fd8a57 |
files | DOCS/tech/slave.txt input/input.c input/input.h mplayer.c |
diffstat | 4 files changed, 32 insertions(+), 0 deletions(-) [+] |
line wrap: on
line diff
--- a/DOCS/tech/slave.txt Tue Aug 12 06:57:19 2003 +0000 +++ b/DOCS/tech/slave.txt Tue Aug 12 07:38:49 2003 +0000 @@ -80,5 +80,13 @@ Set the tv tuner frequency. tv_set_norm <norm> Set the tv tuner norm. PAL, SECAM, NTSC and so on.. +tv_set_brightness [-100:100] + Set tv tuner brightness. +tv_set_contrast [-100:100] + Set tv tuner contrast. +tv_set_hue [-100:100] + Set tv tuner hue. +tv_set_saturation [-100:100] + Set tv tuner saturation. gui_[loadsubtitle|about|play|stop] GUI actions
--- a/input/input.c Tue Aug 12 06:57:19 2003 +0000 +++ b/input/input.c Tue Aug 12 07:38:49 2003 +0000 @@ -87,6 +87,10 @@ { MP_CMD_TV_LAST_CHANNEL, "tv_last_channel", 0, { {-1,{0}} } }, { MP_CMD_TV_SET_FREQ, "tv_set_freq", 1, { {MP_CMD_ARG_FLOAT,{0}}, {-1,{0}} } }, { MP_CMD_TV_SET_NORM, "tv_set_norm", 1, { {MP_CMD_ARG_STRING,{0}}, {-1,{0}} } }, + { MP_CMD_TV_SET_BRIGHTNESS, "tv_set_brightness", 1, { { MP_CMD_ARG_INT ,{0}}, {-1,{0}} }}, + { MP_CMD_TV_SET_CONTRAST, "tv_set_contrast", 1, { { MP_CMD_ARG_INT ,{0}}, {-1,{0}} }}, + { MP_CMD_TV_SET_HUE, "tv_set_hue", 1, { { MP_CMD_ARG_INT ,{0}}, {-1,{0}} }}, + { MP_CMD_TV_SET_SATURATION, "tv_set_saturation", 1, { { MP_CMD_ARG_INT ,{0}}, {-1,{0}} }}, #endif { MP_CMD_VO_FULLSCREEN, "vo_fullscreen", 0, { {-1,{0}} } }, { MP_CMD_SCREENSHOT, "screenshot", 0, { {-1,{0}} } },
--- a/input/input.h Tue Aug 12 06:57:19 2003 +0000 +++ b/input/input.h Tue Aug 12 07:38:49 2003 +0000 @@ -45,6 +45,10 @@ #define MP_CMD_OSD_SHOW_TEXT 41 #define MP_CMD_TV_SET_FREQ 42 #define MP_CMD_TV_SET_NORM 43 +#define MP_CMD_TV_SET_BRIGHTNESS 44 +#define MP_CMD_TV_SET_CONTRAST 45 +#define MP_CMD_TV_SET_HUE 46 +#define MP_CMD_TV_SET_SATURATION 47 #define MP_CMD_GUI_EVENTS 5000 #define MP_CMD_GUI_LOADFILE 5001
--- a/mplayer.c Tue Aug 12 06:57:19 2003 +0000 +++ b/mplayer.c Tue Aug 12 07:38:49 2003 +0000 @@ -2777,6 +2777,22 @@ if (file_format == DEMUXER_TYPE_TV) tv_set_norm((tvi_handle_t*)(demuxer->priv), cmd->args[0].v.s); } break; + case MP_CMD_TV_SET_BRIGHTNESS : { + if (file_format == DEMUXER_TYPE_TV) + tv_set_color_options((tvi_handle_t*)(demuxer->priv), TV_COLOR_BRIGHTNESS, cmd->args[0].v.i); + } break; + case MP_CMD_TV_SET_HUE : { + if (file_format == DEMUXER_TYPE_TV) + tv_set_color_options((tvi_handle_t*)(demuxer->priv), TV_COLOR_HUE, cmd->args[0].v.i); + } break; + case MP_CMD_TV_SET_SATURATION : { + if (file_format == DEMUXER_TYPE_TV) + tv_set_color_options((tvi_handle_t*)(demuxer->priv), TV_COLOR_SATURATION, cmd->args[0].v.i); + } break; + case MP_CMD_TV_SET_CONTRAST : { + if (file_format == DEMUXER_TYPE_TV) + tv_set_color_options((tvi_handle_t*)(demuxer->priv), TV_COLOR_CONTRAST, cmd->args[0].v.i); + } break; case MP_CMD_TV_STEP_CHANNEL : { if (file_format == DEMUXER_TYPE_TV) { int v = cmd->args[0].v.i;