| 2431 | } |
| 2432 | |
| 2433 | float* bark_get_audio_data(struct bark_context* bctx) { |
| 2434 | if (!bctx) { |
| 2435 | return nullptr; |
| 2436 | } |
| 2437 | return bctx->generated_audio; |
| 2438 | } |
| 2439 | |
| 2440 | int bark_get_audio_data_size(struct bark_context* bctx) { |
| 2441 | if (!bctx || bctx->generated_audio == NULL) { |
nothing calls this directly
no outgoing calls
no test coverage detected