diff options
author | Michael Roitzsch <mroi@users.sourceforge.net> | 2004-06-14 13:45:46 +0000 |
---|---|---|
committer | Michael Roitzsch <mroi@users.sourceforge.net> | 2004-06-14 13:45:46 +0000 |
commit | b46b8d830f855b006c4688dbb68e813d152fe9f2 (patch) | |
tree | e1d46f75f97e446d7c3fd12bda69ffd7ad21e313 | |
parent | adf8bd9cda8ab5b6a644dc537943749a1c295d86 (diff) | |
download | xine-lib-b46b8d830f855b006c4688dbb68e813d152fe9f2.tar.gz xine-lib-b46b8d830f855b006c4688dbb68e813d152fe9f2.tar.bz2 |
since we do not store that in extra_info any more, this call is obsolete
CVS patchset: 6689
CVS date: 2004/06/14 13:45:46
-rw-r--r-- | src/input/input_dvd.c | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/src/input/input_dvd.c b/src/input/input_dvd.c index 40987d00c..909c827e8 100644 --- a/src/input/input_dvd.c +++ b/src/input/input_dvd.c @@ -18,7 +18,7 @@ * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA * - * $Id: input_dvd.c,v 1.181 2004/06/13 21:28:56 miguelfreitas Exp $ + * $Id: input_dvd.c,v 1.182 2004/06/14 13:45:46 mroi Exp $ * */ @@ -773,8 +773,6 @@ static buf_element_t *dvd_plugin_read_block (input_plugin_t *this_gen, } if (this->pg_length && this->pgc_length) { - int pos, length; - dvdnav_get_position(this->dvdnav, &pos, &length); switch (((dvd_input_class_t *)this->input_plugin.input_class)->seek_mode) { case 0: /* PGC based seeking */ buf->extra_info->total_time = this->pgc_length / 90; @@ -1771,6 +1769,9 @@ static void *init_class (xine_t *xine, void *data) { /* * $Log: input_dvd.c,v $ + * Revision 1.182 2004/06/14 13:45:46 mroi + * since we do not store that in extra_info any more, this call is obsolete + * * Revision 1.181 2004/06/13 21:28:56 miguelfreitas * implement steps 1, 2, 3 and 4 of the seeking proposal: * http://article.gmane.org/gmane.comp.video.xine.devel/9532 |