diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/bank.c | 13 |
1 files changed, 12 insertions, 1 deletions
@@ -140,6 +140,7 @@ xas_bank_player *xas_bank_player_new(xas_bank *bank) { player->bank = bank; player->status = XAS_BANK_PLAYER_STOPPED; player->gain = XAS_BANK_PLAYER_DEFAULT_GAIN; + player->flags = XAS_BANK_PLAYER_NONE; player->entry = 0; player->index = 0; @@ -195,6 +196,12 @@ int xas_bank_player_stop(xas_bank_player *player) { return 0; } +int xas_bank_player_set_flags(xas_bank_player *player, int flags) { + player->flags = flags; + + return 0; +} + int xas_bank_player_playing(xas_bank_player *player) { return player->status == XAS_BANK_PLAYER_PLAYING; } @@ -229,7 +236,11 @@ static ssize_t stream_fill(xas_bank_player *player, index_o += amount; if (player->index == entry->duration) { - xas_bank_player_stop(player); + if (player->flags & XAS_BANK_PLAYER_LOOP) { + player->index = 0; + } else { + xas_bank_player_stop(player); + } } } else { xas_audio_zero(bank->format, dest, index_o, left); |