Mercurial > mplayer.hg
annotate libmpdemux/tv.h @ 7835:d489890c59d3
add an option to force audio recording when a tv card reports no audio sources
author | henry |
---|---|
date | Tue, 22 Oct 2002 07:56:13 +0000 |
parents | a193df8b275b |
children | b062996d9794 |
rev | line source |
---|---|
2941
60c1b7c0ea21
added support for norm=,chanlist=,channel= and also on-the-fly channel chaning with keys
alex
parents:
2937
diff
changeset
|
1 #ifndef TV_H |
60c1b7c0ea21
added support for norm=,chanlist=,channel= and also on-the-fly channel chaning with keys
alex
parents:
2937
diff
changeset
|
2 #define TV_H |
2790 | 3 |
2819
2e58962dc9fe
cleaned up some warnings, and tv_param_on moved out from #ifdef USE_TV
alex
parents:
2818
diff
changeset
|
4 extern int tv_param_on; |
2e58962dc9fe
cleaned up some warnings, and tv_param_on moved out from #ifdef USE_TV
alex
parents:
2818
diff
changeset
|
5 |
2790 | 6 #ifdef USE_TV |
2830 | 7 //#include "../libao2/afmt.h" |
8 //#include "../libvo/img_format.h" | |
9 //#include "../libvo/fastmemcpy.h" | |
10 //#include "mp_msg.h" | |
2802 | 11 |
2837 | 12 extern char *tv_param_freq; |
2790 | 13 extern char *tv_param_channel; |
2941
60c1b7c0ea21
added support for norm=,chanlist=,channel= and also on-the-fly channel chaning with keys
alex
parents:
2937
diff
changeset
|
14 extern char *tv_param_chanlist; |
2790 | 15 extern char *tv_param_norm; |
16 extern char *tv_param_device; | |
17 extern char *tv_param_driver; | |
18 extern int tv_param_width; | |
19 extern int tv_param_height; | |
2802 | 20 extern int tv_param_input; |
2817 | 21 extern char *tv_param_outfmt; |
3285 | 22 extern float tv_param_fps; |
5098 | 23 extern int tv_param_noaudio; |
5572
8cd761968f35
BSD-BT848 TV update patch by Charles Henrich <henrich@sigbus.com>
arpi
parents:
5098
diff
changeset
|
24 extern int tv_param_immediate; |
8cd761968f35
BSD-BT848 TV update patch by Charles Henrich <henrich@sigbus.com>
arpi
parents:
5098
diff
changeset
|
25 extern int tv_param_audiorate; |
7058
2e5c07262861
new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents:
5572
diff
changeset
|
26 #ifdef HAVE_TV_V4L |
7163
a193df8b275b
v4l audio fixes by Jindrich Makovicka <makovick@KMLinux.fjfi.cvut.cz>
alex
parents:
7058
diff
changeset
|
27 extern int tv_param_amode; |
7058
2e5c07262861
new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents:
5572
diff
changeset
|
28 extern int tv_param_audio_id; |
7163
a193df8b275b
v4l audio fixes by Jindrich Makovicka <makovick@KMLinux.fjfi.cvut.cz>
alex
parents:
7058
diff
changeset
|
29 extern int tv_param_volume; |
a193df8b275b
v4l audio fixes by Jindrich Makovicka <makovick@KMLinux.fjfi.cvut.cz>
alex
parents:
7058
diff
changeset
|
30 extern int tv_param_bass; |
a193df8b275b
v4l audio fixes by Jindrich Makovicka <makovick@KMLinux.fjfi.cvut.cz>
alex
parents:
7058
diff
changeset
|
31 extern int tv_param_treble; |
a193df8b275b
v4l audio fixes by Jindrich Makovicka <makovick@KMLinux.fjfi.cvut.cz>
alex
parents:
7058
diff
changeset
|
32 extern int tv_param_balance; |
a193df8b275b
v4l audio fixes by Jindrich Makovicka <makovick@KMLinux.fjfi.cvut.cz>
alex
parents:
7058
diff
changeset
|
33 extern int tv_param_forcechan; |
7835
d489890c59d3
add an option to force audio recording when a tv card reports no audio sources
henry
parents:
7163
diff
changeset
|
34 extern int tv_param_force_audio; |
7058
2e5c07262861
new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents:
5572
diff
changeset
|
35 #ifdef HAVE_ALSA9 |
2e5c07262861
new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents:
5572
diff
changeset
|
36 extern int tv_param_alsa; |
2e5c07262861
new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents:
5572
diff
changeset
|
37 #endif |
2e5c07262861
new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents:
5572
diff
changeset
|
38 extern char* tv_param_adevice; |
2e5c07262861
new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents:
5572
diff
changeset
|
39 #endif |
2790 | 40 |
41 typedef struct tvi_info_s | |
42 { | |
43 const char *name; | |
44 const char *short_name; | |
45 const char *author; | |
46 const char *comment; | |
47 } tvi_info_t; | |
48 | |
49 typedef struct tvi_functions_s | |
50 { | |
51 int (*init)(); | |
2802 | 52 int (*uninit)(); |
2790 | 53 int (*control)(); |
2802 | 54 int (*start)(); |
5572
8cd761968f35
BSD-BT848 TV update patch by Charles Henrich <henrich@sigbus.com>
arpi
parents:
5098
diff
changeset
|
55 double (*grab_video_frame)(); |
8cd761968f35
BSD-BT848 TV update patch by Charles Henrich <henrich@sigbus.com>
arpi
parents:
5098
diff
changeset
|
56 #ifdef HAVE_TV_BSDBT848 |
8cd761968f35
BSD-BT848 TV update patch by Charles Henrich <henrich@sigbus.com>
arpi
parents:
5098
diff
changeset
|
57 double (*grabimmediate_video_frame)(); |
8cd761968f35
BSD-BT848 TV update patch by Charles Henrich <henrich@sigbus.com>
arpi
parents:
5098
diff
changeset
|
58 #endif |
2790 | 59 int (*get_video_framesize)(); |
5572
8cd761968f35
BSD-BT848 TV update patch by Charles Henrich <henrich@sigbus.com>
arpi
parents:
5098
diff
changeset
|
60 double (*grab_audio_frame)(); |
2790 | 61 int (*get_audio_framesize)(); |
62 } tvi_functions_t; | |
63 | |
64 typedef struct tvi_handle_s { | |
2802 | 65 tvi_info_t *info; |
66 tvi_functions_t *functions; | |
67 void *priv; | |
68 int seq; | |
2941
60c1b7c0ea21
added support for norm=,chanlist=,channel= and also on-the-fly channel chaning with keys
alex
parents:
2937
diff
changeset
|
69 |
60c1b7c0ea21
added support for norm=,chanlist=,channel= and also on-the-fly channel chaning with keys
alex
parents:
2937
diff
changeset
|
70 /* specific */ |
60c1b7c0ea21
added support for norm=,chanlist=,channel= and also on-the-fly channel chaning with keys
alex
parents:
2937
diff
changeset
|
71 int norm; |
60c1b7c0ea21
added support for norm=,chanlist=,channel= and also on-the-fly channel chaning with keys
alex
parents:
2937
diff
changeset
|
72 int chanlist; |
60c1b7c0ea21
added support for norm=,chanlist=,channel= and also on-the-fly channel chaning with keys
alex
parents:
2937
diff
changeset
|
73 struct CHANLIST *chanlist_s; |
60c1b7c0ea21
added support for norm=,chanlist=,channel= and also on-the-fly channel chaning with keys
alex
parents:
2937
diff
changeset
|
74 int channel; |
2790 | 75 } tvi_handle_t; |
76 | |
2802 | 77 |
2790 | 78 #define TVI_CONTROL_FALSE 0 |
79 #define TVI_CONTROL_TRUE 1 | |
80 #define TVI_CONTROL_NA -1 | |
81 #define TVI_CONTROL_UNKNOWN -2 | |
82 | |
2802 | 83 /* ======================== CONTROLS =========================== */ |
2790 | 84 |
2802 | 85 /* GENERIC controls */ |
86 #define TVI_CONTROL_IS_AUDIO 0x1 | |
87 #define TVI_CONTROL_IS_VIDEO 0x2 | |
88 #define TVI_CONTROL_IS_TUNER 0x3 | |
7058
2e5c07262861
new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents:
5572
diff
changeset
|
89 #define TVI_CONTROL_IMMEDIATE 0x4 |
2802 | 90 |
91 /* VIDEO controls */ | |
92 #define TVI_CONTROL_VID_GET_FPS 0x101 | |
93 #define TVI_CONTROL_VID_GET_PLANES 0x102 | |
94 #define TVI_CONTROL_VID_GET_BITS 0x103 | |
95 #define TVI_CONTROL_VID_CHK_BITS 0x104 | |
96 #define TVI_CONTROL_VID_SET_BITS 0x105 | |
97 #define TVI_CONTROL_VID_GET_FORMAT 0x106 | |
98 #define TVI_CONTROL_VID_CHK_FORMAT 0x107 | |
99 #define TVI_CONTROL_VID_SET_FORMAT 0x108 | |
100 #define TVI_CONTROL_VID_GET_WIDTH 0x109 | |
101 #define TVI_CONTROL_VID_CHK_WIDTH 0x110 | |
102 #define TVI_CONTROL_VID_SET_WIDTH 0x111 | |
103 #define TVI_CONTROL_VID_GET_HEIGHT 0x112 | |
104 #define TVI_CONTROL_VID_CHK_HEIGHT 0x113 | |
105 #define TVI_CONTROL_VID_SET_HEIGHT 0x114 | |
2937 | 106 #define TVI_CONTROL_VID_GET_BRIGHTNESS 0x115 |
107 #define TVI_CONTROL_VID_SET_BRIGHTNESS 0x116 | |
108 #define TVI_CONTROL_VID_GET_HUE 0x117 | |
109 #define TVI_CONTROL_VID_SET_HUE 0x118 | |
110 #define TVI_CONTROL_VID_GET_SATURATION 0x119 | |
111 #define TVI_CONTROL_VID_SET_SATURATION 0x11a | |
112 #define TVI_CONTROL_VID_GET_CONTRAST 0x11b | |
113 #define TVI_CONTROL_VID_SET_CONTRAST 0x11c | |
114 #define TVI_CONTROL_VID_GET_PICTURE 0x11d | |
115 #define TVI_CONTROL_VID_SET_PICTURE 0x11e | |
2790 | 116 |
2802 | 117 /* TUNER controls */ |
118 #define TVI_CONTROL_TUN_GET_FREQ 0x201 | |
119 #define TVI_CONTROL_TUN_SET_FREQ 0x202 | |
120 #define TVI_CONTROL_TUN_GET_TUNER 0x203 /* update priv->tuner struct for used input */ | |
121 #define TVI_CONTROL_TUN_SET_TUNER 0x204 /* update priv->tuner struct for used input */ | |
122 #define TVI_CONTROL_TUN_GET_NORM 0x205 | |
123 #define TVI_CONTROL_TUN_SET_NORM 0x206 | |
124 | |
125 /* AUDIO controls */ | |
126 #define TVI_CONTROL_AUD_GET_FORMAT 0x301 | |
127 #define TVI_CONTROL_AUD_GET_SAMPLERATE 0x302 | |
128 #define TVI_CONTROL_AUD_GET_SAMPLESIZE 0x303 | |
129 #define TVI_CONTROL_AUD_GET_CHANNELS 0x304 | |
5572
8cd761968f35
BSD-BT848 TV update patch by Charles Henrich <henrich@sigbus.com>
arpi
parents:
5098
diff
changeset
|
130 #define TVI_CONTROL_AUD_SET_SAMPLERATE 0x305 |
2802 | 131 |
132 /* SPECIFIC controls */ | |
133 #define TVI_CONTROL_SPC_GET_INPUT 0x401 /* set input channel (tv,s-video,composite..) */ | |
134 #define TVI_CONTROL_SPC_SET_INPUT 0x402 /* set input channel (tv,s-video,composite..) */ | |
135 | |
136 extern tvi_handle_t *tv_begin(void); | |
137 extern int tv_init(tvi_handle_t *tvh); | |
2931 | 138 extern int tv_uninit(tvi_handle_t *tvh); |
2790 | 139 |
2941
60c1b7c0ea21
added support for norm=,chanlist=,channel= and also on-the-fly channel chaning with keys
alex
parents:
2937
diff
changeset
|
140 int tv_set_color_options(tvi_handle_t *tvh, int opt, int val); |
2937 | 141 #define TV_COLOR_BRIGHTNESS 1 |
142 #define TV_COLOR_HUE 2 | |
143 #define TV_COLOR_SATURATION 3 | |
144 #define TV_COLOR_CONTRAST 4 | |
145 | |
2941
60c1b7c0ea21
added support for norm=,chanlist=,channel= and also on-the-fly channel chaning with keys
alex
parents:
2937
diff
changeset
|
146 int tv_step_channel(tvi_handle_t *tvh, int direction); |
60c1b7c0ea21
added support for norm=,chanlist=,channel= and also on-the-fly channel chaning with keys
alex
parents:
2937
diff
changeset
|
147 #define TV_CHANNEL_LOWER 1 |
60c1b7c0ea21
added support for norm=,chanlist=,channel= and also on-the-fly channel chaning with keys
alex
parents:
2937
diff
changeset
|
148 #define TV_CHANNEL_HIGHER 2 |
60c1b7c0ea21
added support for norm=,chanlist=,channel= and also on-the-fly channel chaning with keys
alex
parents:
2937
diff
changeset
|
149 |
60c1b7c0ea21
added support for norm=,chanlist=,channel= and also on-the-fly channel chaning with keys
alex
parents:
2937
diff
changeset
|
150 int tv_step_norm(tvi_handle_t *tvh); |
60c1b7c0ea21
added support for norm=,chanlist=,channel= and also on-the-fly channel chaning with keys
alex
parents:
2937
diff
changeset
|
151 int tv_step_chanlist(tvi_handle_t *tvh); |
60c1b7c0ea21
added support for norm=,chanlist=,channel= and also on-the-fly channel chaning with keys
alex
parents:
2937
diff
changeset
|
152 |
60c1b7c0ea21
added support for norm=,chanlist=,channel= and also on-the-fly channel chaning with keys
alex
parents:
2937
diff
changeset
|
153 #define TV_NORM_PAL 1 |
60c1b7c0ea21
added support for norm=,chanlist=,channel= and also on-the-fly channel chaning with keys
alex
parents:
2937
diff
changeset
|
154 #define TV_NORM_NTSC 2 |
60c1b7c0ea21
added support for norm=,chanlist=,channel= and also on-the-fly channel chaning with keys
alex
parents:
2937
diff
changeset
|
155 #define TV_NORM_SECAM 3 |
60c1b7c0ea21
added support for norm=,chanlist=,channel= and also on-the-fly channel chaning with keys
alex
parents:
2937
diff
changeset
|
156 |
2790 | 157 #endif /* USE_TV */ |
2941
60c1b7c0ea21
added support for norm=,chanlist=,channel= and also on-the-fly channel chaning with keys
alex
parents:
2937
diff
changeset
|
158 |
60c1b7c0ea21
added support for norm=,chanlist=,channel= and also on-the-fly channel chaning with keys
alex
parents:
2937
diff
changeset
|
159 #endif /* TV_H */ |