comparison src/madplug/plugin.h @ 997:e46b98155d5d trunk

[svn] - fix a bug which counts number of frames twice in handling xing header. - now fileinfo dialog calculates play length even though TLEN tag exists so that it can overwrite wrong TLEN tag.
author yaz
date Tue, 01 May 2007 12:49:27 -0700
parents a8494c2a87eb
children 4993976d7ed0
comparison
equal deleted inserted replaced
996:34da98fd7d26 997:e46b98155d5d
50 struct mad_info_t 50 struct mad_info_t
51 { 51 {
52 /* InputPlayback */ 52 /* InputPlayback */
53 InputPlayback *playback; 53 InputPlayback *playback;
54 54
55 /* flags */ 55 /* seek time */
56 gulong seek; /**< seek time in milliseconds */ 56 gulong seek; /**< seek time in milliseconds */
57 57
58 /* state */ 58 /* state */
59 guint current_frame;/**< current mp3 frame */ 59 guint current_frame;/**< current mp3 frame */
60 mad_timer_t pos; /**< current play position */ 60 mad_timer_t pos; /**< current play position */
96 gchar *url; 96 gchar *url;
97 gchar *filename; 97 gchar *filename;
98 VFSFile *infile; 98 VFSFile *infile;
99 gint offset; 99 gint offset;
100 100
101 /* flags */
101 gboolean remote; 102 gboolean remote;
103 gboolean fileinfo_request;
102 104
103 }; 105 };
104 106
105 struct audmad_config_t 107 struct audmad_config_t
106 { 108 {