| 1210 | } |
| 1211 | |
| 1212 | static void fifo_push( hb_fifo_t * fifo, hb_buffer_t * buf ) |
| 1213 | { |
| 1214 | if (fifo != NULL) |
| 1215 | { |
| 1216 | hb_fifo_push(fifo, buf); |
| 1217 | } |
| 1218 | else |
| 1219 | { |
| 1220 | hb_buffer_close(&buf); |
| 1221 | } |
| 1222 | } |
| 1223 | |
| 1224 | static void streamFlush( sync_stream_t * stream ) |
| 1225 | { |
no test coverage detected