summaryrefslogtreecommitdiffstats
path: root/stream
diff options
context:
space:
mode:
authornicodvb <nicodvb@b3059339-0415-0410-9bf9-f77b7e298cf2>2006-11-25 12:37:47 +0000
committernicodvb <nicodvb@b3059339-0415-0410-9bf9-f77b7e298cf2>2006-11-25 12:37:47 +0000
commitf313243ca1a718b990f0a83923d05d32d6591f3c (patch)
tree4bc1f8431b1aaf9114a366f8cd1f39f9fda230fa /stream
parentcc794c93bb6f4b45ab15cef76278194b6cefde9b (diff)
downloadmpv-f313243ca1a718b990f0a83923d05d32d6591f3c.tar.bz2
mpv-f313243ca1a718b990f0a83923d05d32d6591f3c.tar.xz
removed unused members and variables
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@21215 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'stream')
-rw-r--r--stream/stream_dvdnav.c8
-rw-r--r--stream/stream_dvdnav.h11
2 files changed, 0 insertions, 19 deletions
diff --git a/stream/stream_dvdnav.c b/stream/stream_dvdnav.c
index 72f823c5f6..039dd1940d 100644
--- a/stream/stream_dvdnav.c
+++ b/stream/stream_dvdnav.c
@@ -45,14 +45,6 @@ static struct m_struct_st stream_opts = {
stream_opts_fields
};
-int dvd_nav_skip_opening=0; /* skip opening stalls? */
-int osd_show_dvd_nav_delay=0; /* count down for dvd nav text on OSD */
-char dvd_nav_text[50]; /* for reporting stuff to OSD */
-int osd_show_dvd_nav_highlight; /* show highlight area */
-int osd_show_dvd_nav_sx; /* start x .... */
-int osd_show_dvd_nav_ex;
-int osd_show_dvd_nav_sy;
-int osd_show_dvd_nav_ey;
int dvd_nav_still=0; /* are we on a still picture? */
dvdnav_highlight_event_t dvd_nav_hl;
int dvd_nav_hl_on = 0;
diff --git a/stream/stream_dvdnav.h b/stream/stream_dvdnav.h
index 7790a75c6c..b6c60dbfe8 100644
--- a/stream/stream_dvdnav.h
+++ b/stream/stream_dvdnav.h
@@ -16,22 +16,11 @@ typedef struct {
int sleeping; /* are we sleeping? */
unsigned int sleep_until; /* timer */
int started; /* Has mplayer initialization finished? */
- unsigned char prebuf[STREAM_BUFFER_SIZE]; /* prefill buffer */
- int prelen; /* length of prefill buffer */
unsigned int duration; /* in milliseconds */
int mousex, mousey;
int title;
} dvdnav_priv_t;
-extern int dvd_nav_still;
-extern int dvd_nav_skip_opening;
-extern char dvd_nav_text[50];
-extern int osd_show_dvd_nav_delay;
-extern int osd_show_dvd_nav_highlight;
-extern int osd_show_dvd_nav_sx;
-extern int osd_show_dvd_nav_ex;
-extern int osd_show_dvd_nav_sy;
-extern int osd_show_dvd_nav_ey;
int dvdnav_number_of_subs(stream_t *stream);
int dvdnav_sid_from_lang(stream_t *stream, unsigned char *language);