Lines Matching refs:float_buffer
17 struct float_buffer {
24 * Creates an float_buffer.
29 static inline struct float_buffer *float_buffer_create(
33 struct float_buffer *b;
35 b = (struct float_buffer *)calloc(1, sizeof(*b));
48 static inline void float_buffer_destroy(struct float_buffer **b)
59 /* Gets the write pointer of given float_buffer. */
60 static inline float *const *float_buffer_write_pointer(struct float_buffer *b)
70 /* Gets the number of frames can write to the float_buffer. */
71 static inline unsigned int float_buffer_writable(struct float_buffer *b)
76 /* Marks |nwritten| of frames as written to float_buffer. */
77 static inline void float_buffer_written(struct float_buffer *b,
83 /* Gets the read pointer of given float_buffer. */
84 static inline float *const *float_buffer_read_pointer(struct float_buffer *b,
109 /* Gets the buffer level in frames queued in float_buffer. */
110 static inline unsigned int float_buffer_level(struct float_buffer *b)
115 /* Resets float_buffer to initial state. */
116 static inline void float_buffer_reset(struct float_buffer *b)
121 /* Marks |nread| frames as read in float_buffer. */
122 static inline void float_buffer_read(struct float_buffer *b,