annotate libmpdemux/tv.c @ 3131:1356a5a69073

packed attribute added
author arpi
date Mon, 26 Nov 2001 01:14:17 +0000
parents 60c1b7c0ea21
children 49a0d462dffe
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
2790
98769cea155c added tv subsystem
alex
parents:
diff changeset
1 /*
98769cea155c added tv subsystem
alex
parents:
diff changeset
2 TV subsystem for libMPDemux by Alex
98769cea155c added tv subsystem
alex
parents:
diff changeset
3
98769cea155c added tv subsystem
alex
parents:
diff changeset
4 API idea based on libvo2's
98769cea155c added tv subsystem
alex
parents:
diff changeset
5
2931
bce9c945b29c tv interface update
alex
parents: 2842
diff changeset
6 UNDER HEAVY DEVELOPEMENT, NO FEATURE REQUESTS PLEASE! :)
2790
98769cea155c added tv subsystem
alex
parents:
diff changeset
7 */
98769cea155c added tv subsystem
alex
parents:
diff changeset
8
98769cea155c added tv subsystem
alex
parents:
diff changeset
9 #include <stdio.h>
98769cea155c added tv subsystem
alex
parents:
diff changeset
10 #include <stdlib.h>
98769cea155c added tv subsystem
alex
parents:
diff changeset
11 #include <unistd.h>
2932
fa3224774679 splitted demux_open_tv into two parts: stream_open_tv and demux_open_tv to support caching
alex
parents: 2931
diff changeset
12 #include <string.h>
2790
98769cea155c added tv subsystem
alex
parents:
diff changeset
13
98769cea155c added tv subsystem
alex
parents:
diff changeset
14 #include "config.h"
98769cea155c added tv subsystem
alex
parents:
diff changeset
15
2819
2e58962dc9fe cleaned up some warnings, and tv_param_on moved out from #ifdef USE_TV
alex
parents: 2818
diff changeset
16 int tv_param_on = 0;
2e58962dc9fe cleaned up some warnings, and tv_param_on moved out from #ifdef USE_TV
alex
parents: 2818
diff changeset
17
2790
98769cea155c added tv subsystem
alex
parents:
diff changeset
18 #ifdef USE_TV
98769cea155c added tv subsystem
alex
parents:
diff changeset
19 #include "mp_msg.h"
98769cea155c added tv subsystem
alex
parents:
diff changeset
20 #include "help_mp.h"
98769cea155c added tv subsystem
alex
parents:
diff changeset
21
98769cea155c added tv subsystem
alex
parents:
diff changeset
22 #include "stream.h"
98769cea155c added tv subsystem
alex
parents:
diff changeset
23 #include "demuxer.h"
98769cea155c added tv subsystem
alex
parents:
diff changeset
24 #include "stheader.h"
2830
596a6ba3520f never include files from public headers...
arpi
parents: 2819
diff changeset
25
596a6ba3520f never include files from public headers...
arpi
parents: 2819
diff changeset
26 #include "../libao2/afmt.h"
596a6ba3520f never include files from public headers...
arpi
parents: 2819
diff changeset
27 #include "../libvo/img_format.h"
596a6ba3520f never include files from public headers...
arpi
parents: 2819
diff changeset
28 #include "../libvo/fastmemcpy.h"
596a6ba3520f never include files from public headers...
arpi
parents: 2819
diff changeset
29
2802
09d5c9834580 tv update
alex
parents: 2790
diff changeset
30 #include "tv.h"
2790
98769cea155c added tv subsystem
alex
parents:
diff changeset
31
2941
60c1b7c0ea21 added support for norm=,chanlist=,channel= and also on-the-fly channel chaning with keys
alex
parents: 2937
diff changeset
32 #include "frequencies.h"
60c1b7c0ea21 added support for norm=,chanlist=,channel= and also on-the-fly channel chaning with keys
alex
parents: 2937
diff changeset
33
2790
98769cea155c added tv subsystem
alex
parents:
diff changeset
34 /* some default values */
2837
c63562f5f56f tuning worx (can set frequency)
alex
parents: 2830
diff changeset
35 char *tv_param_freq = NULL;
2932
fa3224774679 splitted demux_open_tv into two parts: stream_open_tv and demux_open_tv to support caching
alex
parents: 2931
diff changeset
36 char *tv_param_channel = "26"; /* hungarian national tv channel 1 */
2790
98769cea155c added tv subsystem
alex
parents:
diff changeset
37 char *tv_param_norm = "pal";
2941
60c1b7c0ea21 added support for norm=,chanlist=,channel= and also on-the-fly channel chaning with keys
alex
parents: 2937
diff changeset
38 char *tv_param_chanlist = "europe-east";
2790
98769cea155c added tv subsystem
alex
parents:
diff changeset
39 char *tv_param_device = NULL;
98769cea155c added tv subsystem
alex
parents:
diff changeset
40 char *tv_param_driver = "dummy";
98769cea155c added tv subsystem
alex
parents:
diff changeset
41 int tv_param_width = -1;
98769cea155c added tv subsystem
alex
parents:
diff changeset
42 int tv_param_height = -1;
2802
09d5c9834580 tv update
alex
parents: 2790
diff changeset
43 int tv_param_input = 0; /* used in v4l and bttv */
2817
cc93d9786954 added support for -tv outfmt
alex
parents: 2813
diff changeset
44 char *tv_param_outfmt = "yv12";
2790
98769cea155c added tv subsystem
alex
parents:
diff changeset
45
98769cea155c added tv subsystem
alex
parents:
diff changeset
46
98769cea155c added tv subsystem
alex
parents:
diff changeset
47 /* ================== DEMUX_TV ===================== */
98769cea155c added tv subsystem
alex
parents:
diff changeset
48 /*
98769cea155c added tv subsystem
alex
parents:
diff changeset
49 Return value:
98769cea155c added tv subsystem
alex
parents:
diff changeset
50 0 = EOF(?) or no stream
98769cea155c added tv subsystem
alex
parents:
diff changeset
51 1 = successfully read a packet
98769cea155c added tv subsystem
alex
parents:
diff changeset
52 */
98769cea155c added tv subsystem
alex
parents:
diff changeset
53 /* fill demux->video and demux->audio */
2802
09d5c9834580 tv update
alex
parents: 2790
diff changeset
54 int demux_tv_fill_buffer(demuxer_t *demux, tvi_handle_t *tvh)
2790
98769cea155c added tv subsystem
alex
parents:
diff changeset
55 {
2810
1f0bcdb49910 tv update
alex
parents: 2802
diff changeset
56 int seq = tvh->seq++;
2813
d6d88771f5ef demuxer fixed
arpi
parents: 2810
diff changeset
57 demux_packet_t* dp;
d6d88771f5ef demuxer fixed
arpi
parents: 2810
diff changeset
58 int len;
2932
fa3224774679 splitted demux_open_tv into two parts: stream_open_tv and demux_open_tv to support caching
alex
parents: 2931
diff changeset
59 sh_video_t *sh_video = demux->video->sh;
2790
98769cea155c added tv subsystem
alex
parents:
diff changeset
60
2931
bce9c945b29c tv interface update
alex
parents: 2842
diff changeset
61 mp_dbg(MSGT_DEMUX, MSGL_DBG2, "demux_tv_fill_buffer(sequence:%d) called!\n", seq);
2802
09d5c9834580 tv update
alex
parents: 2790
diff changeset
62
2813
d6d88771f5ef demuxer fixed
arpi
parents: 2810
diff changeset
63 // demux->filepos = -1;
2790
98769cea155c added tv subsystem
alex
parents:
diff changeset
64
2810
1f0bcdb49910 tv update
alex
parents: 2802
diff changeset
65 // seq++;
1f0bcdb49910 tv update
alex
parents: 2802
diff changeset
66 // tvh->seq++;
2802
09d5c9834580 tv update
alex
parents: 2790
diff changeset
67
2790
98769cea155c added tv subsystem
alex
parents:
diff changeset
68 /* ================== ADD VIDEO PACKET =================== */
2813
d6d88771f5ef demuxer fixed
arpi
parents: 2810
diff changeset
69 len = tvh->functions->get_video_framesize(tvh->priv);
2790
98769cea155c added tv subsystem
alex
parents:
diff changeset
70
2813
d6d88771f5ef demuxer fixed
arpi
parents: 2810
diff changeset
71 dp=new_demux_packet(len);
d6d88771f5ef demuxer fixed
arpi
parents: 2810
diff changeset
72 tvh->functions->grab_video_frame(tvh->priv, dp->buffer, len);
2932
fa3224774679 splitted demux_open_tv into two parts: stream_open_tv and demux_open_tv to support caching
alex
parents: 2931
diff changeset
73 dp->pts=seq/sh_video->fps; //(float)pts/90000.0f;
2813
d6d88771f5ef demuxer fixed
arpi
parents: 2810
diff changeset
74 //dp->pos=pos;
d6d88771f5ef demuxer fixed
arpi
parents: 2810
diff changeset
75 //dp->flags=flags;
d6d88771f5ef demuxer fixed
arpi
parents: 2810
diff changeset
76 // append packet to DS stream:
d6d88771f5ef demuxer fixed
arpi
parents: 2810
diff changeset
77 ds_add_packet(demux->video,dp);
2790
98769cea155c added tv subsystem
alex
parents:
diff changeset
78
98769cea155c added tv subsystem
alex
parents:
diff changeset
79 /* ================== ADD AUDIO PACKET =================== */
2802
09d5c9834580 tv update
alex
parents: 2790
diff changeset
80 if (tvh->functions->control(tvh->priv, TVI_CONTROL_IS_AUDIO, 0) != TVI_CONTROL_TRUE)
09d5c9834580 tv update
alex
parents: 2790
diff changeset
81 return 1; /* no audio, only video */
09d5c9834580 tv update
alex
parents: 2790
diff changeset
82
2813
d6d88771f5ef demuxer fixed
arpi
parents: 2810
diff changeset
83 len = tvh->functions->get_audio_framesize(tvh->priv);
d6d88771f5ef demuxer fixed
arpi
parents: 2810
diff changeset
84
d6d88771f5ef demuxer fixed
arpi
parents: 2810
diff changeset
85 dp=new_demux_packet(len);
d6d88771f5ef demuxer fixed
arpi
parents: 2810
diff changeset
86 tvh->functions->grab_audio_frame(tvh->priv, dp->buffer, len);
d6d88771f5ef demuxer fixed
arpi
parents: 2810
diff changeset
87 //dp->pts=pts; //(float)pts/90000.0f;
d6d88771f5ef demuxer fixed
arpi
parents: 2810
diff changeset
88 //dp->pos=pos;
d6d88771f5ef demuxer fixed
arpi
parents: 2810
diff changeset
89 //dp->flags=flags;
d6d88771f5ef demuxer fixed
arpi
parents: 2810
diff changeset
90 // append packet to DS stream:
d6d88771f5ef demuxer fixed
arpi
parents: 2810
diff changeset
91 ds_add_packet(demux->audio,dp);
2790
98769cea155c added tv subsystem
alex
parents:
diff changeset
92
98769cea155c added tv subsystem
alex
parents:
diff changeset
93 return 1;
98769cea155c added tv subsystem
alex
parents:
diff changeset
94 }
98769cea155c added tv subsystem
alex
parents:
diff changeset
95
2931
bce9c945b29c tv interface update
alex
parents: 2842
diff changeset
96 int stream_open_tv(stream_t *stream, tvi_handle_t *tvh)
bce9c945b29c tv interface update
alex
parents: 2842
diff changeset
97 {
2941
60c1b7c0ea21 added support for norm=,chanlist=,channel= and also on-the-fly channel chaning with keys
alex
parents: 2937
diff changeset
98 int i;
2932
fa3224774679 splitted demux_open_tv into two parts: stream_open_tv and demux_open_tv to support caching
alex
parents: 2931
diff changeset
99 tvi_functions_t *funcs = tvh->functions;
fa3224774679 splitted demux_open_tv into two parts: stream_open_tv and demux_open_tv to support caching
alex
parents: 2931
diff changeset
100 int picture_format = 0;
fa3224774679 splitted demux_open_tv into two parts: stream_open_tv and demux_open_tv to support caching
alex
parents: 2931
diff changeset
101
fa3224774679 splitted demux_open_tv into two parts: stream_open_tv and demux_open_tv to support caching
alex
parents: 2931
diff changeset
102 if (funcs->control(tvh->priv, TVI_CONTROL_IS_VIDEO, 0) != TVI_CONTROL_TRUE)
fa3224774679 splitted demux_open_tv into two parts: stream_open_tv and demux_open_tv to support caching
alex
parents: 2931
diff changeset
103 {
fa3224774679 splitted demux_open_tv into two parts: stream_open_tv and demux_open_tv to support caching
alex
parents: 2931
diff changeset
104 mp_msg(MSGT_TV, MSGL_ERR, "Error: no video input present!\n");
fa3224774679 splitted demux_open_tv into two parts: stream_open_tv and demux_open_tv to support caching
alex
parents: 2931
diff changeset
105 return;
fa3224774679 splitted demux_open_tv into two parts: stream_open_tv and demux_open_tv to support caching
alex
parents: 2931
diff changeset
106 }
fa3224774679 splitted demux_open_tv into two parts: stream_open_tv and demux_open_tv to support caching
alex
parents: 2931
diff changeset
107
fa3224774679 splitted demux_open_tv into two parts: stream_open_tv and demux_open_tv to support caching
alex
parents: 2931
diff changeset
108 if (!strcasecmp(tv_param_outfmt, "yv12"))
fa3224774679 splitted demux_open_tv into two parts: stream_open_tv and demux_open_tv to support caching
alex
parents: 2931
diff changeset
109 picture_format = IMGFMT_YV12;
fa3224774679 splitted demux_open_tv into two parts: stream_open_tv and demux_open_tv to support caching
alex
parents: 2931
diff changeset
110 else if (!strcasecmp(tv_param_outfmt, "uyvy"))
fa3224774679 splitted demux_open_tv into two parts: stream_open_tv and demux_open_tv to support caching
alex
parents: 2931
diff changeset
111 picture_format = IMGFMT_UYVY;
fa3224774679 splitted demux_open_tv into two parts: stream_open_tv and demux_open_tv to support caching
alex
parents: 2931
diff changeset
112 else if (!strcasecmp(tv_param_outfmt, "rgb32"))
fa3224774679 splitted demux_open_tv into two parts: stream_open_tv and demux_open_tv to support caching
alex
parents: 2931
diff changeset
113 picture_format = IMGFMT_RGB32;
fa3224774679 splitted demux_open_tv into two parts: stream_open_tv and demux_open_tv to support caching
alex
parents: 2931
diff changeset
114 else if (!strcasecmp(tv_param_outfmt, "rgb24"))
fa3224774679 splitted demux_open_tv into two parts: stream_open_tv and demux_open_tv to support caching
alex
parents: 2931
diff changeset
115 picture_format = IMGFMT_RGB24;
fa3224774679 splitted demux_open_tv into two parts: stream_open_tv and demux_open_tv to support caching
alex
parents: 2931
diff changeset
116 else if (!strcasecmp(tv_param_outfmt, "rgb16"))
fa3224774679 splitted demux_open_tv into two parts: stream_open_tv and demux_open_tv to support caching
alex
parents: 2931
diff changeset
117 picture_format = IMGFMT_RGB16;
fa3224774679 splitted demux_open_tv into two parts: stream_open_tv and demux_open_tv to support caching
alex
parents: 2931
diff changeset
118 else if (!strcasecmp(tv_param_outfmt, "rgb15"))
fa3224774679 splitted demux_open_tv into two parts: stream_open_tv and demux_open_tv to support caching
alex
parents: 2931
diff changeset
119 picture_format = IMGFMT_RGB15;
fa3224774679 splitted demux_open_tv into two parts: stream_open_tv and demux_open_tv to support caching
alex
parents: 2931
diff changeset
120 else
fa3224774679 splitted demux_open_tv into two parts: stream_open_tv and demux_open_tv to support caching
alex
parents: 2931
diff changeset
121 {
fa3224774679 splitted demux_open_tv into two parts: stream_open_tv and demux_open_tv to support caching
alex
parents: 2931
diff changeset
122 mp_msg(MSGT_TV, MSGL_ERR, "Unknown format given: %s\n", tv_param_outfmt);
fa3224774679 splitted demux_open_tv into two parts: stream_open_tv and demux_open_tv to support caching
alex
parents: 2931
diff changeset
123 mp_msg(MSGT_TV, MSGL_INFO, "Using default: Planar YV12\n");
fa3224774679 splitted demux_open_tv into two parts: stream_open_tv and demux_open_tv to support caching
alex
parents: 2931
diff changeset
124 picture_format = IMGFMT_YV12;
fa3224774679 splitted demux_open_tv into two parts: stream_open_tv and demux_open_tv to support caching
alex
parents: 2931
diff changeset
125 }
fa3224774679 splitted demux_open_tv into two parts: stream_open_tv and demux_open_tv to support caching
alex
parents: 2931
diff changeset
126 funcs->control(tvh->priv, TVI_CONTROL_VID_SET_FORMAT, &picture_format);
fa3224774679 splitted demux_open_tv into two parts: stream_open_tv and demux_open_tv to support caching
alex
parents: 2931
diff changeset
127
fa3224774679 splitted demux_open_tv into two parts: stream_open_tv and demux_open_tv to support caching
alex
parents: 2931
diff changeset
128 /* set width */
fa3224774679 splitted demux_open_tv into two parts: stream_open_tv and demux_open_tv to support caching
alex
parents: 2931
diff changeset
129 if (tv_param_width != -1)
fa3224774679 splitted demux_open_tv into two parts: stream_open_tv and demux_open_tv to support caching
alex
parents: 2931
diff changeset
130 {
fa3224774679 splitted demux_open_tv into two parts: stream_open_tv and demux_open_tv to support caching
alex
parents: 2931
diff changeset
131 if (funcs->control(tvh->priv, TVI_CONTROL_VID_CHK_WIDTH, &tv_param_width) == TVI_CONTROL_TRUE)
fa3224774679 splitted demux_open_tv into two parts: stream_open_tv and demux_open_tv to support caching
alex
parents: 2931
diff changeset
132 funcs->control(tvh->priv, TVI_CONTROL_VID_SET_WIDTH, &tv_param_width);
fa3224774679 splitted demux_open_tv into two parts: stream_open_tv and demux_open_tv to support caching
alex
parents: 2931
diff changeset
133 else
fa3224774679 splitted demux_open_tv into two parts: stream_open_tv and demux_open_tv to support caching
alex
parents: 2931
diff changeset
134 {
fa3224774679 splitted demux_open_tv into two parts: stream_open_tv and demux_open_tv to support caching
alex
parents: 2931
diff changeset
135 mp_msg(MSGT_TV, MSGL_ERR, "Unable set requested width: %d\n", tv_param_width);
fa3224774679 splitted demux_open_tv into two parts: stream_open_tv and demux_open_tv to support caching
alex
parents: 2931
diff changeset
136 funcs->control(tvh->priv, TVI_CONTROL_VID_GET_WIDTH, &tv_param_width);
fa3224774679 splitted demux_open_tv into two parts: stream_open_tv and demux_open_tv to support caching
alex
parents: 2931
diff changeset
137 }
fa3224774679 splitted demux_open_tv into two parts: stream_open_tv and demux_open_tv to support caching
alex
parents: 2931
diff changeset
138 }
fa3224774679 splitted demux_open_tv into two parts: stream_open_tv and demux_open_tv to support caching
alex
parents: 2931
diff changeset
139
fa3224774679 splitted demux_open_tv into two parts: stream_open_tv and demux_open_tv to support caching
alex
parents: 2931
diff changeset
140 /* set height */
fa3224774679 splitted demux_open_tv into two parts: stream_open_tv and demux_open_tv to support caching
alex
parents: 2931
diff changeset
141 if (tv_param_height != -1)
fa3224774679 splitted demux_open_tv into two parts: stream_open_tv and demux_open_tv to support caching
alex
parents: 2931
diff changeset
142 {
fa3224774679 splitted demux_open_tv into two parts: stream_open_tv and demux_open_tv to support caching
alex
parents: 2931
diff changeset
143 if (funcs->control(tvh->priv, TVI_CONTROL_VID_CHK_HEIGHT, &tv_param_height) == TVI_CONTROL_TRUE)
fa3224774679 splitted demux_open_tv into two parts: stream_open_tv and demux_open_tv to support caching
alex
parents: 2931
diff changeset
144 funcs->control(tvh->priv, TVI_CONTROL_VID_SET_HEIGHT, &tv_param_height);
fa3224774679 splitted demux_open_tv into two parts: stream_open_tv and demux_open_tv to support caching
alex
parents: 2931
diff changeset
145 else
fa3224774679 splitted demux_open_tv into two parts: stream_open_tv and demux_open_tv to support caching
alex
parents: 2931
diff changeset
146 {
fa3224774679 splitted demux_open_tv into two parts: stream_open_tv and demux_open_tv to support caching
alex
parents: 2931
diff changeset
147 mp_msg(MSGT_TV, MSGL_ERR, "Unable set requested height: %d\n", tv_param_height);
fa3224774679 splitted demux_open_tv into two parts: stream_open_tv and demux_open_tv to support caching
alex
parents: 2931
diff changeset
148 funcs->control(tvh->priv, TVI_CONTROL_VID_GET_HEIGHT, &tv_param_height);
fa3224774679 splitted demux_open_tv into two parts: stream_open_tv and demux_open_tv to support caching
alex
parents: 2931
diff changeset
149 }
fa3224774679 splitted demux_open_tv into two parts: stream_open_tv and demux_open_tv to support caching
alex
parents: 2931
diff changeset
150 }
fa3224774679 splitted demux_open_tv into two parts: stream_open_tv and demux_open_tv to support caching
alex
parents: 2931
diff changeset
151
fa3224774679 splitted demux_open_tv into two parts: stream_open_tv and demux_open_tv to support caching
alex
parents: 2931
diff changeset
152 /* set some params got from cmdline */
fa3224774679 splitted demux_open_tv into two parts: stream_open_tv and demux_open_tv to support caching
alex
parents: 2931
diff changeset
153 funcs->control(tvh->priv, TVI_CONTROL_SPC_SET_INPUT, &tv_param_input);
fa3224774679 splitted demux_open_tv into two parts: stream_open_tv and demux_open_tv to support caching
alex
parents: 2931
diff changeset
154
fa3224774679 splitted demux_open_tv into two parts: stream_open_tv and demux_open_tv to support caching
alex
parents: 2931
diff changeset
155 /* we need to set frequency */
fa3224774679 splitted demux_open_tv into two parts: stream_open_tv and demux_open_tv to support caching
alex
parents: 2931
diff changeset
156 if (tv_param_freq && (funcs->control(tvh->priv, TVI_CONTROL_IS_TUNER, 0) == TVI_CONTROL_TRUE))
fa3224774679 splitted demux_open_tv into two parts: stream_open_tv and demux_open_tv to support caching
alex
parents: 2931
diff changeset
157 {
fa3224774679 splitted demux_open_tv into two parts: stream_open_tv and demux_open_tv to support caching
alex
parents: 2931
diff changeset
158 unsigned long freq = atof(tv_param_freq)*16;
fa3224774679 splitted demux_open_tv into two parts: stream_open_tv and demux_open_tv to support caching
alex
parents: 2931
diff changeset
159
fa3224774679 splitted demux_open_tv into two parts: stream_open_tv and demux_open_tv to support caching
alex
parents: 2931
diff changeset
160 /* set freq in MHz */
fa3224774679 splitted demux_open_tv into two parts: stream_open_tv and demux_open_tv to support caching
alex
parents: 2931
diff changeset
161 funcs->control(tvh->priv, TVI_CONTROL_TUN_SET_FREQ, &freq);
fa3224774679 splitted demux_open_tv into two parts: stream_open_tv and demux_open_tv to support caching
alex
parents: 2931
diff changeset
162
fa3224774679 splitted demux_open_tv into two parts: stream_open_tv and demux_open_tv to support caching
alex
parents: 2931
diff changeset
163 funcs->control(tvh->priv, TVI_CONTROL_TUN_GET_FREQ, &freq);
fa3224774679 splitted demux_open_tv into two parts: stream_open_tv and demux_open_tv to support caching
alex
parents: 2931
diff changeset
164 mp_msg(MSGT_TV, MSGL_INFO, "Current frequency: %lu (%.3f)\n",
fa3224774679 splitted demux_open_tv into two parts: stream_open_tv and demux_open_tv to support caching
alex
parents: 2931
diff changeset
165 freq, (float)freq/16);
fa3224774679 splitted demux_open_tv into two parts: stream_open_tv and demux_open_tv to support caching
alex
parents: 2931
diff changeset
166 }
2941
60c1b7c0ea21 added support for norm=,chanlist=,channel= and also on-the-fly channel chaning with keys
alex
parents: 2937
diff changeset
167
60c1b7c0ea21 added support for norm=,chanlist=,channel= and also on-the-fly channel chaning with keys
alex
parents: 2937
diff changeset
168 /* select video norm */
60c1b7c0ea21 added support for norm=,chanlist=,channel= and also on-the-fly channel chaning with keys
alex
parents: 2937
diff changeset
169 if (!strcasecmp(tv_param_norm, "pal"))
60c1b7c0ea21 added support for norm=,chanlist=,channel= and also on-the-fly channel chaning with keys
alex
parents: 2937
diff changeset
170 tvh->norm = TV_NORM_PAL;
60c1b7c0ea21 added support for norm=,chanlist=,channel= and also on-the-fly channel chaning with keys
alex
parents: 2937
diff changeset
171 else if (!strcasecmp(tv_param_norm, "ntsc"))
60c1b7c0ea21 added support for norm=,chanlist=,channel= and also on-the-fly channel chaning with keys
alex
parents: 2937
diff changeset
172 tvh->norm = TV_NORM_NTSC;
60c1b7c0ea21 added support for norm=,chanlist=,channel= and also on-the-fly channel chaning with keys
alex
parents: 2937
diff changeset
173 else if (!strcasecmp(tv_param_norm, "secam"))
60c1b7c0ea21 added support for norm=,chanlist=,channel= and also on-the-fly channel chaning with keys
alex
parents: 2937
diff changeset
174 tvh->norm = TV_NORM_SECAM;
60c1b7c0ea21 added support for norm=,chanlist=,channel= and also on-the-fly channel chaning with keys
alex
parents: 2937
diff changeset
175
60c1b7c0ea21 added support for norm=,chanlist=,channel= and also on-the-fly channel chaning with keys
alex
parents: 2937
diff changeset
176 mp_msg(MSGT_TV, MSGL_INFO, "Selected norm: %s\n", tv_param_norm);
60c1b7c0ea21 added support for norm=,chanlist=,channel= and also on-the-fly channel chaning with keys
alex
parents: 2937
diff changeset
177
60c1b7c0ea21 added support for norm=,chanlist=,channel= and also on-the-fly channel chaning with keys
alex
parents: 2937
diff changeset
178 /* select channel list */
60c1b7c0ea21 added support for norm=,chanlist=,channel= and also on-the-fly channel chaning with keys
alex
parents: 2937
diff changeset
179 for (i = 0; chanlists[i].name != NULL; i++)
60c1b7c0ea21 added support for norm=,chanlist=,channel= and also on-the-fly channel chaning with keys
alex
parents: 2937
diff changeset
180 {
60c1b7c0ea21 added support for norm=,chanlist=,channel= and also on-the-fly channel chaning with keys
alex
parents: 2937
diff changeset
181 if (!strcasecmp(chanlists[i].name, tv_param_chanlist))
60c1b7c0ea21 added support for norm=,chanlist=,channel= and also on-the-fly channel chaning with keys
alex
parents: 2937
diff changeset
182 {
60c1b7c0ea21 added support for norm=,chanlist=,channel= and also on-the-fly channel chaning with keys
alex
parents: 2937
diff changeset
183 tvh->chanlist = i;
60c1b7c0ea21 added support for norm=,chanlist=,channel= and also on-the-fly channel chaning with keys
alex
parents: 2937
diff changeset
184 tvh->chanlist_s = chanlists[i].list;
60c1b7c0ea21 added support for norm=,chanlist=,channel= and also on-the-fly channel chaning with keys
alex
parents: 2937
diff changeset
185 break;
60c1b7c0ea21 added support for norm=,chanlist=,channel= and also on-the-fly channel chaning with keys
alex
parents: 2937
diff changeset
186 }
60c1b7c0ea21 added support for norm=,chanlist=,channel= and also on-the-fly channel chaning with keys
alex
parents: 2937
diff changeset
187 }
60c1b7c0ea21 added support for norm=,chanlist=,channel= and also on-the-fly channel chaning with keys
alex
parents: 2937
diff changeset
188
60c1b7c0ea21 added support for norm=,chanlist=,channel= and also on-the-fly channel chaning with keys
alex
parents: 2937
diff changeset
189 if (tvh->chanlist == -1)
60c1b7c0ea21 added support for norm=,chanlist=,channel= and also on-the-fly channel chaning with keys
alex
parents: 2937
diff changeset
190 mp_msg(MSGT_TV, MSGL_WARN, "Unable to find selected channel list! (%s)\n",
60c1b7c0ea21 added support for norm=,chanlist=,channel= and also on-the-fly channel chaning with keys
alex
parents: 2937
diff changeset
191 tv_param_chanlist);
60c1b7c0ea21 added support for norm=,chanlist=,channel= and also on-the-fly channel chaning with keys
alex
parents: 2937
diff changeset
192
60c1b7c0ea21 added support for norm=,chanlist=,channel= and also on-the-fly channel chaning with keys
alex
parents: 2937
diff changeset
193 mp_msg(MSGT_TV, MSGL_INFO, "Selected channel list: %s (including %d channels)\n",
60c1b7c0ea21 added support for norm=,chanlist=,channel= and also on-the-fly channel chaning with keys
alex
parents: 2937
diff changeset
194 chanlists[tvh->chanlist].name, chanlists[tvh->chanlist].count);
60c1b7c0ea21 added support for norm=,chanlist=,channel= and also on-the-fly channel chaning with keys
alex
parents: 2937
diff changeset
195
60c1b7c0ea21 added support for norm=,chanlist=,channel= and also on-the-fly channel chaning with keys
alex
parents: 2937
diff changeset
196 if (tv_param_freq && tv_param_channel)
60c1b7c0ea21 added support for norm=,chanlist=,channel= and also on-the-fly channel chaning with keys
alex
parents: 2937
diff changeset
197 mp_msg(MSGT_TV, MSGL_HINT, "You can't set frequency and channel simultanly!\n");
60c1b7c0ea21 added support for norm=,chanlist=,channel= and also on-the-fly channel chaning with keys
alex
parents: 2937
diff changeset
198
60c1b7c0ea21 added support for norm=,chanlist=,channel= and also on-the-fly channel chaning with keys
alex
parents: 2937
diff changeset
199 if (!tv_param_freq && tv_param_channel)
60c1b7c0ea21 added support for norm=,chanlist=,channel= and also on-the-fly channel chaning with keys
alex
parents: 2937
diff changeset
200 {
60c1b7c0ea21 added support for norm=,chanlist=,channel= and also on-the-fly channel chaning with keys
alex
parents: 2937
diff changeset
201 struct CHANLIST cl;
60c1b7c0ea21 added support for norm=,chanlist=,channel= and also on-the-fly channel chaning with keys
alex
parents: 2937
diff changeset
202 for (i = 0; i < chanlists[tvh->chanlist].count; i++)
60c1b7c0ea21 added support for norm=,chanlist=,channel= and also on-the-fly channel chaning with keys
alex
parents: 2937
diff changeset
203 {
60c1b7c0ea21 added support for norm=,chanlist=,channel= and also on-the-fly channel chaning with keys
alex
parents: 2937
diff changeset
204 cl = tvh->chanlist_s[i];
60c1b7c0ea21 added support for norm=,chanlist=,channel= and also on-the-fly channel chaning with keys
alex
parents: 2937
diff changeset
205 // printf("count%d: name: %s, freq: %d\n",
60c1b7c0ea21 added support for norm=,chanlist=,channel= and also on-the-fly channel chaning with keys
alex
parents: 2937
diff changeset
206 // i, cl.name, cl.freq);
60c1b7c0ea21 added support for norm=,chanlist=,channel= and also on-the-fly channel chaning with keys
alex
parents: 2937
diff changeset
207 if (!strcasecmp(cl.name, tv_param_channel))
60c1b7c0ea21 added support for norm=,chanlist=,channel= and also on-the-fly channel chaning with keys
alex
parents: 2937
diff changeset
208 {
60c1b7c0ea21 added support for norm=,chanlist=,channel= and also on-the-fly channel chaning with keys
alex
parents: 2937
diff changeset
209 tvh->channel = i;
60c1b7c0ea21 added support for norm=,chanlist=,channel= and also on-the-fly channel chaning with keys
alex
parents: 2937
diff changeset
210 mp_msg(MSGT_TV, MSGL_INFO, "Selected channel: %s (freq: %.3f)\n",
60c1b7c0ea21 added support for norm=,chanlist=,channel= and also on-the-fly channel chaning with keys
alex
parents: 2937
diff changeset
211 cl.name, (float)cl.freq/1000);
60c1b7c0ea21 added support for norm=,chanlist=,channel= and also on-the-fly channel chaning with keys
alex
parents: 2937
diff changeset
212 tv_set_freq(tvh, (unsigned long)(((float)cl.freq/1000)*16));
60c1b7c0ea21 added support for norm=,chanlist=,channel= and also on-the-fly channel chaning with keys
alex
parents: 2937
diff changeset
213 break;
60c1b7c0ea21 added support for norm=,chanlist=,channel= and also on-the-fly channel chaning with keys
alex
parents: 2937
diff changeset
214 }
60c1b7c0ea21 added support for norm=,chanlist=,channel= and also on-the-fly channel chaning with keys
alex
parents: 2937
diff changeset
215 }
60c1b7c0ea21 added support for norm=,chanlist=,channel= and also on-the-fly channel chaning with keys
alex
parents: 2937
diff changeset
216 }
2932
fa3224774679 splitted demux_open_tv into two parts: stream_open_tv and demux_open_tv to support caching
alex
parents: 2931
diff changeset
217
fa3224774679 splitted demux_open_tv into two parts: stream_open_tv and demux_open_tv to support caching
alex
parents: 2931
diff changeset
218 /* also start device! */
fa3224774679 splitted demux_open_tv into two parts: stream_open_tv and demux_open_tv to support caching
alex
parents: 2931
diff changeset
219 return(funcs->start(tvh->priv));
2931
bce9c945b29c tv interface update
alex
parents: 2842
diff changeset
220 }
bce9c945b29c tv interface update
alex
parents: 2842
diff changeset
221
2802
09d5c9834580 tv update
alex
parents: 2790
diff changeset
222 int demux_open_tv(demuxer_t *demuxer, tvi_handle_t *tvh)
2790
98769cea155c added tv subsystem
alex
parents:
diff changeset
223 {
2802
09d5c9834580 tv update
alex
parents: 2790
diff changeset
224 sh_video_t *sh_video = NULL;
09d5c9834580 tv update
alex
parents: 2790
diff changeset
225 sh_audio_t *sh_audio = NULL;
2790
98769cea155c added tv subsystem
alex
parents:
diff changeset
226 tvi_functions_t *funcs = tvh->functions;
98769cea155c added tv subsystem
alex
parents:
diff changeset
227
2802
09d5c9834580 tv update
alex
parents: 2790
diff changeset
228 sh_video = new_sh_video(demuxer, 0);
2790
98769cea155c added tv subsystem
alex
parents:
diff changeset
229
2932
fa3224774679 splitted demux_open_tv into two parts: stream_open_tv and demux_open_tv to support caching
alex
parents: 2931
diff changeset
230 /* get IMAGE FORMAT */
2802
09d5c9834580 tv update
alex
parents: 2790
diff changeset
231 funcs->control(tvh->priv, TVI_CONTROL_VID_GET_FORMAT, &sh_video->format);
2810
1f0bcdb49910 tv update
alex
parents: 2802
diff changeset
232 // if (IMGFMT_IS_RGB(sh_video->format) || IMGFMT_IS_BGR(sh_video->format))
2802
09d5c9834580 tv update
alex
parents: 2790
diff changeset
233 sh_video->format = 0x0;
09d5c9834580 tv update
alex
parents: 2790
diff changeset
234
09d5c9834580 tv update
alex
parents: 2790
diff changeset
235 /* set FPS and FRAMETIME */
2790
98769cea155c added tv subsystem
alex
parents:
diff changeset
236 if(!sh_video->fps)
98769cea155c added tv subsystem
alex
parents:
diff changeset
237 {
98769cea155c added tv subsystem
alex
parents:
diff changeset
238 if (funcs->control(tvh->priv, TVI_CONTROL_VID_GET_FPS, &sh_video->fps) != TVI_CONTROL_TRUE)
2932
fa3224774679 splitted demux_open_tv into two parts: stream_open_tv and demux_open_tv to support caching
alex
parents: 2931
diff changeset
239 sh_video->fps = 25.0f; /* on PAL */
2790
98769cea155c added tv subsystem
alex
parents:
diff changeset
240 }
98769cea155c added tv subsystem
alex
parents:
diff changeset
241 sh_video->frametime = 1.0f/sh_video->fps;
98769cea155c added tv subsystem
alex
parents:
diff changeset
242
98769cea155c added tv subsystem
alex
parents:
diff changeset
243 /* set width */
2932
fa3224774679 splitted demux_open_tv into two parts: stream_open_tv and demux_open_tv to support caching
alex
parents: 2931
diff changeset
244 funcs->control(tvh->priv, TVI_CONTROL_VID_GET_WIDTH, &sh_video->disp_w);
2790
98769cea155c added tv subsystem
alex
parents:
diff changeset
245
98769cea155c added tv subsystem
alex
parents:
diff changeset
246 /* set height */
2932
fa3224774679 splitted demux_open_tv into two parts: stream_open_tv and demux_open_tv to support caching
alex
parents: 2931
diff changeset
247 funcs->control(tvh->priv, TVI_CONTROL_VID_GET_HEIGHT, &sh_video->disp_h);
2802
09d5c9834580 tv update
alex
parents: 2790
diff changeset
248
2818
9f68d309f8cb printf's changed into mp_msg
alex
parents: 2817
diff changeset
249 mp_msg(MSGT_TV, MSGL_INFO, "Output size: %dx%d\n", sh_video->disp_w, sh_video->disp_h);
2790
98769cea155c added tv subsystem
alex
parents:
diff changeset
250
98769cea155c added tv subsystem
alex
parents:
diff changeset
251 demuxer->video->sh = sh_video;
98769cea155c added tv subsystem
alex
parents:
diff changeset
252 sh_video->ds = demuxer->video;
98769cea155c added tv subsystem
alex
parents:
diff changeset
253 demuxer->video->id = 0;
2932
fa3224774679 splitted demux_open_tv into two parts: stream_open_tv and demux_open_tv to support caching
alex
parents: 2931
diff changeset
254
fa3224774679 splitted demux_open_tv into two parts: stream_open_tv and demux_open_tv to support caching
alex
parents: 2931
diff changeset
255 // demuxer->seekable = 0;
2790
98769cea155c added tv subsystem
alex
parents:
diff changeset
256
98769cea155c added tv subsystem
alex
parents:
diff changeset
257 /* here comes audio init */
2802
09d5c9834580 tv update
alex
parents: 2790
diff changeset
258 if (funcs->control(tvh->priv, TVI_CONTROL_IS_AUDIO, 0) == TVI_CONTROL_TRUE)
09d5c9834580 tv update
alex
parents: 2790
diff changeset
259 {
09d5c9834580 tv update
alex
parents: 2790
diff changeset
260 int audio_format;
09d5c9834580 tv update
alex
parents: 2790
diff changeset
261
09d5c9834580 tv update
alex
parents: 2790
diff changeset
262 sh_audio = new_sh_audio(demuxer, 0);
09d5c9834580 tv update
alex
parents: 2790
diff changeset
263
09d5c9834580 tv update
alex
parents: 2790
diff changeset
264 sh_audio->wf = malloc(sizeof(WAVEFORMATEX));
09d5c9834580 tv update
alex
parents: 2790
diff changeset
265 memset(sh_audio->wf, 0, sizeof(WAVEFORMATEX));
09d5c9834580 tv update
alex
parents: 2790
diff changeset
266
09d5c9834580 tv update
alex
parents: 2790
diff changeset
267 /* yeah, audio is present */
09d5c9834580 tv update
alex
parents: 2790
diff changeset
268 if (funcs->control(tvh->priv, TVI_CONTROL_AUD_GET_FORMAT, &audio_format) != TVI_CONTROL_TRUE)
09d5c9834580 tv update
alex
parents: 2790
diff changeset
269 goto no_audio;
09d5c9834580 tv update
alex
parents: 2790
diff changeset
270 switch(audio_format)
09d5c9834580 tv update
alex
parents: 2790
diff changeset
271 {
09d5c9834580 tv update
alex
parents: 2790
diff changeset
272 case AFMT_U8:
09d5c9834580 tv update
alex
parents: 2790
diff changeset
273 case AFMT_S8:
09d5c9834580 tv update
alex
parents: 2790
diff changeset
274 case AFMT_U16_LE:
09d5c9834580 tv update
alex
parents: 2790
diff changeset
275 case AFMT_U16_BE:
09d5c9834580 tv update
alex
parents: 2790
diff changeset
276 case AFMT_S16_LE:
09d5c9834580 tv update
alex
parents: 2790
diff changeset
277 case AFMT_S16_BE:
09d5c9834580 tv update
alex
parents: 2790
diff changeset
278 case AFMT_S32_LE:
09d5c9834580 tv update
alex
parents: 2790
diff changeset
279 case AFMT_S32_BE:
09d5c9834580 tv update
alex
parents: 2790
diff changeset
280 sh_audio->format = 0x1; /* PCM */
09d5c9834580 tv update
alex
parents: 2790
diff changeset
281 break;
09d5c9834580 tv update
alex
parents: 2790
diff changeset
282 case AFMT_IMA_ADPCM:
09d5c9834580 tv update
alex
parents: 2790
diff changeset
283 case AFMT_MU_LAW:
09d5c9834580 tv update
alex
parents: 2790
diff changeset
284 case AFMT_A_LAW:
09d5c9834580 tv update
alex
parents: 2790
diff changeset
285 case AFMT_MPEG:
09d5c9834580 tv update
alex
parents: 2790
diff changeset
286 case AFMT_AC3:
09d5c9834580 tv update
alex
parents: 2790
diff changeset
287 default:
2818
9f68d309f8cb printf's changed into mp_msg
alex
parents: 2817
diff changeset
288 mp_msg(MSGT_TV, MSGL_ERR, "Audio type '%s' unsupported!\n", audio_out_format_name(audio_format));
2802
09d5c9834580 tv update
alex
parents: 2790
diff changeset
289 goto no_audio;
09d5c9834580 tv update
alex
parents: 2790
diff changeset
290 }
09d5c9834580 tv update
alex
parents: 2790
diff changeset
291
09d5c9834580 tv update
alex
parents: 2790
diff changeset
292 funcs->control(tvh->priv, TVI_CONTROL_AUD_GET_CHANNELS, &sh_audio->wf->nChannels);
09d5c9834580 tv update
alex
parents: 2790
diff changeset
293 funcs->control(tvh->priv, TVI_CONTROL_AUD_GET_SAMPLERATE, &sh_audio->wf->nSamplesPerSec);
09d5c9834580 tv update
alex
parents: 2790
diff changeset
294 funcs->control(tvh->priv, TVI_CONTROL_AUD_GET_SAMPLESIZE, &sh_audio->wf->nAvgBytesPerSec);
09d5c9834580 tv update
alex
parents: 2790
diff changeset
295
09d5c9834580 tv update
alex
parents: 2790
diff changeset
296 demuxer->audio->sh = sh_audio;
09d5c9834580 tv update
alex
parents: 2790
diff changeset
297 sh_audio->ds = demuxer->audio;
09d5c9834580 tv update
alex
parents: 2790
diff changeset
298 demuxer->audio->id = 0;
09d5c9834580 tv update
alex
parents: 2790
diff changeset
299 }
09d5c9834580 tv update
alex
parents: 2790
diff changeset
300 no_audio:
09d5c9834580 tv update
alex
parents: 2790
diff changeset
301
2932
fa3224774679 splitted demux_open_tv into two parts: stream_open_tv and demux_open_tv to support caching
alex
parents: 2931
diff changeset
302 return(1);
2790
98769cea155c added tv subsystem
alex
parents:
diff changeset
303 }
98769cea155c added tv subsystem
alex
parents:
diff changeset
304
98769cea155c added tv subsystem
alex
parents:
diff changeset
305 /* ================== STREAM_TV ===================== */
2802
09d5c9834580 tv update
alex
parents: 2790
diff changeset
306 tvi_handle_t *tv_begin(void)
2790
98769cea155c added tv subsystem
alex
parents:
diff changeset
307 {
98769cea155c added tv subsystem
alex
parents:
diff changeset
308 if (!strcmp(tv_param_driver, "dummy"))
2802
09d5c9834580 tv update
alex
parents: 2790
diff changeset
309 return (tvi_handle_t *)tvi_init_dummy(tv_param_device);
2790
98769cea155c added tv subsystem
alex
parents:
diff changeset
310 if (!strcmp(tv_param_driver, "v4l"))
2802
09d5c9834580 tv update
alex
parents: 2790
diff changeset
311 return (tvi_handle_t *)tvi_init_v4l(tv_param_device);
2790
98769cea155c added tv subsystem
alex
parents:
diff changeset
312
98769cea155c added tv subsystem
alex
parents:
diff changeset
313 mp_msg(MSGT_TV, MSGL_ERR, "No such driver: %s\n", tv_param_driver);
98769cea155c added tv subsystem
alex
parents:
diff changeset
314 return(NULL);
98769cea155c added tv subsystem
alex
parents:
diff changeset
315 }
98769cea155c added tv subsystem
alex
parents:
diff changeset
316
2802
09d5c9834580 tv update
alex
parents: 2790
diff changeset
317 int tv_init(tvi_handle_t *tvh)
2790
98769cea155c added tv subsystem
alex
parents:
diff changeset
318 {
2802
09d5c9834580 tv update
alex
parents: 2790
diff changeset
319 tvi_param_t *params;
09d5c9834580 tv update
alex
parents: 2790
diff changeset
320
2818
9f68d309f8cb printf's changed into mp_msg
alex
parents: 2817
diff changeset
321 mp_msg(MSGT_TV, MSGL_INFO, "Selected driver: %s\n", tvh->info->short_name);
9f68d309f8cb printf's changed into mp_msg
alex
parents: 2817
diff changeset
322 mp_msg(MSGT_TV, MSGL_INFO, " name: %s\n", tvh->info->name);
9f68d309f8cb printf's changed into mp_msg
alex
parents: 2817
diff changeset
323 mp_msg(MSGT_TV, MSGL_INFO, " author: %s\n", tvh->info->author);
2802
09d5c9834580 tv update
alex
parents: 2790
diff changeset
324 if (tvh->info->comment)
2818
9f68d309f8cb printf's changed into mp_msg
alex
parents: 2817
diff changeset
325 mp_msg(MSGT_TV, MSGL_INFO, " comment: %s\n", tvh->info->comment);
2790
98769cea155c added tv subsystem
alex
parents:
diff changeset
326
2802
09d5c9834580 tv update
alex
parents: 2790
diff changeset
327 params = malloc(sizeof(tvi_param_t)*2);
09d5c9834580 tv update
alex
parents: 2790
diff changeset
328 params[0].opt = malloc(strlen("input"));
09d5c9834580 tv update
alex
parents: 2790
diff changeset
329 sprintf((char *)params[0].opt, "input");
09d5c9834580 tv update
alex
parents: 2790
diff changeset
330 params[0].value = malloc(sizeof(int));
09d5c9834580 tv update
alex
parents: 2790
diff changeset
331 (int)*(void **)params[0].value = tv_param_input;
09d5c9834580 tv update
alex
parents: 2790
diff changeset
332 params[1].opt = params[1].value = NULL;
09d5c9834580 tv update
alex
parents: 2790
diff changeset
333
2837
c63562f5f56f tuning worx (can set frequency)
alex
parents: 2830
diff changeset
334 return(tvh->functions->init(tvh->priv, params));
c63562f5f56f tuning worx (can set frequency)
alex
parents: 2830
diff changeset
335 }
c63562f5f56f tuning worx (can set frequency)
alex
parents: 2830
diff changeset
336
c63562f5f56f tuning worx (can set frequency)
alex
parents: 2830
diff changeset
337 int tv_uninit(tvi_handle_t *tvh)
c63562f5f56f tuning worx (can set frequency)
alex
parents: 2830
diff changeset
338 {
c63562f5f56f tuning worx (can set frequency)
alex
parents: 2830
diff changeset
339 return(tvh->functions->uninit(tvh->priv));
2790
98769cea155c added tv subsystem
alex
parents:
diff changeset
340 }
2937
4307478ad922 added support for setting color values
alex
parents: 2932
diff changeset
341
4307478ad922 added support for setting color values
alex
parents: 2932
diff changeset
342 /* utilities for mplayer (not mencoder!!) */
4307478ad922 added support for setting color values
alex
parents: 2932
diff changeset
343 int tv_set_color_options(tvi_handle_t *tvh, int opt, int value)
4307478ad922 added support for setting color values
alex
parents: 2932
diff changeset
344 {
4307478ad922 added support for setting color values
alex
parents: 2932
diff changeset
345 tvi_functions_t *funcs = tvh->functions;
4307478ad922 added support for setting color values
alex
parents: 2932
diff changeset
346
4307478ad922 added support for setting color values
alex
parents: 2932
diff changeset
347 switch(opt)
4307478ad922 added support for setting color values
alex
parents: 2932
diff changeset
348 {
4307478ad922 added support for setting color values
alex
parents: 2932
diff changeset
349 case TV_COLOR_BRIGHTNESS:
4307478ad922 added support for setting color values
alex
parents: 2932
diff changeset
350 if (value == 50)
4307478ad922 added support for setting color values
alex
parents: 2932
diff changeset
351 value = 32768;
4307478ad922 added support for setting color values
alex
parents: 2932
diff changeset
352 if (value > 50)
4307478ad922 added support for setting color values
alex
parents: 2932
diff changeset
353 {
4307478ad922 added support for setting color values
alex
parents: 2932
diff changeset
354 value *= 100;
4307478ad922 added support for setting color values
alex
parents: 2932
diff changeset
355 value += 32768;
4307478ad922 added support for setting color values
alex
parents: 2932
diff changeset
356 }
4307478ad922 added support for setting color values
alex
parents: 2932
diff changeset
357 if (value < 50)
4307478ad922 added support for setting color values
alex
parents: 2932
diff changeset
358 {
4307478ad922 added support for setting color values
alex
parents: 2932
diff changeset
359 int i;
4307478ad922 added support for setting color values
alex
parents: 2932
diff changeset
360 value *= 100;
4307478ad922 added support for setting color values
alex
parents: 2932
diff changeset
361 i = value;
4307478ad922 added support for setting color values
alex
parents: 2932
diff changeset
362 value = 32768 - i;
4307478ad922 added support for setting color values
alex
parents: 2932
diff changeset
363 }
4307478ad922 added support for setting color values
alex
parents: 2932
diff changeset
364 funcs->control(tvh->priv, TVI_CONTROL_VID_SET_BRIGHTNESS, &value);
4307478ad922 added support for setting color values
alex
parents: 2932
diff changeset
365 break;
4307478ad922 added support for setting color values
alex
parents: 2932
diff changeset
366 case TV_COLOR_HUE:
4307478ad922 added support for setting color values
alex
parents: 2932
diff changeset
367 if (value == 50)
4307478ad922 added support for setting color values
alex
parents: 2932
diff changeset
368 value = 32768;
4307478ad922 added support for setting color values
alex
parents: 2932
diff changeset
369 if (value > 50)
4307478ad922 added support for setting color values
alex
parents: 2932
diff changeset
370 {
4307478ad922 added support for setting color values
alex
parents: 2932
diff changeset
371 value *= 100;
4307478ad922 added support for setting color values
alex
parents: 2932
diff changeset
372 value += 32768;
4307478ad922 added support for setting color values
alex
parents: 2932
diff changeset
373 }
4307478ad922 added support for setting color values
alex
parents: 2932
diff changeset
374 if (value < 50)
4307478ad922 added support for setting color values
alex
parents: 2932
diff changeset
375 {
4307478ad922 added support for setting color values
alex
parents: 2932
diff changeset
376 int i;
4307478ad922 added support for setting color values
alex
parents: 2932
diff changeset
377 value *= 100;
4307478ad922 added support for setting color values
alex
parents: 2932
diff changeset
378 i = value;
4307478ad922 added support for setting color values
alex
parents: 2932
diff changeset
379 value = 32768 - i;
4307478ad922 added support for setting color values
alex
parents: 2932
diff changeset
380 }
4307478ad922 added support for setting color values
alex
parents: 2932
diff changeset
381 funcs->control(tvh->priv, TVI_CONTROL_VID_SET_HUE, &value);
4307478ad922 added support for setting color values
alex
parents: 2932
diff changeset
382 break;
4307478ad922 added support for setting color values
alex
parents: 2932
diff changeset
383 case TV_COLOR_SATURATION:
4307478ad922 added support for setting color values
alex
parents: 2932
diff changeset
384 if (value == 50)
4307478ad922 added support for setting color values
alex
parents: 2932
diff changeset
385 value = 32512;
4307478ad922 added support for setting color values
alex
parents: 2932
diff changeset
386 if (value > 50)
4307478ad922 added support for setting color values
alex
parents: 2932
diff changeset
387 {
4307478ad922 added support for setting color values
alex
parents: 2932
diff changeset
388 value *= 100;
4307478ad922 added support for setting color values
alex
parents: 2932
diff changeset
389 value += 32512;
4307478ad922 added support for setting color values
alex
parents: 2932
diff changeset
390 }
4307478ad922 added support for setting color values
alex
parents: 2932
diff changeset
391 if (value < 50)
4307478ad922 added support for setting color values
alex
parents: 2932
diff changeset
392 {
4307478ad922 added support for setting color values
alex
parents: 2932
diff changeset
393 int i;
4307478ad922 added support for setting color values
alex
parents: 2932
diff changeset
394 value *= 100;
4307478ad922 added support for setting color values
alex
parents: 2932
diff changeset
395 i = value;
4307478ad922 added support for setting color values
alex
parents: 2932
diff changeset
396 value = 32512 - i;
4307478ad922 added support for setting color values
alex
parents: 2932
diff changeset
397 }
4307478ad922 added support for setting color values
alex
parents: 2932
diff changeset
398 funcs->control(tvh->priv, TVI_CONTROL_VID_SET_SATURATION, &value);
4307478ad922 added support for setting color values
alex
parents: 2932
diff changeset
399 break;
4307478ad922 added support for setting color values
alex
parents: 2932
diff changeset
400 case TV_COLOR_CONTRAST:
4307478ad922 added support for setting color values
alex
parents: 2932
diff changeset
401 if (value == 50)
4307478ad922 added support for setting color values
alex
parents: 2932
diff changeset
402 value = 27648;
4307478ad922 added support for setting color values
alex
parents: 2932
diff changeset
403 if (value > 50)
4307478ad922 added support for setting color values
alex
parents: 2932
diff changeset
404 {
4307478ad922 added support for setting color values
alex
parents: 2932
diff changeset
405 value *= 100;
4307478ad922 added support for setting color values
alex
parents: 2932
diff changeset
406 value += 27648;
4307478ad922 added support for setting color values
alex
parents: 2932
diff changeset
407 }
4307478ad922 added support for setting color values
alex
parents: 2932
diff changeset
408 if (value < 50)
4307478ad922 added support for setting color values
alex
parents: 2932
diff changeset
409 {
4307478ad922 added support for setting color values
alex
parents: 2932
diff changeset
410 int i;
4307478ad922 added support for setting color values
alex
parents: 2932
diff changeset
411 value *= 100;
4307478ad922 added support for setting color values
alex
parents: 2932
diff changeset
412 i = value;
4307478ad922 added support for setting color values
alex
parents: 2932
diff changeset
413 value = 27648 - i;
4307478ad922 added support for setting color values
alex
parents: 2932
diff changeset
414 }
4307478ad922 added support for setting color values
alex
parents: 2932
diff changeset
415 funcs->control(tvh->priv, TVI_CONTROL_VID_SET_CONTRAST, &value);
4307478ad922 added support for setting color values
alex
parents: 2932
diff changeset
416 break;
4307478ad922 added support for setting color values
alex
parents: 2932
diff changeset
417 default:
4307478ad922 added support for setting color values
alex
parents: 2932
diff changeset
418 mp_msg(MSGT_TV, MSGL_WARN, "Unknown color option (%d) specified!\n", opt);
4307478ad922 added support for setting color values
alex
parents: 2932
diff changeset
419 }
4307478ad922 added support for setting color values
alex
parents: 2932
diff changeset
420
4307478ad922 added support for setting color values
alex
parents: 2932
diff changeset
421 return(1);
4307478ad922 added support for setting color values
alex
parents: 2932
diff changeset
422 }
2941
60c1b7c0ea21 added support for norm=,chanlist=,channel= and also on-the-fly channel chaning with keys
alex
parents: 2937
diff changeset
423
60c1b7c0ea21 added support for norm=,chanlist=,channel= and also on-the-fly channel chaning with keys
alex
parents: 2937
diff changeset
424 int tv_set_freq(tvi_handle_t *tvh, unsigned long freq)
60c1b7c0ea21 added support for norm=,chanlist=,channel= and also on-the-fly channel chaning with keys
alex
parents: 2937
diff changeset
425 {
60c1b7c0ea21 added support for norm=,chanlist=,channel= and also on-the-fly channel chaning with keys
alex
parents: 2937
diff changeset
426 if (tvh->functions->control(tvh->priv, TVI_CONTROL_IS_TUNER, 0) == TVI_CONTROL_TRUE)
60c1b7c0ea21 added support for norm=,chanlist=,channel= and also on-the-fly channel chaning with keys
alex
parents: 2937
diff changeset
427 {
60c1b7c0ea21 added support for norm=,chanlist=,channel= and also on-the-fly channel chaning with keys
alex
parents: 2937
diff changeset
428 // unsigned long freq = atof(tv_param_freq)*16;
60c1b7c0ea21 added support for norm=,chanlist=,channel= and also on-the-fly channel chaning with keys
alex
parents: 2937
diff changeset
429
60c1b7c0ea21 added support for norm=,chanlist=,channel= and also on-the-fly channel chaning with keys
alex
parents: 2937
diff changeset
430 /* set freq in MHz */
60c1b7c0ea21 added support for norm=,chanlist=,channel= and also on-the-fly channel chaning with keys
alex
parents: 2937
diff changeset
431 tvh->functions->control(tvh->priv, TVI_CONTROL_TUN_SET_FREQ, &freq);
60c1b7c0ea21 added support for norm=,chanlist=,channel= and also on-the-fly channel chaning with keys
alex
parents: 2937
diff changeset
432
60c1b7c0ea21 added support for norm=,chanlist=,channel= and also on-the-fly channel chaning with keys
alex
parents: 2937
diff changeset
433 tvh->functions->control(tvh->priv, TVI_CONTROL_TUN_GET_FREQ, &freq);
60c1b7c0ea21 added support for norm=,chanlist=,channel= and also on-the-fly channel chaning with keys
alex
parents: 2937
diff changeset
434 mp_msg(MSGT_TV, MSGL_INFO, "Current frequency: %lu (%.3f)\n",
60c1b7c0ea21 added support for norm=,chanlist=,channel= and also on-the-fly channel chaning with keys
alex
parents: 2937
diff changeset
435 freq, (float)freq/16);
60c1b7c0ea21 added support for norm=,chanlist=,channel= and also on-the-fly channel chaning with keys
alex
parents: 2937
diff changeset
436 }
60c1b7c0ea21 added support for norm=,chanlist=,channel= and also on-the-fly channel chaning with keys
alex
parents: 2937
diff changeset
437 }
60c1b7c0ea21 added support for norm=,chanlist=,channel= and also on-the-fly channel chaning with keys
alex
parents: 2937
diff changeset
438
60c1b7c0ea21 added support for norm=,chanlist=,channel= and also on-the-fly channel chaning with keys
alex
parents: 2937
diff changeset
439 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
440 {
60c1b7c0ea21 added support for norm=,chanlist=,channel= and also on-the-fly channel chaning with keys
alex
parents: 2937
diff changeset
441 struct CHANLIST cl;
60c1b7c0ea21 added support for norm=,chanlist=,channel= and also on-the-fly channel chaning with keys
alex
parents: 2937
diff changeset
442
60c1b7c0ea21 added support for norm=,chanlist=,channel= and also on-the-fly channel chaning with keys
alex
parents: 2937
diff changeset
443 if (direction == TV_CHANNEL_LOWER)
60c1b7c0ea21 added support for norm=,chanlist=,channel= and also on-the-fly channel chaning with keys
alex
parents: 2937
diff changeset
444 {
60c1b7c0ea21 added support for norm=,chanlist=,channel= and also on-the-fly channel chaning with keys
alex
parents: 2937
diff changeset
445 if (tvh->channel-1 >= 0)
60c1b7c0ea21 added support for norm=,chanlist=,channel= and also on-the-fly channel chaning with keys
alex
parents: 2937
diff changeset
446 {
60c1b7c0ea21 added support for norm=,chanlist=,channel= and also on-the-fly channel chaning with keys
alex
parents: 2937
diff changeset
447 cl = tvh->chanlist_s[tvh->channel--];
60c1b7c0ea21 added support for norm=,chanlist=,channel= and also on-the-fly channel chaning with keys
alex
parents: 2937
diff changeset
448 mp_msg(MSGT_TV, MSGL_INFO, "Selected channel: %s (freq: %.3f)\n",
60c1b7c0ea21 added support for norm=,chanlist=,channel= and also on-the-fly channel chaning with keys
alex
parents: 2937
diff changeset
449 cl.name, (float)cl.freq/1000);
60c1b7c0ea21 added support for norm=,chanlist=,channel= and also on-the-fly channel chaning with keys
alex
parents: 2937
diff changeset
450 tv_set_freq(tvh, (unsigned long)(((float)cl.freq/1000)*16));
60c1b7c0ea21 added support for norm=,chanlist=,channel= and also on-the-fly channel chaning with keys
alex
parents: 2937
diff changeset
451 }
60c1b7c0ea21 added support for norm=,chanlist=,channel= and also on-the-fly channel chaning with keys
alex
parents: 2937
diff changeset
452 }
60c1b7c0ea21 added support for norm=,chanlist=,channel= and also on-the-fly channel chaning with keys
alex
parents: 2937
diff changeset
453
60c1b7c0ea21 added support for norm=,chanlist=,channel= and also on-the-fly channel chaning with keys
alex
parents: 2937
diff changeset
454 if (direction == TV_CHANNEL_HIGHER)
60c1b7c0ea21 added support for norm=,chanlist=,channel= and also on-the-fly channel chaning with keys
alex
parents: 2937
diff changeset
455 {
60c1b7c0ea21 added support for norm=,chanlist=,channel= and also on-the-fly channel chaning with keys
alex
parents: 2937
diff changeset
456 if (tvh->channel+1 <= chanlists[tvh->chanlist].count)
60c1b7c0ea21 added support for norm=,chanlist=,channel= and also on-the-fly channel chaning with keys
alex
parents: 2937
diff changeset
457 {
60c1b7c0ea21 added support for norm=,chanlist=,channel= and also on-the-fly channel chaning with keys
alex
parents: 2937
diff changeset
458 cl = tvh->chanlist_s[tvh->channel++];
60c1b7c0ea21 added support for norm=,chanlist=,channel= and also on-the-fly channel chaning with keys
alex
parents: 2937
diff changeset
459 mp_msg(MSGT_TV, MSGL_INFO, "Selected channel: %s (freq: %.3f)\n",
60c1b7c0ea21 added support for norm=,chanlist=,channel= and also on-the-fly channel chaning with keys
alex
parents: 2937
diff changeset
460 cl.name, (float)cl.freq/1000);
60c1b7c0ea21 added support for norm=,chanlist=,channel= and also on-the-fly channel chaning with keys
alex
parents: 2937
diff changeset
461 tv_set_freq(tvh, (unsigned long)(((float)cl.freq/1000)*16));
60c1b7c0ea21 added support for norm=,chanlist=,channel= and also on-the-fly channel chaning with keys
alex
parents: 2937
diff changeset
462 }
60c1b7c0ea21 added support for norm=,chanlist=,channel= and also on-the-fly channel chaning with keys
alex
parents: 2937
diff changeset
463 }
60c1b7c0ea21 added support for norm=,chanlist=,channel= and also on-the-fly channel chaning with keys
alex
parents: 2937
diff changeset
464 }
60c1b7c0ea21 added support for norm=,chanlist=,channel= and also on-the-fly channel chaning with keys
alex
parents: 2937
diff changeset
465
60c1b7c0ea21 added support for norm=,chanlist=,channel= and also on-the-fly channel chaning with keys
alex
parents: 2937
diff changeset
466 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
467 {
60c1b7c0ea21 added support for norm=,chanlist=,channel= and also on-the-fly channel chaning with keys
alex
parents: 2937
diff changeset
468 }
60c1b7c0ea21 added support for norm=,chanlist=,channel= and also on-the-fly channel chaning with keys
alex
parents: 2937
diff changeset
469
60c1b7c0ea21 added support for norm=,chanlist=,channel= and also on-the-fly channel chaning with keys
alex
parents: 2937
diff changeset
470 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
471 {
60c1b7c0ea21 added support for norm=,chanlist=,channel= and also on-the-fly channel chaning with keys
alex
parents: 2937
diff changeset
472 }
2790
98769cea155c added tv subsystem
alex
parents:
diff changeset
473 #endif /* USE_TV */