| 2438 | } |
| 2439 | |
| 2440 | int bark_get_audio_data_size(struct bark_context* bctx) { |
| 2441 | if (!bctx || bctx->generated_audio == NULL) { |
| 2442 | return 0; |
| 2443 | } |
| 2444 | return bctx->n_generated_samples; |
| 2445 | } |
| 2446 | |
| 2447 | int64_t bark_get_load_time(struct bark_context* bctx) { |
| 2448 | if (!bctx) { |
nothing calls this directly
no outgoing calls
no test coverage detected