diff options
author | James Courtier-Dutton <jcdutton@users.sourceforge.net> | 2002-03-31 20:38:40 +0000 |
---|---|---|
committer | James Courtier-Dutton <jcdutton@users.sourceforge.net> | 2002-03-31 20:38:40 +0000 |
commit | 91db2da5281ab92bb44ac227d85c0513f645124f (patch) | |
tree | 5d9d749ed2be411a0148f1c359e34a2ef750f7f7 /src/xine-engine | |
parent | 8dca33fc6e4c3149dbcbd7671b5578287414679d (diff) | |
download | xine-lib-91db2da5281ab92bb44ac227d85c0513f645124f.tar.gz xine-lib-91db2da5281ab92bb44ac227d85c0513f645124f.tar.bz2 |
Set all pts variabled to int64_t.
CVS patchset: 1651
CVS date: 2002/03/31 20:38:40
Diffstat (limited to 'src/xine-engine')
-rw-r--r-- | src/xine-engine/events.h | 4 | ||||
-rw-r--r-- | src/xine-engine/spu_decoder.h | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/src/xine-engine/events.h b/src/xine-engine/events.h index 8874fab3c..3ad501644 100644 --- a/src/xine-engine/events.h +++ b/src/xine-engine/events.h @@ -131,9 +131,9 @@ typedef struct { */ typedef struct { xine_event_t event; - uint8_t *buffer; + uint8_t *buffer; uint32_t buf_len; - uint32_t pts; + int64_t pts; uint32_t scr; } xine_closed_caption_event_t; diff --git a/src/xine-engine/spu_decoder.h b/src/xine-engine/spu_decoder.h index 108ec35ed..8a9c887be 100644 --- a/src/xine-engine/spu_decoder.h +++ b/src/xine-engine/spu_decoder.h @@ -19,7 +19,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: spu_decoder.h,v 1.4 2001/07/18 21:38:17 f1rmb Exp $ + * $Id: spu_decoder.h,v 1.5 2002/03/31 20:38:43 jcdutton Exp $ */ #ifndef HAVE_SPU_OUT_H #define HAVE_SPU_OUT_H @@ -77,7 +77,7 @@ struct spu_functions_s { void (*write_spu_data)(spu_functions_t *this, int16_t* spu_data, uint32_t num_samples, - uint32_t pts); + int64_t pts); /* * this is called when the decoder no longer uses the spu |