summaryrefslogtreecommitdiffstats
path: root/libmpdemux
diff options
context:
space:
mode:
authorrtognimp <rtognimp@b3059339-0415-0410-9bf9-f77b7e298cf2>2006-01-04 22:21:32 +0000
committerrtognimp <rtognimp@b3059339-0415-0410-9bf9-f77b7e298cf2>2006-01-04 22:21:32 +0000
commit6dafd56e2d85ce2af53485275a192bde5b5c081b (patch)
treede6a003e04d1422010bde0bcc394a104a56e137d /libmpdemux
parent0d02e3700137847d1f6bf4a82955c3203f7eb8b3 (diff)
downloadmpv-6dafd56e2d85ce2af53485275a192bde5b5c081b.tar.bz2
mpv-6dafd56e2d85ce2af53485275a192bde5b5c081b.tar.xz
1000.0l timestamps are float
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@17317 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'libmpdemux')
-rw-r--r--libmpdemux/demux_real.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libmpdemux/demux_real.c b/libmpdemux/demux_real.c
index 5348c06b19..0e601f1e85 100644
--- a/libmpdemux/demux_real.c
+++ b/libmpdemux/demux_real.c
@@ -114,7 +114,7 @@ typedef struct {
int coded_framesize[MAX_STREAMS]; ///< coded frame size, per stream
int audiopk_size[MAX_STREAMS]; ///< audio packet size
unsigned char *audio_buf; ///< place to store reordered audio data
- int audio_timestamp; ///< timestamp for all audio packets in a block
+ float audio_timestamp; ///< timestamp for all audio packets in a block
int sub_packet_cnt; ///< number of subpacket already received
int audio_filepos; ///< file position of first audio packet in block
} real_priv_t;