diff options
| author | Jedidiah Barber <contact@jedbarber.id.au> | 2023-07-20 18:53:27 +1200 |
|---|---|---|
| committer | Jedidiah Barber <contact@jedbarber.id.au> | 2023-07-20 18:53:27 +1200 |
| commit | 734544d457cb098c1d434798528670e0bf156cdb (patch) | |
| tree | 2fe3979b7ce477d9695fe1742e93972065406554 /src/c_asndfile_command.h | |
| parent | 049d2a9a337331295b4a2d4ad13061bc73536236 (diff) | |
Completed command API
Diffstat (limited to 'src/c_asndfile_command.h')
| -rw-r--r-- | src/c_asndfile_command.h | 14 |
1 files changed, 12 insertions, 2 deletions
diff --git a/src/c_asndfile_command.h b/src/c_asndfile_command.h index a9ed13e..41738f5 100644 --- a/src/c_asndfile_command.h +++ b/src/c_asndfile_command.h @@ -48,9 +48,14 @@ extern const int sfc_get_broadcast_info; extern const int sfc_set_broadcast_info; extern const int sfc_get_channel_map_info; extern const int sfc_set_channel_map_info; -// ... +extern const int sfc_get_cart_info; +extern const int sfc_set_cart_info; +extern const int sfc_get_loop_info; +extern const int sfc_get_instrument; +extern const int sfc_set_instrument; extern const int sfc_get_cue_count; -// ... +extern const int sfc_get_cue; +extern const int sfc_set_cue; extern const int sfc_rf64_auto_downgrade; extern const int sfc_get_original_samplerate; extern const int sfc_set_original_samplerate; @@ -60,6 +65,11 @@ extern const int sfc_set_bitrate_mode; extern const int sf_ambisonic_none; extern const int sf_ambisonic_b_format; +extern const int sf_loop_none; +extern const int sf_loop_forward; +extern const int sf_loop_backward; +extern const int sf_loop_alternating; + extern const int sf_bitrate_mode_constant; extern const int sf_bitrate_mode_average; extern const int sf_bitrate_mode_variable; |
