diff options
author | Miguel Freitas <miguelfreitas@users.sourceforge.net> | 2002-07-14 20:55:17 +0000 |
---|---|---|
committer | Miguel Freitas <miguelfreitas@users.sourceforge.net> | 2002-07-14 20:55:17 +0000 |
commit | 43926fa28a72a0593f97b9e5718172ce26f27612 (patch) | |
tree | 325d7b79b1eb57df6832486838e7b5f752ad471c /src/xine-engine/xine_internal.h | |
parent | 7606bfa52694101c02009db4d10f44954877b4e9 (diff) | |
download | xine-lib-43926fa28a72a0593f97b9e5718172ce26f27612.tar.gz xine-lib-43926fa28a72a0593f97b9e5718172ce26f27612.tar.bz2 |
some fixes to osd displaying (show the right time after seeks)
CVS patchset: 2264
CVS date: 2002/07/14 20:55:17
Diffstat (limited to 'src/xine-engine/xine_internal.h')
-rw-r--r-- | src/xine-engine/xine_internal.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/xine-engine/xine_internal.h b/src/xine-engine/xine_internal.h index 0c4f86d5b..efe20c3e9 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.91 2002/07/10 14:02:41 mroi Exp $ + * $Id: xine_internal.h,v 1.92 2002/07/14 20:55:17 miguelfreitas Exp $ * */ @@ -263,6 +263,8 @@ struct xine_s { void *report_codec_user_data; int playing_logo; + int curtime_needed_for_osd; + pthread_mutex_t osd_lock; }; /* @@ -442,6 +444,7 @@ char **xine_get_autoplay_mrls (xine_t *this, char *plugin_id, int *num_mrls); void xine_notify_stream_finished (xine_t *this); void xine_report_codec( xine_t *this, int codec_type, uint32_t fourcc, uint32_t buf_type, int handled ); +void xine_internal_osd (xine_t *this, char *str, int duration); /* * video decoder stuff |