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/libmpg123/interface.c | |
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/libmpg123/interface.c')
-rw-r--r-- | src/libmpg123/interface.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/libmpg123/interface.c b/src/libmpg123/interface.c index 45c78c604..fccc19abe 100644 --- a/src/libmpg123/interface.c +++ b/src/libmpg123/interface.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: interface.c,v 1.5 2001/08/21 19:39:50 jcdutton Exp $ + * $Id: interface.c,v 1.6 2002/03/31 20:38:41 jcdutton Exp $ */ #include <stdlib.h> @@ -78,7 +78,7 @@ int head_check(struct mpstr *mp) } void mpg_audio_decode_data (mpgaudio_t *mp, uint8_t *data, uint8_t *data_end, - uint32_t pts) + int64_t pts) { while (1) { |