Changeset 275 for trunk/fm_server/src/fm_buffer.h
- Timestamp:
- 01/08/09 22:03:17 (3 years ago)
- Files:
-
- 1 modified
-
trunk/fm_server/src/fm_buffer.h (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/fm_server/src/fm_buffer.h
r246 r275 40 40 gfloat *data; 41 41 gfloat * channel_data[FM_CHANNELS_LAST]; 42 guint n_channels; 43 42 44 gboolean discont; // the buffer is a start of a discontinuous section 43 45 gboolean silence; // the whole buffer contains silence 44 46 45 guint n_channels;46 47 47 guint allocated_samples; 48 48 guint used_samples; 49 50 49 guint requested_samples; 51 50 52 51 gint64 timestamp_ns; // real timestamp from start of the song 53 // gint64 timestamp_samples;54 52 guint64 duration; // real duration of AUDIO (not silence) in the buffer 55 53 }; … … 78 76 79 77 void 80 fm_buffer_reset _flags(FmBuffer *buffer);78 fm_buffer_reset (FmBuffer *buffer); 81 79 82 80
