Mercurial > mplayer.hg
comparison stream/stream_dvd.c @ 23381:300e9b7c499f
Remove some unused variables, patch by timwoj ieee org.
author | diego |
---|---|
date | Mon, 28 May 2007 08:42:35 +0000 |
parents | cef784b467ac |
children | 0f1c9cf1752d |
comparison
equal
deleted
inserted
replaced
23380:8ef36374e8c5 | 23381:300e9b7c499f |
---|---|
650 } | 650 } |
651 | 651 |
652 static int dvd_seek_to_time(stream_t *stream, ifo_handle_t *vts_file, double sec) | 652 static int dvd_seek_to_time(stream_t *stream, ifo_handle_t *vts_file, double sec) |
653 { | 653 { |
654 unsigned int i, j, k, timeunit, ac_time, tmap_sector=0, cell_sector=0, vobu_sector=0; | 654 unsigned int i, j, k, timeunit, ac_time, tmap_sector=0, cell_sector=0, vobu_sector=0; |
655 int t=0, t2=0; | 655 int t=0; |
656 double tm, duration; | 656 double tm, duration; |
657 off_t pos = -1; | 657 off_t pos = -1; |
658 dvd_priv_t *d = stream->priv; | 658 dvd_priv_t *d = stream->priv; |
659 vts_tmapt_t *vts_tmapt = vts_file->vts_tmapt; | 659 vts_tmapt_t *vts_tmapt = vts_file->vts_tmapt; |
660 | 660 |