annotate libmpdemux/tv.c @ 7806:6a6f6b8b2ac7

set position in channel list on startup. note: hope one day we will get cleaned the int->float->int sutff ;)
author alex
date Sat, 19 Oct 2002 20:55:06 +0000
parents c4434bdf6e51
children 5cd172eeaf23
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
2790
98769cea155c added tv subsystem
alex
parents:
diff changeset
1 /*
3284
702e399a4b3e update (audio support is coming:)
alex
parents: 3249
diff changeset
2 TV Interface for MPlayer
2790
98769cea155c added tv subsystem
alex
parents:
diff changeset
3
3284
702e399a4b3e update (audio support is coming:)
alex
parents: 3249
diff changeset
4 (C) Alex Beregszaszi <alex@naxine.org>
702e399a4b3e update (audio support is coming:)
alex
parents: 3249
diff changeset
5
702e399a4b3e update (audio support is coming:)
alex
parents: 3249
diff changeset
6 API idea based on libvo2
2790
98769cea155c added tv subsystem
alex
parents:
diff changeset
7
5087
1d54c3a27093 audio support and pts based packet handling by Charles Henrich
alex
parents: 4350
diff changeset
8 Feb 19, 2002: Significant rewrites by Charles R. Henrich (henrich@msu.edu)
5572
8cd761968f35 BSD-BT848 TV update patch by Charles Henrich <henrich@sigbus.com>
arpi
parents: 5087
diff changeset
9 to add support for audio, and bktr *BSD support.
5087
1d54c3a27093 audio support and pts based packet handling by Charles Henrich
alex
parents: 4350
diff changeset
10
2790
98769cea155c added tv subsystem
alex
parents:
diff changeset
11 */
98769cea155c added tv subsystem
alex
parents:
diff changeset
12
98769cea155c added tv subsystem
alex
parents:
diff changeset
13 #include <stdio.h>
98769cea155c added tv subsystem
alex
parents:
diff changeset
14 #include <stdlib.h>
98769cea155c added tv subsystem
alex
parents:
diff changeset
15 #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
16 #include <string.h>
5087
1d54c3a27093 audio support and pts based packet handling by Charles Henrich
alex
parents: 4350
diff changeset
17 #include <sys/time.h>
2790
98769cea155c added tv subsystem
alex
parents:
diff changeset
18
98769cea155c added tv subsystem
alex
parents:
diff changeset
19 #include "config.h"
98769cea155c added tv subsystem
alex
parents:
diff changeset
20
2819
2e58962dc9fe cleaned up some warnings, and tv_param_on moved out from #ifdef USE_TV
alex
parents: 2818
diff changeset
21 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
22
2790
98769cea155c added tv subsystem
alex
parents:
diff changeset
23 #ifdef USE_TV
98769cea155c added tv subsystem
alex
parents:
diff changeset
24 #include "mp_msg.h"
98769cea155c added tv subsystem
alex
parents:
diff changeset
25 #include "help_mp.h"
98769cea155c added tv subsystem
alex
parents:
diff changeset
26
98769cea155c added tv subsystem
alex
parents:
diff changeset
27 #include "stream.h"
98769cea155c added tv subsystem
alex
parents:
diff changeset
28 #include "demuxer.h"
98769cea155c added tv subsystem
alex
parents:
diff changeset
29 #include "stheader.h"
2830
596a6ba3520f never include files from public headers...
arpi
parents: 2819
diff changeset
30
596a6ba3520f never include files from public headers...
arpi
parents: 2819
diff changeset
31 #include "../libao2/afmt.h"
596a6ba3520f never include files from public headers...
arpi
parents: 2819
diff changeset
32 #include "../libvo/img_format.h"
596a6ba3520f never include files from public headers...
arpi
parents: 2819
diff changeset
33 #include "../libvo/fastmemcpy.h"
596a6ba3520f never include files from public headers...
arpi
parents: 2819
diff changeset
34
2802
09d5c9834580 tv update
alex
parents: 2790
diff changeset
35 #include "tv.h"
2790
98769cea155c added tv subsystem
alex
parents:
diff changeset
36
2941
60c1b7c0ea21 added support for norm=,chanlist=,channel= and also on-the-fly channel chaning with keys
alex
parents: 2937
diff changeset
37 #include "frequencies.h"
60c1b7c0ea21 added support for norm=,chanlist=,channel= and also on-the-fly channel chaning with keys
alex
parents: 2937
diff changeset
38
2790
98769cea155c added tv subsystem
alex
parents:
diff changeset
39 /* some default values */
5572
8cd761968f35 BSD-BT848 TV update patch by Charles Henrich <henrich@sigbus.com>
arpi
parents: 5087
diff changeset
40 int tv_param_audiorate = 44100;
5087
1d54c3a27093 audio support and pts based packet handling by Charles Henrich
alex
parents: 4350
diff changeset
41 int tv_param_noaudio = 0;
5572
8cd761968f35 BSD-BT848 TV update patch by Charles Henrich <henrich@sigbus.com>
arpi
parents: 5087
diff changeset
42 int tv_param_immediate = 0;
2837
c63562f5f56f tuning worx (can set frequency)
alex
parents: 2830
diff changeset
43 char *tv_param_freq = NULL;
3284
702e399a4b3e update (audio support is coming:)
alex
parents: 3249
diff changeset
44 char *tv_param_channel = NULL;
2790
98769cea155c added tv subsystem
alex
parents:
diff changeset
45 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
46 char *tv_param_chanlist = "europe-east";
2790
98769cea155c added tv subsystem
alex
parents:
diff changeset
47 char *tv_param_device = NULL;
98769cea155c added tv subsystem
alex
parents:
diff changeset
48 char *tv_param_driver = "dummy";
98769cea155c added tv subsystem
alex
parents:
diff changeset
49 int tv_param_width = -1;
98769cea155c added tv subsystem
alex
parents:
diff changeset
50 int tv_param_height = -1;
2802
09d5c9834580 tv update
alex
parents: 2790
diff changeset
51 int tv_param_input = 0; /* used in v4l and bttv */
2817
cc93d9786954 added support for -tv outfmt
alex
parents: 2813
diff changeset
52 char *tv_param_outfmt = "yv12";
3285
bd7bff4cb453 add tv fps support
alex
parents: 3284
diff changeset
53 float tv_param_fps = -1.0;
7058
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6161
diff changeset
54 #ifdef HAVE_TV_V4L
7163
a193df8b275b v4l audio fixes by Jindrich Makovicka <makovick@KMLinux.fjfi.cvut.cz>
alex
parents: 7058
diff changeset
55 int tv_param_amode = -1;
7058
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6161
diff changeset
56 int tv_param_audio_id = 0;
7163
a193df8b275b v4l audio fixes by Jindrich Makovicka <makovick@KMLinux.fjfi.cvut.cz>
alex
parents: 7058
diff changeset
57 int tv_param_volume = 60000;
a193df8b275b v4l audio fixes by Jindrich Makovicka <makovick@KMLinux.fjfi.cvut.cz>
alex
parents: 7058
diff changeset
58 int tv_param_bass = -1;
a193df8b275b v4l audio fixes by Jindrich Makovicka <makovick@KMLinux.fjfi.cvut.cz>
alex
parents: 7058
diff changeset
59 int tv_param_treble = -1;
a193df8b275b v4l audio fixes by Jindrich Makovicka <makovick@KMLinux.fjfi.cvut.cz>
alex
parents: 7058
diff changeset
60 int tv_param_balance = -1;
a193df8b275b v4l audio fixes by Jindrich Makovicka <makovick@KMLinux.fjfi.cvut.cz>
alex
parents: 7058
diff changeset
61 int tv_param_forcechan = -1;
7058
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6161
diff changeset
62 #ifdef HAVE_ALSA9
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6161
diff changeset
63 int tv_param_alsa = 0;
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6161
diff changeset
64 #endif
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6161
diff changeset
65 char* tv_param_adevice = NULL;
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6161
diff changeset
66 #endif
2790
98769cea155c added tv subsystem
alex
parents:
diff changeset
67
98769cea155c added tv subsystem
alex
parents:
diff changeset
68 /* ================== DEMUX_TV ===================== */
98769cea155c added tv subsystem
alex
parents:
diff changeset
69 /*
98769cea155c added tv subsystem
alex
parents:
diff changeset
70 Return value:
98769cea155c added tv subsystem
alex
parents:
diff changeset
71 0 = EOF(?) or no stream
98769cea155c added tv subsystem
alex
parents:
diff changeset
72 1 = successfully read a packet
98769cea155c added tv subsystem
alex
parents:
diff changeset
73 */
98769cea155c added tv subsystem
alex
parents:
diff changeset
74 /* fill demux->video and demux->audio */
5087
1d54c3a27093 audio support and pts based packet handling by Charles Henrich
alex
parents: 4350
diff changeset
75
7329
9129781e5939 removed messy global 'tv_handle', use stream->priv for that purpose
arpi
parents: 7318
diff changeset
76 int demux_tv_fill_buffer(demuxer_t *demux, demux_stream_t *ds)
2790
98769cea155c added tv subsystem
alex
parents:
diff changeset
77 {
7408
0c6948b8100f stream layer cleanup part 2
arpi
parents: 7329
diff changeset
78 tvi_handle_t *tvh=(tvi_handle_t*)(demux->priv);
2813
d6d88771f5ef demuxer fixed
arpi
parents: 2810
diff changeset
79 demux_packet_t* dp;
7472
c4434bdf6e51 tons of warning fixes, also some 10l bugfixes, including Dominik's PVA bug
arpi
parents: 7408
diff changeset
80 u_int len=0;
5087
1d54c3a27093 audio support and pts based packet handling by Charles Henrich
alex
parents: 4350
diff changeset
81
1d54c3a27093 audio support and pts based packet handling by Charles Henrich
alex
parents: 4350
diff changeset
82 /* ================== ADD AUDIO PACKET =================== */
2790
98769cea155c added tv subsystem
alex
parents:
diff changeset
83
5572
8cd761968f35 BSD-BT848 TV update patch by Charles Henrich <henrich@sigbus.com>
arpi
parents: 5087
diff changeset
84 if (ds==demux->audio && tv_param_noaudio == 0 &&
5087
1d54c3a27093 audio support and pts based packet handling by Charles Henrich
alex
parents: 4350
diff changeset
85 tvh->functions->control(tvh->priv,
1d54c3a27093 audio support and pts based packet handling by Charles Henrich
alex
parents: 4350
diff changeset
86 TVI_CONTROL_IS_AUDIO, 0) == TVI_CONTROL_TRUE)
1d54c3a27093 audio support and pts based packet handling by Charles Henrich
alex
parents: 4350
diff changeset
87 {
1d54c3a27093 audio support and pts based packet handling by Charles Henrich
alex
parents: 4350
diff changeset
88 len = tvh->functions->get_audio_framesize(tvh->priv);
2802
09d5c9834580 tv update
alex
parents: 2790
diff changeset
89
5572
8cd761968f35 BSD-BT848 TV update patch by Charles Henrich <henrich@sigbus.com>
arpi
parents: 5087
diff changeset
90 dp=new_demux_packet(len);
8cd761968f35 BSD-BT848 TV update patch by Charles Henrich <henrich@sigbus.com>
arpi
parents: 5087
diff changeset
91 dp->pts=tvh->functions->grab_audio_frame(tvh->priv, dp->buffer,len);
8cd761968f35 BSD-BT848 TV update patch by Charles Henrich <henrich@sigbus.com>
arpi
parents: 5087
diff changeset
92 ds_add_packet(demux->audio,dp);
5087
1d54c3a27093 audio support and pts based packet handling by Charles Henrich
alex
parents: 4350
diff changeset
93 }
2802
09d5c9834580 tv update
alex
parents: 2790
diff changeset
94
2790
98769cea155c added tv subsystem
alex
parents:
diff changeset
95 /* ================== ADD VIDEO PACKET =================== */
98769cea155c added tv subsystem
alex
parents:
diff changeset
96
5572
8cd761968f35 BSD-BT848 TV update patch by Charles Henrich <henrich@sigbus.com>
arpi
parents: 5087
diff changeset
97 if (ds==demux->video && tvh->functions->control(tvh->priv,
5087
1d54c3a27093 audio support and pts based packet handling by Charles Henrich
alex
parents: 4350
diff changeset
98 TVI_CONTROL_IS_VIDEO, 0) == TVI_CONTROL_TRUE)
1d54c3a27093 audio support and pts based packet handling by Charles Henrich
alex
parents: 4350
diff changeset
99 {
5572
8cd761968f35 BSD-BT848 TV update patch by Charles Henrich <henrich@sigbus.com>
arpi
parents: 5087
diff changeset
100 len = tvh->functions->get_video_framesize(tvh->priv);
8cd761968f35 BSD-BT848 TV update patch by Charles Henrich <henrich@sigbus.com>
arpi
parents: 5087
diff changeset
101 dp=new_demux_packet(len);
8cd761968f35 BSD-BT848 TV update patch by Charles Henrich <henrich@sigbus.com>
arpi
parents: 5087
diff changeset
102 dp->pts=tvh->functions->grab_video_frame(tvh->priv, dp->buffer, len);
8cd761968f35 BSD-BT848 TV update patch by Charles Henrich <henrich@sigbus.com>
arpi
parents: 5087
diff changeset
103 ds_add_packet(demux->video,dp);
8cd761968f35 BSD-BT848 TV update patch by Charles Henrich <henrich@sigbus.com>
arpi
parents: 5087
diff changeset
104 }
2790
98769cea155c added tv subsystem
alex
parents:
diff changeset
105
98769cea155c added tv subsystem
alex
parents:
diff changeset
106 return 1;
98769cea155c added tv subsystem
alex
parents:
diff changeset
107 }
98769cea155c added tv subsystem
alex
parents:
diff changeset
108
7408
0c6948b8100f stream layer cleanup part 2
arpi
parents: 7329
diff changeset
109 static int open_tv(tvi_handle_t *tvh)
2931
bce9c945b29c tv interface update
alex
parents: 2842
diff changeset
110 {
2941
60c1b7c0ea21 added support for norm=,chanlist=,channel= and also on-the-fly channel chaning with keys
alex
parents: 2937
diff changeset
111 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
112 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
113 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
114
fa3224774679 splitted demux_open_tv into two parts: stream_open_tv and demux_open_tv to support caching
alex
parents: 2931
diff changeset
115 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
116 {
fa3224774679 splitted demux_open_tv into two parts: stream_open_tv and demux_open_tv to support caching
alex
parents: 2931
diff changeset
117 mp_msg(MSGT_TV, MSGL_ERR, "Error: no video input present!\n");
3728
499ce786c30d As nobody fixed this yet:
pl
parents: 3703
diff changeset
118 return 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
119 }
fa3224774679 splitted demux_open_tv into two parts: stream_open_tv and demux_open_tv to support caching
alex
parents: 2931
diff changeset
120
fa3224774679 splitted demux_open_tv into two parts: stream_open_tv and demux_open_tv to support caching
alex
parents: 2931
diff changeset
121 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
122 picture_format = IMGFMT_YV12;
3703
3717145636b5 i420 support
alex
parents: 3612
diff changeset
123 else if (!strcasecmp(tv_param_outfmt, "i420"))
3717145636b5 i420 support
alex
parents: 3612
diff changeset
124 picture_format = IMGFMT_I420;
2932
fa3224774679 splitted demux_open_tv into two parts: stream_open_tv and demux_open_tv to support caching
alex
parents: 2931
diff changeset
125 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
126 picture_format = IMGFMT_UYVY;
4350
70ac7ab2a982 yuy2 reported as working
alex
parents: 4242
diff changeset
127 else if (!strcasecmp(tv_param_outfmt, "yuy2"))
70ac7ab2a982 yuy2 reported as working
alex
parents: 4242
diff changeset
128 picture_format = IMGFMT_YUY2;
2932
fa3224774679 splitted demux_open_tv into two parts: stream_open_tv and demux_open_tv to support caching
alex
parents: 2931
diff changeset
129 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
130 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
131 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
132 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
133 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
134 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
135 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
136 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
137 else
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 mp_msg(MSGT_TV, MSGL_ERR, "Unknown format given: %s\n", tv_param_outfmt);
7318
85897ab199a4 changed message leveles (too many non-sense info messages)
alex
parents: 7163
diff changeset
140 mp_msg(MSGT_TV, MSGL_V, "Using default: Planar YV12\n");
2932
fa3224774679 splitted demux_open_tv into two parts: stream_open_tv and demux_open_tv to support caching
alex
parents: 2931
diff changeset
141 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
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 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
144
7058
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6161
diff changeset
145 /* set some params got from cmdline */
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6161
diff changeset
146 funcs->control(tvh->priv, TVI_CONTROL_SPC_SET_INPUT, &tv_param_input);
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6161
diff changeset
147
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6161
diff changeset
148 /* select video norm */
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6161
diff changeset
149 if (!strcasecmp(tv_param_norm, "pal"))
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6161
diff changeset
150 tvh->norm = TV_NORM_PAL;
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6161
diff changeset
151 else if (!strcasecmp(tv_param_norm, "ntsc"))
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6161
diff changeset
152 tvh->norm = TV_NORM_NTSC;
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6161
diff changeset
153 else if (!strcasecmp(tv_param_norm, "secam"))
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6161
diff changeset
154 tvh->norm = TV_NORM_SECAM;
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6161
diff changeset
155
7318
85897ab199a4 changed message leveles (too many non-sense info messages)
alex
parents: 7163
diff changeset
156 mp_msg(MSGT_TV, MSGL_V, "Selected norm: %s\n", tv_param_norm);
7058
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6161
diff changeset
157 funcs->control(tvh->priv, TVI_CONTROL_TUN_SET_NORM, &tvh->norm);
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6161
diff changeset
158
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6161
diff changeset
159 /* limits on w&h are norm-dependent -- JM */
2932
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 width */
fa3224774679 splitted demux_open_tv into two parts: stream_open_tv and demux_open_tv to support caching
alex
parents: 2931
diff changeset
161 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
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 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
164 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
165 else
fa3224774679 splitted demux_open_tv into two parts: stream_open_tv and demux_open_tv to support caching
alex
parents: 2931
diff changeset
166 {
fa3224774679 splitted demux_open_tv into two parts: stream_open_tv and demux_open_tv to support caching
alex
parents: 2931
diff changeset
167 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
168 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
169 }
fa3224774679 splitted demux_open_tv into two parts: stream_open_tv and demux_open_tv to support caching
alex
parents: 2931
diff changeset
170 }
fa3224774679 splitted demux_open_tv into two parts: stream_open_tv and demux_open_tv to support caching
alex
parents: 2931
diff changeset
171
fa3224774679 splitted demux_open_tv into two parts: stream_open_tv and demux_open_tv to support caching
alex
parents: 2931
diff changeset
172 /* 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
173 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
174 {
fa3224774679 splitted demux_open_tv into two parts: stream_open_tv and demux_open_tv to support caching
alex
parents: 2931
diff changeset
175 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
176 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
177 else
fa3224774679 splitted demux_open_tv into two parts: stream_open_tv and demux_open_tv to support caching
alex
parents: 2931
diff changeset
178 {
fa3224774679 splitted demux_open_tv into two parts: stream_open_tv and demux_open_tv to support caching
alex
parents: 2931
diff changeset
179 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
180 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
181 }
fa3224774679 splitted demux_open_tv into two parts: stream_open_tv and demux_open_tv to support caching
alex
parents: 2931
diff changeset
182 }
fa3224774679 splitted demux_open_tv into two parts: stream_open_tv and demux_open_tv to support caching
alex
parents: 2931
diff changeset
183
3284
702e399a4b3e update (audio support is coming:)
alex
parents: 3249
diff changeset
184 if (funcs->control(tvh->priv, TVI_CONTROL_IS_TUNER, 0) != TVI_CONTROL_TRUE)
702e399a4b3e update (audio support is coming:)
alex
parents: 3249
diff changeset
185 {
702e399a4b3e update (audio support is coming:)
alex
parents: 3249
diff changeset
186 mp_msg(MSGT_TV, MSGL_WARN, "Selected input hasn't got a tuner!\n");
5572
8cd761968f35 BSD-BT848 TV update patch by Charles Henrich <henrich@sigbus.com>
arpi
parents: 5087
diff changeset
187 goto done;
3284
702e399a4b3e update (audio support is coming:)
alex
parents: 3249
diff changeset
188 }
702e399a4b3e update (audio support is coming:)
alex
parents: 3249
diff changeset
189
2941
60c1b7c0ea21 added support for norm=,chanlist=,channel= and also on-the-fly channel chaning with keys
alex
parents: 2937
diff changeset
190 /* select channel list */
60c1b7c0ea21 added support for norm=,chanlist=,channel= and also on-the-fly channel chaning with keys
alex
parents: 2937
diff changeset
191 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
192 {
60c1b7c0ea21 added support for norm=,chanlist=,channel= and also on-the-fly channel chaning with keys
alex
parents: 2937
diff changeset
193 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
194 {
60c1b7c0ea21 added support for norm=,chanlist=,channel= and also on-the-fly channel chaning with keys
alex
parents: 2937
diff changeset
195 tvh->chanlist = i;
60c1b7c0ea21 added support for norm=,chanlist=,channel= and also on-the-fly channel chaning with keys
alex
parents: 2937
diff changeset
196 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
197 break;
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 }
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 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
202 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
203 tv_param_chanlist);
3284
702e399a4b3e update (audio support is coming:)
alex
parents: 3249
diff changeset
204 else
7318
85897ab199a4 changed message leveles (too many non-sense info messages)
alex
parents: 7163
diff changeset
205 mp_msg(MSGT_TV, MSGL_V, "Selected channel list: %s (including %d channels)\n",
3284
702e399a4b3e update (audio support is coming:)
alex
parents: 3249
diff changeset
206 chanlists[tvh->chanlist].name, chanlists[tvh->chanlist].count);
2941
60c1b7c0ea21 added support for norm=,chanlist=,channel= and also on-the-fly channel chaning with keys
alex
parents: 2937
diff changeset
207
60c1b7c0ea21 added support for norm=,chanlist=,channel= and also on-the-fly channel chaning with keys
alex
parents: 2937
diff changeset
208 if (tv_param_freq && tv_param_channel)
3284
702e399a4b3e update (audio support is coming:)
alex
parents: 3249
diff changeset
209 {
702e399a4b3e update (audio support is coming:)
alex
parents: 3249
diff changeset
210 mp_msg(MSGT_TV, MSGL_WARN, "You can't set frequency and channel simultanly!\n");
5572
8cd761968f35 BSD-BT848 TV update patch by Charles Henrich <henrich@sigbus.com>
arpi
parents: 5087
diff changeset
211 goto done;
3284
702e399a4b3e update (audio support is coming:)
alex
parents: 3249
diff changeset
212 }
702e399a4b3e update (audio support is coming:)
alex
parents: 3249
diff changeset
213
702e399a4b3e update (audio support is coming:)
alex
parents: 3249
diff changeset
214 /* we need to set frequency */
702e399a4b3e update (audio support is coming:)
alex
parents: 3249
diff changeset
215 if (tv_param_freq)
702e399a4b3e update (audio support is coming:)
alex
parents: 3249
diff changeset
216 {
702e399a4b3e update (audio support is coming:)
alex
parents: 3249
diff changeset
217 unsigned long freq = atof(tv_param_freq)*16;
2941
60c1b7c0ea21 added support for norm=,chanlist=,channel= and also on-the-fly channel chaning with keys
alex
parents: 2937
diff changeset
218
3284
702e399a4b3e update (audio support is coming:)
alex
parents: 3249
diff changeset
219 /* set freq in MHz */
702e399a4b3e update (audio support is coming:)
alex
parents: 3249
diff changeset
220 funcs->control(tvh->priv, TVI_CONTROL_TUN_SET_FREQ, &freq);
702e399a4b3e update (audio support is coming:)
alex
parents: 3249
diff changeset
221
702e399a4b3e update (audio support is coming:)
alex
parents: 3249
diff changeset
222 funcs->control(tvh->priv, TVI_CONTROL_TUN_GET_FREQ, &freq);
7318
85897ab199a4 changed message leveles (too many non-sense info messages)
alex
parents: 7163
diff changeset
223 mp_msg(MSGT_TV, MSGL_V, "Selected frequency: %lu (%.3f)\n",
3284
702e399a4b3e update (audio support is coming:)
alex
parents: 3249
diff changeset
224 freq, (float)freq/16);
702e399a4b3e update (audio support is coming:)
alex
parents: 3249
diff changeset
225 }
702e399a4b3e update (audio support is coming:)
alex
parents: 3249
diff changeset
226
702e399a4b3e update (audio support is coming:)
alex
parents: 3249
diff changeset
227 if (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
228 {
60c1b7c0ea21 added support for norm=,chanlist=,channel= and also on-the-fly channel chaning with keys
alex
parents: 2937
diff changeset
229 struct CHANLIST cl;
3284
702e399a4b3e update (audio support is coming:)
alex
parents: 3249
diff changeset
230
702e399a4b3e update (audio support is coming:)
alex
parents: 3249
diff changeset
231 mp_msg(MSGT_TV, MSGL_V, "Requested channel: %s\n", 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
232 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
233 {
60c1b7c0ea21 added support for norm=,chanlist=,channel= and also on-the-fly channel chaning with keys
alex
parents: 2937
diff changeset
234 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
235 // 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
236 // 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
237 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
238 {
60c1b7c0ea21 added support for norm=,chanlist=,channel= and also on-the-fly channel chaning with keys
alex
parents: 2937
diff changeset
239 tvh->channel = i;
60c1b7c0ea21 added support for norm=,chanlist=,channel= and also on-the-fly channel chaning with keys
alex
parents: 2937
diff changeset
240 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
241 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
242 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
243 break;
60c1b7c0ea21 added support for norm=,chanlist=,channel= and also on-the-fly channel chaning with keys
alex
parents: 2937
diff changeset
244 }
60c1b7c0ea21 added support for norm=,chanlist=,channel= and also on-the-fly channel chaning with keys
alex
parents: 2937
diff changeset
245 }
60c1b7c0ea21 added support for norm=,chanlist=,channel= and also on-the-fly channel chaning with keys
alex
parents: 2937
diff changeset
246 }
7806
6a6f6b8b2ac7 set position in channel list on startup. note: hope one day we will get cleaned the int->float->int sutff ;)
alex
parents: 7472
diff changeset
247
6a6f6b8b2ac7 set position in channel list on startup. note: hope one day we will get cleaned the int->float->int sutff ;)
alex
parents: 7472
diff changeset
248 /* grep frequency in chanlist */
6a6f6b8b2ac7 set position in channel list on startup. note: hope one day we will get cleaned the int->float->int sutff ;)
alex
parents: 7472
diff changeset
249 {
6a6f6b8b2ac7 set position in channel list on startup. note: hope one day we will get cleaned the int->float->int sutff ;)
alex
parents: 7472
diff changeset
250 unsigned long i2;
6a6f6b8b2ac7 set position in channel list on startup. note: hope one day we will get cleaned the int->float->int sutff ;)
alex
parents: 7472
diff changeset
251 int freq;
6a6f6b8b2ac7 set position in channel list on startup. note: hope one day we will get cleaned the int->float->int sutff ;)
alex
parents: 7472
diff changeset
252
6a6f6b8b2ac7 set position in channel list on startup. note: hope one day we will get cleaned the int->float->int sutff ;)
alex
parents: 7472
diff changeset
253 tv_get_freq(tvh, &i2);
6a6f6b8b2ac7 set position in channel list on startup. note: hope one day we will get cleaned the int->float->int sutff ;)
alex
parents: 7472
diff changeset
254
6a6f6b8b2ac7 set position in channel list on startup. note: hope one day we will get cleaned the int->float->int sutff ;)
alex
parents: 7472
diff changeset
255 freq = (int) (((float)(i2/16))*1000)+250;
6a6f6b8b2ac7 set position in channel list on startup. note: hope one day we will get cleaned the int->float->int sutff ;)
alex
parents: 7472
diff changeset
256
6a6f6b8b2ac7 set position in channel list on startup. note: hope one day we will get cleaned the int->float->int sutff ;)
alex
parents: 7472
diff changeset
257 for (i = 0; i < chanlists[tvh->chanlist].count; i++)
6a6f6b8b2ac7 set position in channel list on startup. note: hope one day we will get cleaned the int->float->int sutff ;)
alex
parents: 7472
diff changeset
258 {
6a6f6b8b2ac7 set position in channel list on startup. note: hope one day we will get cleaned the int->float->int sutff ;)
alex
parents: 7472
diff changeset
259 if (tvh->chanlist_s[i].freq == freq)
6a6f6b8b2ac7 set position in channel list on startup. note: hope one day we will get cleaned the int->float->int sutff ;)
alex
parents: 7472
diff changeset
260 {
6a6f6b8b2ac7 set position in channel list on startup. note: hope one day we will get cleaned the int->float->int sutff ;)
alex
parents: 7472
diff changeset
261 tvh->channel = i+1;
6a6f6b8b2ac7 set position in channel list on startup. note: hope one day we will get cleaned the int->float->int sutff ;)
alex
parents: 7472
diff changeset
262 break;
6a6f6b8b2ac7 set position in channel list on startup. note: hope one day we will get cleaned the int->float->int sutff ;)
alex
parents: 7472
diff changeset
263 }
6a6f6b8b2ac7 set position in channel list on startup. note: hope one day we will get cleaned the int->float->int sutff ;)
alex
parents: 7472
diff changeset
264 }
6a6f6b8b2ac7 set position in channel list on startup. note: hope one day we will get cleaned the int->float->int sutff ;)
alex
parents: 7472
diff changeset
265 }
3284
702e399a4b3e update (audio support is coming:)
alex
parents: 3249
diff changeset
266
5572
8cd761968f35 BSD-BT848 TV update patch by Charles Henrich <henrich@sigbus.com>
arpi
parents: 5087
diff changeset
267 done:
2932
fa3224774679 splitted demux_open_tv into two parts: stream_open_tv and demux_open_tv to support caching
alex
parents: 2931
diff changeset
268 /* also start device! */
5572
8cd761968f35 BSD-BT848 TV update patch by Charles Henrich <henrich@sigbus.com>
arpi
parents: 5087
diff changeset
269 return 1;
2931
bce9c945b29c tv interface update
alex
parents: 2842
diff changeset
270 }
bce9c945b29c tv interface update
alex
parents: 2842
diff changeset
271
7329
9129781e5939 removed messy global 'tv_handle', use stream->priv for that purpose
arpi
parents: 7318
diff changeset
272 int demux_open_tv(demuxer_t *demuxer)
2790
98769cea155c added tv subsystem
alex
parents:
diff changeset
273 {
7408
0c6948b8100f stream layer cleanup part 2
arpi
parents: 7329
diff changeset
274 tvi_handle_t *tvh;
0c6948b8100f stream layer cleanup part 2
arpi
parents: 7329
diff changeset
275 sh_video_t *sh_video;
2802
09d5c9834580 tv update
alex
parents: 2790
diff changeset
276 sh_audio_t *sh_audio = NULL;
7408
0c6948b8100f stream layer cleanup part 2
arpi
parents: 7329
diff changeset
277 tvi_functions_t *funcs;
0c6948b8100f stream layer cleanup part 2
arpi
parents: 7329
diff changeset
278
0c6948b8100f stream layer cleanup part 2
arpi
parents: 7329
diff changeset
279 if(!(tvh=tv_begin())) return 0;
0c6948b8100f stream layer cleanup part 2
arpi
parents: 7329
diff changeset
280 if (!tv_init(tvh)) return 0;
0c6948b8100f stream layer cleanup part 2
arpi
parents: 7329
diff changeset
281 if (!open_tv(tvh)){
0c6948b8100f stream layer cleanup part 2
arpi
parents: 7329
diff changeset
282 tv_uninit(tvh);
0c6948b8100f stream layer cleanup part 2
arpi
parents: 7329
diff changeset
283 return 0;
0c6948b8100f stream layer cleanup part 2
arpi
parents: 7329
diff changeset
284 }
0c6948b8100f stream layer cleanup part 2
arpi
parents: 7329
diff changeset
285 funcs = tvh->functions;
0c6948b8100f stream layer cleanup part 2
arpi
parents: 7329
diff changeset
286 demuxer->priv=tvh;
2790
98769cea155c added tv subsystem
alex
parents:
diff changeset
287
2802
09d5c9834580 tv update
alex
parents: 2790
diff changeset
288 sh_video = new_sh_video(demuxer, 0);
2790
98769cea155c added tv subsystem
alex
parents:
diff changeset
289
2932
fa3224774679 splitted demux_open_tv into two parts: stream_open_tv and demux_open_tv to support caching
alex
parents: 2931
diff changeset
290 /* get IMAGE FORMAT */
2802
09d5c9834580 tv update
alex
parents: 2790
diff changeset
291 funcs->control(tvh->priv, TVI_CONTROL_VID_GET_FORMAT, &sh_video->format);
2810
1f0bcdb49910 tv update
alex
parents: 2802
diff changeset
292 // if (IMGFMT_IS_RGB(sh_video->format) || IMGFMT_IS_BGR(sh_video->format))
3398
a73b02e35e70 give the IMGFMT_ for sh_video->format not 0x0
alex
parents: 3285
diff changeset
293 // sh_video->format = 0x0;
2802
09d5c9834580 tv update
alex
parents: 2790
diff changeset
294
09d5c9834580 tv update
alex
parents: 2790
diff changeset
295 /* set FPS and FRAMETIME */
5087
1d54c3a27093 audio support and pts based packet handling by Charles Henrich
alex
parents: 4350
diff changeset
296
2790
98769cea155c added tv subsystem
alex
parents:
diff changeset
297 if(!sh_video->fps)
98769cea155c added tv subsystem
alex
parents:
diff changeset
298 {
5087
1d54c3a27093 audio support and pts based packet handling by Charles Henrich
alex
parents: 4350
diff changeset
299 int tmp;
1d54c3a27093 audio support and pts based packet handling by Charles Henrich
alex
parents: 4350
diff changeset
300 if (funcs->control(tvh->priv, TVI_CONTROL_VID_GET_FPS, &tmp) != TVI_CONTROL_TRUE)
1d54c3a27093 audio support and pts based packet handling by Charles Henrich
alex
parents: 4350
diff changeset
301 sh_video->fps = 25.0f; /* on PAL */
1d54c3a27093 audio support and pts based packet handling by Charles Henrich
alex
parents: 4350
diff changeset
302 else sh_video->fps = tmp;
1d54c3a27093 audio support and pts based packet handling by Charles Henrich
alex
parents: 4350
diff changeset
303 }
1d54c3a27093 audio support and pts based packet handling by Charles Henrich
alex
parents: 4350
diff changeset
304
3285
bd7bff4cb453 add tv fps support
alex
parents: 3284
diff changeset
305 if (tv_param_fps != -1.0f)
5087
1d54c3a27093 audio support and pts based packet handling by Charles Henrich
alex
parents: 4350
diff changeset
306 sh_video->fps = tv_param_fps;
1d54c3a27093 audio support and pts based packet handling by Charles Henrich
alex
parents: 4350
diff changeset
307
2790
98769cea155c added tv subsystem
alex
parents:
diff changeset
308 sh_video->frametime = 1.0f/sh_video->fps;
98769cea155c added tv subsystem
alex
parents:
diff changeset
309
5572
8cd761968f35 BSD-BT848 TV update patch by Charles Henrich <henrich@sigbus.com>
arpi
parents: 5087
diff changeset
310 /* If playback only mode, go to immediate mode, fail silently */
8cd761968f35 BSD-BT848 TV update patch by Charles Henrich <henrich@sigbus.com>
arpi
parents: 5087
diff changeset
311 if(tv_param_immediate == 1)
8cd761968f35 BSD-BT848 TV update patch by Charles Henrich <henrich@sigbus.com>
arpi
parents: 5087
diff changeset
312 {
8cd761968f35 BSD-BT848 TV update patch by Charles Henrich <henrich@sigbus.com>
arpi
parents: 5087
diff changeset
313 funcs->control(tvh->priv, TVI_CONTROL_IMMEDIATE, 0);
8cd761968f35 BSD-BT848 TV update patch by Charles Henrich <henrich@sigbus.com>
arpi
parents: 5087
diff changeset
314 tv_param_noaudio = 1;
8cd761968f35 BSD-BT848 TV update patch by Charles Henrich <henrich@sigbus.com>
arpi
parents: 5087
diff changeset
315 }
8cd761968f35 BSD-BT848 TV update patch by Charles Henrich <henrich@sigbus.com>
arpi
parents: 5087
diff changeset
316
2790
98769cea155c added tv subsystem
alex
parents:
diff changeset
317 /* 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
318 funcs->control(tvh->priv, TVI_CONTROL_VID_GET_WIDTH, &sh_video->disp_w);
2790
98769cea155c added tv subsystem
alex
parents:
diff changeset
319
98769cea155c added tv subsystem
alex
parents:
diff changeset
320 /* 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
321 funcs->control(tvh->priv, TVI_CONTROL_VID_GET_HEIGHT, &sh_video->disp_h);
2802
09d5c9834580 tv update
alex
parents: 2790
diff changeset
322
2790
98769cea155c added tv subsystem
alex
parents:
diff changeset
323 demuxer->video->sh = sh_video;
98769cea155c added tv subsystem
alex
parents:
diff changeset
324 sh_video->ds = demuxer->video;
98769cea155c added tv subsystem
alex
parents:
diff changeset
325 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
326
fa3224774679 splitted demux_open_tv into two parts: stream_open_tv and demux_open_tv to support caching
alex
parents: 2931
diff changeset
327 // demuxer->seekable = 0;
2790
98769cea155c added tv subsystem
alex
parents:
diff changeset
328
98769cea155c added tv subsystem
alex
parents:
diff changeset
329 /* here comes audio init */
5087
1d54c3a27093 audio support and pts based packet handling by Charles Henrich
alex
parents: 4350
diff changeset
330
1d54c3a27093 audio support and pts based packet handling by Charles Henrich
alex
parents: 4350
diff changeset
331 if (tv_param_noaudio == 0 && funcs->control(tvh->priv, TVI_CONTROL_IS_AUDIO, 0) == TVI_CONTROL_TRUE)
2802
09d5c9834580 tv update
alex
parents: 2790
diff changeset
332 {
09d5c9834580 tv update
alex
parents: 2790
diff changeset
333 int audio_format;
5087
1d54c3a27093 audio support and pts based packet handling by Charles Henrich
alex
parents: 4350
diff changeset
334 int sh_audio_format;
2802
09d5c9834580 tv update
alex
parents: 2790
diff changeset
335
09d5c9834580 tv update
alex
parents: 2790
diff changeset
336 /* yeah, audio is present */
5572
8cd761968f35 BSD-BT848 TV update patch by Charles Henrich <henrich@sigbus.com>
arpi
parents: 5087
diff changeset
337
8cd761968f35 BSD-BT848 TV update patch by Charles Henrich <henrich@sigbus.com>
arpi
parents: 5087
diff changeset
338 funcs->control(tvh->priv, TVI_CONTROL_AUD_SET_SAMPLERATE,
8cd761968f35 BSD-BT848 TV update patch by Charles Henrich <henrich@sigbus.com>
arpi
parents: 5087
diff changeset
339 &tv_param_audiorate);
8cd761968f35 BSD-BT848 TV update patch by Charles Henrich <henrich@sigbus.com>
arpi
parents: 5087
diff changeset
340
2802
09d5c9834580 tv update
alex
parents: 2790
diff changeset
341 if (funcs->control(tvh->priv, TVI_CONTROL_AUD_GET_FORMAT, &audio_format) != TVI_CONTROL_TRUE)
09d5c9834580 tv update
alex
parents: 2790
diff changeset
342 goto no_audio;
5087
1d54c3a27093 audio support and pts based packet handling by Charles Henrich
alex
parents: 4350
diff changeset
343
2802
09d5c9834580 tv update
alex
parents: 2790
diff changeset
344 switch(audio_format)
09d5c9834580 tv update
alex
parents: 2790
diff changeset
345 {
09d5c9834580 tv update
alex
parents: 2790
diff changeset
346 case AFMT_U8:
09d5c9834580 tv update
alex
parents: 2790
diff changeset
347 case AFMT_S8:
09d5c9834580 tv update
alex
parents: 2790
diff changeset
348 case AFMT_U16_LE:
09d5c9834580 tv update
alex
parents: 2790
diff changeset
349 case AFMT_U16_BE:
09d5c9834580 tv update
alex
parents: 2790
diff changeset
350 case AFMT_S16_LE:
09d5c9834580 tv update
alex
parents: 2790
diff changeset
351 case AFMT_S16_BE:
09d5c9834580 tv update
alex
parents: 2790
diff changeset
352 case AFMT_S32_LE:
09d5c9834580 tv update
alex
parents: 2790
diff changeset
353 case AFMT_S32_BE:
5087
1d54c3a27093 audio support and pts based packet handling by Charles Henrich
alex
parents: 4350
diff changeset
354 sh_audio_format = 0x1; /* PCM */
2802
09d5c9834580 tv update
alex
parents: 2790
diff changeset
355 break;
09d5c9834580 tv update
alex
parents: 2790
diff changeset
356 case AFMT_IMA_ADPCM:
09d5c9834580 tv update
alex
parents: 2790
diff changeset
357 case AFMT_MU_LAW:
09d5c9834580 tv update
alex
parents: 2790
diff changeset
358 case AFMT_A_LAW:
09d5c9834580 tv update
alex
parents: 2790
diff changeset
359 case AFMT_MPEG:
09d5c9834580 tv update
alex
parents: 2790
diff changeset
360 case AFMT_AC3:
09d5c9834580 tv update
alex
parents: 2790
diff changeset
361 default:
6161
c50ea0721e78 applied 64bit patch from Ulrich Hecht <uli at suse dot de>
alex
parents: 5923
diff changeset
362 mp_msg(MSGT_TV, MSGL_ERR, "Audio type '%s (%x)' unsupported!\n",
c50ea0721e78 applied 64bit patch from Ulrich Hecht <uli at suse dot de>
alex
parents: 5923
diff changeset
363 audio_out_format_name(audio_format), audio_format);
2802
09d5c9834580 tv update
alex
parents: 2790
diff changeset
364 goto no_audio;
09d5c9834580 tv update
alex
parents: 2790
diff changeset
365 }
09d5c9834580 tv update
alex
parents: 2790
diff changeset
366
5087
1d54c3a27093 audio support and pts based packet handling by Charles Henrich
alex
parents: 4350
diff changeset
367 sh_audio = new_sh_audio(demuxer, 0);
1d54c3a27093 audio support and pts based packet handling by Charles Henrich
alex
parents: 4350
diff changeset
368
1d54c3a27093 audio support and pts based packet handling by Charles Henrich
alex
parents: 4350
diff changeset
369 funcs->control(tvh->priv, TVI_CONTROL_AUD_GET_SAMPLERATE,
1d54c3a27093 audio support and pts based packet handling by Charles Henrich
alex
parents: 4350
diff changeset
370 &sh_audio->samplerate);
1d54c3a27093 audio support and pts based packet handling by Charles Henrich
alex
parents: 4350
diff changeset
371 funcs->control(tvh->priv, TVI_CONTROL_AUD_GET_SAMPLESIZE,
1d54c3a27093 audio support and pts based packet handling by Charles Henrich
alex
parents: 4350
diff changeset
372 &sh_audio->samplesize);
1d54c3a27093 audio support and pts based packet handling by Charles Henrich
alex
parents: 4350
diff changeset
373 funcs->control(tvh->priv, TVI_CONTROL_AUD_GET_CHANNELS,
1d54c3a27093 audio support and pts based packet handling by Charles Henrich
alex
parents: 4350
diff changeset
374 &sh_audio->channels);
1d54c3a27093 audio support and pts based packet handling by Charles Henrich
alex
parents: 4350
diff changeset
375
1d54c3a27093 audio support and pts based packet handling by Charles Henrich
alex
parents: 4350
diff changeset
376 sh_audio->format = sh_audio_format;
1d54c3a27093 audio support and pts based packet handling by Charles Henrich
alex
parents: 4350
diff changeset
377 sh_audio->sample_format = audio_format;
1d54c3a27093 audio support and pts based packet handling by Charles Henrich
alex
parents: 4350
diff changeset
378
1d54c3a27093 audio support and pts based packet handling by Charles Henrich
alex
parents: 4350
diff changeset
379 sh_audio->i_bps = sh_audio->o_bps =
5572
8cd761968f35 BSD-BT848 TV update patch by Charles Henrich <henrich@sigbus.com>
arpi
parents: 5087
diff changeset
380 sh_audio->samplerate * sh_audio->samplesize *
5087
1d54c3a27093 audio support and pts based packet handling by Charles Henrich
alex
parents: 4350
diff changeset
381 sh_audio->channels;
1d54c3a27093 audio support and pts based packet handling by Charles Henrich
alex
parents: 4350
diff changeset
382
5572
8cd761968f35 BSD-BT848 TV update patch by Charles Henrich <henrich@sigbus.com>
arpi
parents: 5087
diff changeset
383 // emulate WF for win32 codecs:
8cd761968f35 BSD-BT848 TV update patch by Charles Henrich <henrich@sigbus.com>
arpi
parents: 5087
diff changeset
384 sh_audio->wf = (WAVEFORMATEX *)malloc(sizeof(WAVEFORMATEX));
5087
1d54c3a27093 audio support and pts based packet handling by Charles Henrich
alex
parents: 4350
diff changeset
385 sh_audio->wf->wFormatTag = sh_audio->format;
1d54c3a27093 audio support and pts based packet handling by Charles Henrich
alex
parents: 4350
diff changeset
386 sh_audio->wf->nChannels = sh_audio->channels;
5572
8cd761968f35 BSD-BT848 TV update patch by Charles Henrich <henrich@sigbus.com>
arpi
parents: 5087
diff changeset
387 sh_audio->wf->wBitsPerSample = sh_audio->samplesize * 8;
5087
1d54c3a27093 audio support and pts based packet handling by Charles Henrich
alex
parents: 4350
diff changeset
388 sh_audio->wf->nSamplesPerSec = sh_audio->samplerate;
5572
8cd761968f35 BSD-BT848 TV update patch by Charles Henrich <henrich@sigbus.com>
arpi
parents: 5087
diff changeset
389 sh_audio->wf->nBlockAlign = sh_audio->samplesize * sh_audio->channels;
8cd761968f35 BSD-BT848 TV update patch by Charles Henrich <henrich@sigbus.com>
arpi
parents: 5087
diff changeset
390 sh_audio->wf->nAvgBytesPerSec = sh_audio->i_bps;
8cd761968f35 BSD-BT848 TV update patch by Charles Henrich <henrich@sigbus.com>
arpi
parents: 5087
diff changeset
391
8cd761968f35 BSD-BT848 TV update patch by Charles Henrich <henrich@sigbus.com>
arpi
parents: 5087
diff changeset
392 mp_msg(MSGT_DECVIDEO, MSGL_V, " TV audio: %d channels, %d bits, %d Hz\n",
8cd761968f35 BSD-BT848 TV update patch by Charles Henrich <henrich@sigbus.com>
arpi
parents: 5087
diff changeset
393 sh_audio->wf->nChannels, sh_audio->wf->wBitsPerSample,
8cd761968f35 BSD-BT848 TV update patch by Charles Henrich <henrich@sigbus.com>
arpi
parents: 5087
diff changeset
394 sh_audio->wf->nSamplesPerSec);
2802
09d5c9834580 tv update
alex
parents: 2790
diff changeset
395
09d5c9834580 tv update
alex
parents: 2790
diff changeset
396 demuxer->audio->sh = sh_audio;
09d5c9834580 tv update
alex
parents: 2790
diff changeset
397 sh_audio->ds = demuxer->audio;
09d5c9834580 tv update
alex
parents: 2790
diff changeset
398 demuxer->audio->id = 0;
09d5c9834580 tv update
alex
parents: 2790
diff changeset
399 }
09d5c9834580 tv update
alex
parents: 2790
diff changeset
400 no_audio:
09d5c9834580 tv update
alex
parents: 2790
diff changeset
401
7329
9129781e5939 removed messy global 'tv_handle', use stream->priv for that purpose
arpi
parents: 7318
diff changeset
402 if(!(funcs->start(tvh->priv))){
9129781e5939 removed messy global 'tv_handle', use stream->priv for that purpose
arpi
parents: 7318
diff changeset
403 // start failed :(
9129781e5939 removed messy global 'tv_handle', use stream->priv for that purpose
arpi
parents: 7318
diff changeset
404 tv_uninit(tvh);
9129781e5939 removed messy global 'tv_handle', use stream->priv for that purpose
arpi
parents: 7318
diff changeset
405 return 0;
9129781e5939 removed messy global 'tv_handle', use stream->priv for that purpose
arpi
parents: 7318
diff changeset
406 }
9129781e5939 removed messy global 'tv_handle', use stream->priv for that purpose
arpi
parents: 7318
diff changeset
407 return 1;
2790
98769cea155c added tv subsystem
alex
parents:
diff changeset
408 }
98769cea155c added tv subsystem
alex
parents:
diff changeset
409
7329
9129781e5939 removed messy global 'tv_handle', use stream->priv for that purpose
arpi
parents: 7318
diff changeset
410 int demux_close_tv(demuxer_t *demuxer)
7058
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6161
diff changeset
411 {
7408
0c6948b8100f stream layer cleanup part 2
arpi
parents: 7329
diff changeset
412 tvi_handle_t *tvh=(tvi_handle_t*)(demuxer->priv);
7058
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6161
diff changeset
413 return(tvh->functions->uninit(tvh->priv));
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6161
diff changeset
414 }
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6161
diff changeset
415
2790
98769cea155c added tv subsystem
alex
parents:
diff changeset
416 /* ================== STREAM_TV ===================== */
6161
c50ea0721e78 applied 64bit patch from Ulrich Hecht <uli at suse dot de>
alex
parents: 5923
diff changeset
417 tvi_handle_t *tvi_init_dummy(char *device);
7058
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6161
diff changeset
418 tvi_handle_t *tvi_init_v4l(char *device, char *adevice);
6161
c50ea0721e78 applied 64bit patch from Ulrich Hecht <uli at suse dot de>
alex
parents: 5923
diff changeset
419 tvi_handle_t *tvi_init_bsdbt848(char *device);
c50ea0721e78 applied 64bit patch from Ulrich Hecht <uli at suse dot de>
alex
parents: 5923
diff changeset
420
2802
09d5c9834580 tv update
alex
parents: 2790
diff changeset
421 tvi_handle_t *tv_begin(void)
2790
98769cea155c added tv subsystem
alex
parents:
diff changeset
422 {
98769cea155c added tv subsystem
alex
parents:
diff changeset
423 if (!strcmp(tv_param_driver, "dummy"))
6161
c50ea0721e78 applied 64bit patch from Ulrich Hecht <uli at suse dot de>
alex
parents: 5923
diff changeset
424 return tvi_init_dummy(tv_param_device);
3249
49a0d462dffe init_v4l only present if HAVE_TV_V4L
alex
parents: 2941
diff changeset
425 #ifdef HAVE_TV_V4L
2790
98769cea155c added tv subsystem
alex
parents:
diff changeset
426 if (!strcmp(tv_param_driver, "v4l"))
7058
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6161
diff changeset
427 return tvi_init_v4l(tv_param_device, tv_param_adevice);
3249
49a0d462dffe init_v4l only present if HAVE_TV_V4L
alex
parents: 2941
diff changeset
428 #endif
5087
1d54c3a27093 audio support and pts based packet handling by Charles Henrich
alex
parents: 4350
diff changeset
429 #ifdef HAVE_TV_BSDBT848
1d54c3a27093 audio support and pts based packet handling by Charles Henrich
alex
parents: 4350
diff changeset
430 if (!strcmp(tv_param_driver, "bsdbt848"))
6161
c50ea0721e78 applied 64bit patch from Ulrich Hecht <uli at suse dot de>
alex
parents: 5923
diff changeset
431 return tvi_init_bsdbt848(tv_param_device);
5087
1d54c3a27093 audio support and pts based packet handling by Charles Henrich
alex
parents: 4350
diff changeset
432 #endif
2790
98769cea155c added tv subsystem
alex
parents:
diff changeset
433
98769cea155c added tv subsystem
alex
parents:
diff changeset
434 mp_msg(MSGT_TV, MSGL_ERR, "No such driver: %s\n", tv_param_driver);
98769cea155c added tv subsystem
alex
parents:
diff changeset
435 return(NULL);
98769cea155c added tv subsystem
alex
parents:
diff changeset
436 }
98769cea155c added tv subsystem
alex
parents:
diff changeset
437
2802
09d5c9834580 tv update
alex
parents: 2790
diff changeset
438 int tv_init(tvi_handle_t *tvh)
2790
98769cea155c added tv subsystem
alex
parents:
diff changeset
439 {
2818
9f68d309f8cb printf's changed into mp_msg
alex
parents: 2817
diff changeset
440 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
441 mp_msg(MSGT_TV, MSGL_INFO, " name: %s\n", tvh->info->name);
9f68d309f8cb printf's changed into mp_msg
alex
parents: 2817
diff changeset
442 mp_msg(MSGT_TV, MSGL_INFO, " author: %s\n", tvh->info->author);
2802
09d5c9834580 tv update
alex
parents: 2790
diff changeset
443 if (tvh->info->comment)
2818
9f68d309f8cb printf's changed into mp_msg
alex
parents: 2817
diff changeset
444 mp_msg(MSGT_TV, MSGL_INFO, " comment: %s\n", tvh->info->comment);
2790
98769cea155c added tv subsystem
alex
parents:
diff changeset
445
3815
622a9ade4517 updated
alex
parents: 3728
diff changeset
446 return(tvh->functions->init(tvh->priv));
2837
c63562f5f56f tuning worx (can set frequency)
alex
parents: 2830
diff changeset
447 }
c63562f5f56f tuning worx (can set frequency)
alex
parents: 2830
diff changeset
448
c63562f5f56f tuning worx (can set frequency)
alex
parents: 2830
diff changeset
449 int tv_uninit(tvi_handle_t *tvh)
c63562f5f56f tuning worx (can set frequency)
alex
parents: 2830
diff changeset
450 {
c63562f5f56f tuning worx (can set frequency)
alex
parents: 2830
diff changeset
451 return(tvh->functions->uninit(tvh->priv));
2790
98769cea155c added tv subsystem
alex
parents:
diff changeset
452 }
2937
4307478ad922 added support for setting color values
alex
parents: 2932
diff changeset
453
4307478ad922 added support for setting color values
alex
parents: 2932
diff changeset
454 /* utilities for mplayer (not mencoder!!) */
4307478ad922 added support for setting color values
alex
parents: 2932
diff changeset
455 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
456 {
4307478ad922 added support for setting color values
alex
parents: 2932
diff changeset
457 tvi_functions_t *funcs = tvh->functions;
4307478ad922 added support for setting color values
alex
parents: 2932
diff changeset
458
4307478ad922 added support for setting color values
alex
parents: 2932
diff changeset
459 switch(opt)
4307478ad922 added support for setting color values
alex
parents: 2932
diff changeset
460 {
4307478ad922 added support for setting color values
alex
parents: 2932
diff changeset
461 case TV_COLOR_BRIGHTNESS:
4307478ad922 added support for setting color values
alex
parents: 2932
diff changeset
462 if (value == 50)
4307478ad922 added support for setting color values
alex
parents: 2932
diff changeset
463 value = 32768;
4307478ad922 added support for setting color values
alex
parents: 2932
diff changeset
464 if (value > 50)
4307478ad922 added support for setting color values
alex
parents: 2932
diff changeset
465 {
4307478ad922 added support for setting color values
alex
parents: 2932
diff changeset
466 value *= 100;
4307478ad922 added support for setting color values
alex
parents: 2932
diff changeset
467 value += 32768;
4307478ad922 added support for setting color values
alex
parents: 2932
diff changeset
468 }
4307478ad922 added support for setting color values
alex
parents: 2932
diff changeset
469 if (value < 50)
4307478ad922 added support for setting color values
alex
parents: 2932
diff changeset
470 {
4307478ad922 added support for setting color values
alex
parents: 2932
diff changeset
471 int i;
4307478ad922 added support for setting color values
alex
parents: 2932
diff changeset
472 value *= 100;
4307478ad922 added support for setting color values
alex
parents: 2932
diff changeset
473 i = value;
4307478ad922 added support for setting color values
alex
parents: 2932
diff changeset
474 value = 32768 - i;
4307478ad922 added support for setting color values
alex
parents: 2932
diff changeset
475 }
4307478ad922 added support for setting color values
alex
parents: 2932
diff changeset
476 funcs->control(tvh->priv, TVI_CONTROL_VID_SET_BRIGHTNESS, &value);
4307478ad922 added support for setting color values
alex
parents: 2932
diff changeset
477 break;
4307478ad922 added support for setting color values
alex
parents: 2932
diff changeset
478 case TV_COLOR_HUE:
4307478ad922 added support for setting color values
alex
parents: 2932
diff changeset
479 if (value == 50)
4307478ad922 added support for setting color values
alex
parents: 2932
diff changeset
480 value = 32768;
4307478ad922 added support for setting color values
alex
parents: 2932
diff changeset
481 if (value > 50)
4307478ad922 added support for setting color values
alex
parents: 2932
diff changeset
482 {
4307478ad922 added support for setting color values
alex
parents: 2932
diff changeset
483 value *= 100;
4307478ad922 added support for setting color values
alex
parents: 2932
diff changeset
484 value += 32768;
4307478ad922 added support for setting color values
alex
parents: 2932
diff changeset
485 }
4307478ad922 added support for setting color values
alex
parents: 2932
diff changeset
486 if (value < 50)
4307478ad922 added support for setting color values
alex
parents: 2932
diff changeset
487 {
4307478ad922 added support for setting color values
alex
parents: 2932
diff changeset
488 int i;
4307478ad922 added support for setting color values
alex
parents: 2932
diff changeset
489 value *= 100;
4307478ad922 added support for setting color values
alex
parents: 2932
diff changeset
490 i = value;
4307478ad922 added support for setting color values
alex
parents: 2932
diff changeset
491 value = 32768 - i;
4307478ad922 added support for setting color values
alex
parents: 2932
diff changeset
492 }
4307478ad922 added support for setting color values
alex
parents: 2932
diff changeset
493 funcs->control(tvh->priv, TVI_CONTROL_VID_SET_HUE, &value);
4307478ad922 added support for setting color values
alex
parents: 2932
diff changeset
494 break;
4307478ad922 added support for setting color values
alex
parents: 2932
diff changeset
495 case TV_COLOR_SATURATION:
4307478ad922 added support for setting color values
alex
parents: 2932
diff changeset
496 if (value == 50)
4307478ad922 added support for setting color values
alex
parents: 2932
diff changeset
497 value = 32512;
4307478ad922 added support for setting color values
alex
parents: 2932
diff changeset
498 if (value > 50)
4307478ad922 added support for setting color values
alex
parents: 2932
diff changeset
499 {
4307478ad922 added support for setting color values
alex
parents: 2932
diff changeset
500 value *= 100;
4307478ad922 added support for setting color values
alex
parents: 2932
diff changeset
501 value += 32512;
4307478ad922 added support for setting color values
alex
parents: 2932
diff changeset
502 }
4307478ad922 added support for setting color values
alex
parents: 2932
diff changeset
503 if (value < 50)
4307478ad922 added support for setting color values
alex
parents: 2932
diff changeset
504 {
4307478ad922 added support for setting color values
alex
parents: 2932
diff changeset
505 int i;
4307478ad922 added support for setting color values
alex
parents: 2932
diff changeset
506 value *= 100;
4307478ad922 added support for setting color values
alex
parents: 2932
diff changeset
507 i = value;
4307478ad922 added support for setting color values
alex
parents: 2932
diff changeset
508 value = 32512 - i;
4307478ad922 added support for setting color values
alex
parents: 2932
diff changeset
509 }
4307478ad922 added support for setting color values
alex
parents: 2932
diff changeset
510 funcs->control(tvh->priv, TVI_CONTROL_VID_SET_SATURATION, &value);
4307478ad922 added support for setting color values
alex
parents: 2932
diff changeset
511 break;
4307478ad922 added support for setting color values
alex
parents: 2932
diff changeset
512 case TV_COLOR_CONTRAST:
4307478ad922 added support for setting color values
alex
parents: 2932
diff changeset
513 if (value == 50)
4307478ad922 added support for setting color values
alex
parents: 2932
diff changeset
514 value = 27648;
4307478ad922 added support for setting color values
alex
parents: 2932
diff changeset
515 if (value > 50)
4307478ad922 added support for setting color values
alex
parents: 2932
diff changeset
516 {
4307478ad922 added support for setting color values
alex
parents: 2932
diff changeset
517 value *= 100;
4307478ad922 added support for setting color values
alex
parents: 2932
diff changeset
518 value += 27648;
4307478ad922 added support for setting color values
alex
parents: 2932
diff changeset
519 }
4307478ad922 added support for setting color values
alex
parents: 2932
diff changeset
520 if (value < 50)
4307478ad922 added support for setting color values
alex
parents: 2932
diff changeset
521 {
4307478ad922 added support for setting color values
alex
parents: 2932
diff changeset
522 int i;
4307478ad922 added support for setting color values
alex
parents: 2932
diff changeset
523 value *= 100;
4307478ad922 added support for setting color values
alex
parents: 2932
diff changeset
524 i = value;
4307478ad922 added support for setting color values
alex
parents: 2932
diff changeset
525 value = 27648 - i;
4307478ad922 added support for setting color values
alex
parents: 2932
diff changeset
526 }
4307478ad922 added support for setting color values
alex
parents: 2932
diff changeset
527 funcs->control(tvh->priv, TVI_CONTROL_VID_SET_CONTRAST, &value);
4307478ad922 added support for setting color values
alex
parents: 2932
diff changeset
528 break;
4307478ad922 added support for setting color values
alex
parents: 2932
diff changeset
529 default:
4307478ad922 added support for setting color values
alex
parents: 2932
diff changeset
530 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
531 }
4307478ad922 added support for setting color values
alex
parents: 2932
diff changeset
532
4307478ad922 added support for setting color values
alex
parents: 2932
diff changeset
533 return(1);
4307478ad922 added support for setting color values
alex
parents: 2932
diff changeset
534 }
2941
60c1b7c0ea21 added support for norm=,chanlist=,channel= and also on-the-fly channel chaning with keys
alex
parents: 2937
diff changeset
535
7806
6a6f6b8b2ac7 set position in channel list on startup. note: hope one day we will get cleaned the int->float->int sutff ;)
alex
parents: 7472
diff changeset
536 int tv_get_freq(tvi_handle_t *tvh, unsigned long *freq)
6a6f6b8b2ac7 set position in channel list on startup. note: hope one day we will get cleaned the int->float->int sutff ;)
alex
parents: 7472
diff changeset
537 {
6a6f6b8b2ac7 set position in channel list on startup. note: hope one day we will get cleaned the int->float->int sutff ;)
alex
parents: 7472
diff changeset
538 if (tvh->functions->control(tvh->priv, TVI_CONTROL_IS_TUNER, 0) == TVI_CONTROL_TRUE)
6a6f6b8b2ac7 set position in channel list on startup. note: hope one day we will get cleaned the int->float->int sutff ;)
alex
parents: 7472
diff changeset
539 {
6a6f6b8b2ac7 set position in channel list on startup. note: hope one day we will get cleaned the int->float->int sutff ;)
alex
parents: 7472
diff changeset
540 tvh->functions->control(tvh->priv, TVI_CONTROL_TUN_GET_FREQ, freq);
6a6f6b8b2ac7 set position in channel list on startup. note: hope one day we will get cleaned the int->float->int sutff ;)
alex
parents: 7472
diff changeset
541 mp_msg(MSGT_TV, MSGL_V, "Current frequency: %lu (%.3f)\n",
6a6f6b8b2ac7 set position in channel list on startup. note: hope one day we will get cleaned the int->float->int sutff ;)
alex
parents: 7472
diff changeset
542 *freq, (float)*freq/16);
6a6f6b8b2ac7 set position in channel list on startup. note: hope one day we will get cleaned the int->float->int sutff ;)
alex
parents: 7472
diff changeset
543 }
6a6f6b8b2ac7 set position in channel list on startup. note: hope one day we will get cleaned the int->float->int sutff ;)
alex
parents: 7472
diff changeset
544 return(1);
6a6f6b8b2ac7 set position in channel list on startup. note: hope one day we will get cleaned the int->float->int sutff ;)
alex
parents: 7472
diff changeset
545 }
6a6f6b8b2ac7 set position in channel list on startup. note: hope one day we will get cleaned the int->float->int sutff ;)
alex
parents: 7472
diff changeset
546
2941
60c1b7c0ea21 added support for norm=,chanlist=,channel= and also on-the-fly channel chaning with keys
alex
parents: 2937
diff changeset
547 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
548 {
60c1b7c0ea21 added support for norm=,chanlist=,channel= and also on-the-fly channel chaning with keys
alex
parents: 2937
diff changeset
549 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
550 {
60c1b7c0ea21 added support for norm=,chanlist=,channel= and also on-the-fly channel chaning with keys
alex
parents: 2937
diff changeset
551 // 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
552
60c1b7c0ea21 added support for norm=,chanlist=,channel= and also on-the-fly channel chaning with keys
alex
parents: 2937
diff changeset
553 /* 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
554 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
555
60c1b7c0ea21 added support for norm=,chanlist=,channel= and also on-the-fly channel chaning with keys
alex
parents: 2937
diff changeset
556 tvh->functions->control(tvh->priv, TVI_CONTROL_TUN_GET_FREQ, &freq);
7318
85897ab199a4 changed message leveles (too many non-sense info messages)
alex
parents: 7163
diff changeset
557 mp_msg(MSGT_TV, MSGL_V, "Current frequency: %lu (%.3f)\n",
2941
60c1b7c0ea21 added support for norm=,chanlist=,channel= and also on-the-fly channel chaning with keys
alex
parents: 2937
diff changeset
558 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
559 }
7472
c4434bdf6e51 tons of warning fixes, also some 10l bugfixes, including Dominik's PVA bug
arpi
parents: 7408
diff changeset
560 return(1);
2941
60c1b7c0ea21 added support for norm=,chanlist=,channel= and also on-the-fly channel chaning with keys
alex
parents: 2937
diff changeset
561 }
60c1b7c0ea21 added support for norm=,chanlist=,channel= and also on-the-fly channel chaning with keys
alex
parents: 2937
diff changeset
562
60c1b7c0ea21 added support for norm=,chanlist=,channel= and also on-the-fly channel chaning with keys
alex
parents: 2937
diff changeset
563 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
564 {
60c1b7c0ea21 added support for norm=,chanlist=,channel= and also on-the-fly channel chaning with keys
alex
parents: 2937
diff changeset
565 struct CHANLIST cl;
60c1b7c0ea21 added support for norm=,chanlist=,channel= and also on-the-fly channel chaning with keys
alex
parents: 2937
diff changeset
566
60c1b7c0ea21 added support for norm=,chanlist=,channel= and also on-the-fly channel chaning with keys
alex
parents: 2937
diff changeset
567 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
568 {
60c1b7c0ea21 added support for norm=,chanlist=,channel= and also on-the-fly channel chaning with keys
alex
parents: 2937
diff changeset
569 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
570 {
5923
4241047fb315 patch by J¸«ärgen Appel <jappel@linux01.gwdg.de>:
pl
parents: 5572
diff changeset
571 cl = tvh->chanlist_s[--tvh->channel];
2941
60c1b7c0ea21 added support for norm=,chanlist=,channel= and also on-the-fly channel chaning with keys
alex
parents: 2937
diff changeset
572 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
573 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
574 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
575 }
60c1b7c0ea21 added support for norm=,chanlist=,channel= and also on-the-fly channel chaning with keys
alex
parents: 2937
diff changeset
576 }
60c1b7c0ea21 added support for norm=,chanlist=,channel= and also on-the-fly channel chaning with keys
alex
parents: 2937
diff changeset
577
60c1b7c0ea21 added support for norm=,chanlist=,channel= and also on-the-fly channel chaning with keys
alex
parents: 2937
diff changeset
578 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
579 {
4242
bbfbe9bbb956 fixed channel changing with frequencies.c
alex
parents: 3815
diff changeset
580 if (tvh->channel+1 < chanlists[tvh->chanlist].count)
2941
60c1b7c0ea21 added support for norm=,chanlist=,channel= and also on-the-fly channel chaning with keys
alex
parents: 2937
diff changeset
581 {
5923
4241047fb315 patch by J¸«ärgen Appel <jappel@linux01.gwdg.de>:
pl
parents: 5572
diff changeset
582 cl = tvh->chanlist_s[++tvh->channel];
2941
60c1b7c0ea21 added support for norm=,chanlist=,channel= and also on-the-fly channel chaning with keys
alex
parents: 2937
diff changeset
583 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
584 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
585 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
586 }
60c1b7c0ea21 added support for norm=,chanlist=,channel= and also on-the-fly channel chaning with keys
alex
parents: 2937
diff changeset
587 }
7472
c4434bdf6e51 tons of warning fixes, also some 10l bugfixes, including Dominik's PVA bug
arpi
parents: 7408
diff changeset
588 return(1);
2941
60c1b7c0ea21 added support for norm=,chanlist=,channel= and also on-the-fly channel chaning with keys
alex
parents: 2937
diff changeset
589 }
60c1b7c0ea21 added support for norm=,chanlist=,channel= and also on-the-fly channel chaning with keys
alex
parents: 2937
diff changeset
590
60c1b7c0ea21 added support for norm=,chanlist=,channel= and also on-the-fly channel chaning with keys
alex
parents: 2937
diff changeset
591 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
592 {
7472
c4434bdf6e51 tons of warning fixes, also some 10l bugfixes, including Dominik's PVA bug
arpi
parents: 7408
diff changeset
593 return(1);
2941
60c1b7c0ea21 added support for norm=,chanlist=,channel= and also on-the-fly channel chaning with keys
alex
parents: 2937
diff changeset
594 }
60c1b7c0ea21 added support for norm=,chanlist=,channel= and also on-the-fly channel chaning with keys
alex
parents: 2937
diff changeset
595
60c1b7c0ea21 added support for norm=,chanlist=,channel= and also on-the-fly channel chaning with keys
alex
parents: 2937
diff changeset
596 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
597 {
7472
c4434bdf6e51 tons of warning fixes, also some 10l bugfixes, including Dominik's PVA bug
arpi
parents: 7408
diff changeset
598 return(1);
2941
60c1b7c0ea21 added support for norm=,chanlist=,channel= and also on-the-fly channel chaning with keys
alex
parents: 2937
diff changeset
599 }
2790
98769cea155c added tv subsystem
alex
parents:
diff changeset
600 #endif /* USE_TV */