| 534 | |
| 535 | namespace cmd { |
| 536 | void init_audio() { |
| 537 | reg(std::make_unique<audio_autocommit>()); |
| 538 | reg(std::make_unique<audio_autonext>()); |
| 539 | reg(std::make_unique<audio_autoscroll>()); |
| 540 | reg(std::make_unique<audio_close>()); |
| 541 | reg(std::make_unique<audio_commit>()); |
| 542 | reg(std::make_unique<audio_commit_default>()); |
| 543 | reg(std::make_unique<audio_commit_next>()); |
| 544 | reg(std::make_unique<audio_commit_stay>()); |
| 545 | reg(std::make_unique<audio_go_to>()); |
| 546 | reg(std::make_unique<audio_karaoke>()); |
| 547 | reg(std::make_unique<audio_open>()); |
| 548 | reg(std::make_unique<audio_open_blank>()); |
| 549 | reg(std::make_unique<audio_open_noise>()); |
| 550 | reg(std::make_unique<audio_open_video>()); |
| 551 | reg(std::make_unique<audio_play_after>()); |
| 552 | reg(std::make_unique<audio_play_before>()); |
| 553 | reg(std::make_unique<audio_play_begin>()); |
| 554 | reg(std::make_unique<audio_play_end>()); |
| 555 | reg(std::make_unique<audio_play_current_selection>()); |
| 556 | reg(std::make_unique<audio_play_current_line>()); |
| 557 | reg(std::make_unique<audio_play_selection>()); |
| 558 | reg(std::make_unique<audio_play_to_end>()); |
| 559 | reg(std::make_unique<audio_play_toggle>()); |
| 560 | reg(std::make_unique<audio_save_clip>()); |
| 561 | reg(std::make_unique<audio_scroll_left>()); |
| 562 | reg(std::make_unique<audio_scroll_right>()); |
| 563 | reg(std::make_unique<audio_stop>()); |
| 564 | reg(std::make_unique<audio_toggle_spectrum>()); |
| 565 | reg(std::make_unique<audio_vertical_link>()); |
| 566 | reg(std::make_unique<audio_view_spectrum>()); |
| 567 | reg(std::make_unique<audio_view_waveform>()); |
| 568 | } |
| 569 | } |
no test coverage detected