@brief Set the padding generator for this channel @param generator Function that writes data with padding to destination (nullptr for default left-padding)
| 93 | /// @brief Set the padding generator for this channel |
| 94 | /// @param generator Function that writes data with padding to destination (nullptr for default left-padding) |
| 95 | void setPaddingGenerator(PaddingGenerator generator) FL_NOEXCEPT { |
| 96 | mPaddingGenerator = fl::move(generator); |
| 97 | } |
| 98 | |
| 99 | /// @brief Write encoded data with padding to destination buffer |
| 100 | /// |