diff options
author | Miguel Freitas <miguelfreitas@users.sourceforge.net> | 2003-01-10 11:57:15 +0000 |
---|---|---|
committer | Miguel Freitas <miguelfreitas@users.sourceforge.net> | 2003-01-10 11:57:15 +0000 |
commit | 4b7cfbfb7aa9d3af0f483b15b32882aa453f87a7 (patch) | |
tree | 36073c846d54ce98a71d255651e78abe69dc2035 /src/demuxers/demux_nsf.c | |
parent | a4318a6700f307c76487a66a196860986bd1b781 (diff) | |
download | xine-lib-4b7cfbfb7aa9d3af0f483b15b32882aa453f87a7.tar.gz xine-lib-4b7cfbfb7aa9d3af0f483b15b32882aa453f87a7.tar.bz2 |
internal input_time is miliseconds now
CVS patchset: 3851
CVS date: 2003/01/10 11:57:15
Diffstat (limited to 'src/demuxers/demux_nsf.c')
-rw-r--r-- | src/demuxers/demux_nsf.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/demuxers/demux_nsf.c b/src/demuxers/demux_nsf.c index 181556150..5744d1f19 100644 --- a/src/demuxers/demux_nsf.c +++ b/src/demuxers/demux_nsf.c @@ -28,7 +28,7 @@ * For more information regarding the NSF format, visit: * http://www.tripoint.org/kevtris/nes/nsfspec.txt * - * $Id: demux_nsf.c,v 1.4 2003/01/09 04:23:14 tmmm Exp $ + * $Id: demux_nsf.c,v 1.5 2003/01/10 11:57:17 miguelfreitas Exp $ */ #ifdef HAVE_CONFIG_H @@ -187,7 +187,7 @@ static int demux_nsf_send_chunk(demux_plugin_t *this_gen) { buf->type = BUF_AUDIO_NSF; buf->extra_info->input_pos = this->current_song - 1; buf->extra_info->input_length = this->total_songs; - buf->extra_info->input_time = this->current_pts / 90000; + buf->extra_info->input_time = this->current_pts / 90; buf->pts = this->current_pts; buf->size = 0; this->audio_fifo->put (this->audio_fifo, buf); |