summaryrefslogtreecommitdiffstats
path: root/stream/stream_tv.c
diff options
context:
space:
mode:
authorvoroshil <voroshil@b3059339-0415-0410-9bf9-f77b7e298cf2>2007-10-14 16:44:32 +0000
committervoroshil <voroshil@b3059339-0415-0410-9bf9-f77b7e298cf2>2007-10-14 16:44:32 +0000
commit2585d1e148c0fa984b7255d558d4300613bc1388 (patch)
treea5adb473b70f70849fbef4d403322b18a55976e8 /stream/stream_tv.c
parent7713841e4d9b2c06ee9af45ffa18e1b395da75a3 (diff)
downloadmpv-2585d1e148c0fa984b7255d558d4300613bc1388.tar.bz2
mpv-2585d1e148c0fa984b7255d558d4300613bc1388.tar.xz
#ifdef's in tv.c and tv.h becomes more and more hard to maintain.
I've decided to remove all of them and control options only through cfg-common.h git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@24786 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'stream/stream_tv.c')
-rw-r--r--stream/stream_tv.c13
1 files changed, 0 insertions, 13 deletions
diff --git a/stream/stream_tv.c b/stream/stream_tv.c
index 4328e72df9..c0f2aaa2df 100644
--- a/stream/stream_tv.c
+++ b/stream/stream_tv.c
@@ -36,9 +36,7 @@ tv_param_t stream_tv_defaults = {
"europe-east", //chanlist
"pal", //norm
0, //automute
-#if defined(HAVE_TV_V4L2) || defined(HAVE_TV_DSHOW)
-1, //normid
-#endif
NULL, //device
NULL, //driver
-1, //width
@@ -51,27 +49,19 @@ tv_param_t stream_tv_defaults = {
0, //immediate;
44100, //audiorate;
0, //audio_id
-#if defined(HAVE_TV_V4L) || defined(HAVE_TV_DSHOW)
-1, //amode
-1, //volume
-#if defined(HAVE_TV_V4L)
-1, //bass
-1, //treble
-1, //balance
-1, //forcechan
0, //force_audio
-#endif
-1, //buffer_size
-#if defined(HAVE_TV_V4L)
0, //mjpeg
2, //decimation
90, //quality
-#if defined(HAVE_ALSA9) || defined(HAVE_ALSA1X)
0, //alsa
-#endif
-#endif
NULL, //adevice
-#endif
0, //brightness
0, //contrast
0, //hue
@@ -81,16 +71,13 @@ tv_param_t stream_tv_defaults = {
0, //tformat
100, //tpage
0, //tlang
-
0, //scan_autostart
50, //scan_threshold
0.5, //scan_period
-#ifdef HAVE_TV_DSHOW
0, //hidden_video_renderer;
0, //hidden_vp_renderer;
0, //system_clock;
0 //normalize_audio_chunks;
-#endif
};
#define ST_OFF(f) M_ST_OFF(tv_param_t,f)