diff options
| author | Miguel Freitas <miguelfreitas@users.sourceforge.net> | 2002-12-21 16:13:43 +0000 |
|---|---|---|
| committer | Miguel Freitas <miguelfreitas@users.sourceforge.net> | 2002-12-21 16:13:43 +0000 |
| commit | 802b0c315ee5f387347c586009c4142cf658350e (patch) | |
| tree | bfa4b06d002ea08bac9ccac9f7b25748b0dee0bd /src/xine-engine/xine_internal.h | |
| parent | 79a12c84509bc784703a711ad1e515b61bb24a95 (diff) | |
| download | xine-lib-802b0c315ee5f387347c586009c4142cf658350e.tar.gz xine-lib-802b0c315ee5f387347c586009c4142cf658350e.tar.bz2 | |
xine_get_pos_length should return zero if current position is unknown. this
prevents the gui from drawing slider at wrong positions during seek.
CVS patchset: 3609
CVS date: 2002/12/21 16:13:43
Diffstat (limited to 'src/xine-engine/xine_internal.h')
| -rw-r--r-- | src/xine-engine/xine_internal.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/xine-engine/xine_internal.h b/src/xine-engine/xine_internal.h index 67da17d62..5f8947147 100644 --- a/src/xine-engine/xine_internal.h +++ b/src/xine-engine/xine_internal.h @@ -17,7 +17,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: xine_internal.h,v 1.115 2002/12/21 12:56:52 miguelfreitas Exp $ + * $Id: xine_internal.h,v 1.116 2002/12/21 16:13:43 miguelfreitas Exp $ * */ @@ -130,6 +130,7 @@ struct extra_info_s { off_t input_length; /* remember the length of the input source */ int input_time;/* time offset in seconds from beginning of stream */ uint32_t frame_number; /* number of current frame if known */ + int seek_count; /* internal engine use */ }; /* @@ -233,6 +234,7 @@ struct xine_stream_s { int demux_action_pending; extra_info_t *current_extra_info; + int video_seek_count; int err; }; |
