summaryrefslogtreecommitdiffstats
path: root/stream/stream_dvd.h
diff options
context:
space:
mode:
authorwm4 <wm4@nowhere>2014-06-10 22:14:23 +0200
committerwm4 <wm4@nowhere>2014-06-11 00:39:13 +0200
commit2fc3be582c8c5aa510c92c7602ce72d5a1daa0ed (patch)
treeda2f1c0f30e82ea1d6d57e5fc08f0ac7983f6b47 /stream/stream_dvd.h
parent35e6d1abe0315caee3f21ca3853d76423baa0c91 (diff)
downloadmpv-2fc3be582c8c5aa510c92c7602ce72d5a1daa0ed.tar.bz2
mpv-2fc3be582c8c5aa510c92c7602ce72d5a1daa0ed.tar.xz
stream_dvd: minor cleanups
We don't need a separate stream_dvd.h header file anymore. Some dead functions become apparent; remove them.
Diffstat (limited to 'stream/stream_dvd.h')
-rw-r--r--stream/stream_dvd.h72
1 files changed, 0 insertions, 72 deletions
diff --git a/stream/stream_dvd.h b/stream/stream_dvd.h
deleted file mode 100644
index 0f509b3e35..0000000000
--- a/stream/stream_dvd.h
+++ /dev/null
@@ -1,72 +0,0 @@
-/*
- * This file is part of MPlayer.
- *
- * MPlayer is free software; you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation; either version 2 of the License, or
- * (at your option) any later version.
- *
- * MPlayer is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License along
- * with MPlayer; if not, write to the Free Software Foundation, Inc.,
- * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
- */
-
-#ifndef MPLAYER_STREAM_DVD_H
-#define MPLAYER_STREAM_DVD_H
-
-#include "config.h"
-#include <stdint.h>
-#include <dvdread/dvd_reader.h>
-#include <dvdread/ifo_types.h>
-#include <dvdread/ifo_read.h>
-#include <dvdread/nav_read.h>
-#include "stream.h"
-#include "options/m_option.h"
-
-typedef struct {
- dvd_reader_t *dvd;
- dvd_file_t *title;
- ifo_handle_t *vmg_file;
- tt_srpt_t *tt_srpt;
- ifo_handle_t *vts_file;
- vts_ptt_srpt_t *vts_ptt_srpt;
- pgc_t *cur_pgc;
-//
- int cur_title;
- int cur_cell;
- int last_cell;
- int cur_pack;
- int cell_last_pack;
- int cur_pgc_idx;
-// Navi:
- int packs_left;
- dsi_t dsi_pack;
- int angle_seek;
- unsigned int *cell_times_table;
-// audio datas
- int nr_of_channels;
- stream_language_t audio_streams[32];
-// subtitles
- int nr_of_subtitles;
- stream_language_t subtitles[32];
-
- int dvd_angle;
- char *dvd_device_current;
- int dvd_speed;
- int dvd_title;
-
- int cfg_title;
- char *cfg_device;
-} dvd_priv_t;
-
-int dvd_number_of_subs(stream_t *stream);
-int dvd_aid_from_lang(stream_t *stream, char **lang);
-int dvd_sid_from_lang(stream_t *stream, char **lang);
-int dvd_chapter_from_cell(dvd_priv_t *dvd,int title,int cell);
-
-#endif /* MPLAYER_STREAM_DVD_H */