| 737 | |
| 738 | namespace cmd { |
| 739 | void init_video() { |
| 740 | reg(std::make_unique<video_aspect_cinematic>()); |
| 741 | reg(std::make_unique<video_aspect_custom>()); |
| 742 | reg(std::make_unique<video_aspect_default>()); |
| 743 | reg(std::make_unique<video_aspect_full>()); |
| 744 | reg(std::make_unique<video_aspect_wide>()); |
| 745 | reg(std::make_unique<video_close>()); |
| 746 | reg(std::make_unique<video_copy_coordinates>()); |
| 747 | reg(std::make_unique<video_cycle_subtitles_provider>()); |
| 748 | reg(std::make_unique<video_detach>()); |
| 749 | reg(std::make_unique<video_details>()); |
| 750 | reg(std::make_unique<video_focus_seek>()); |
| 751 | reg(std::make_unique<video_frame_copy>()); |
| 752 | reg(std::make_unique<video_frame_copy_raw>()); |
| 753 | reg(std::make_unique<video_frame_next>()); |
| 754 | reg(std::make_unique<video_frame_next_boundary>()); |
| 755 | reg(std::make_unique<video_frame_next_keyframe>()); |
| 756 | reg(std::make_unique<video_frame_next_large>()); |
| 757 | reg(std::make_unique<video_frame_prev>()); |
| 758 | reg(std::make_unique<video_frame_prev_boundary>()); |
| 759 | reg(std::make_unique<video_frame_prev_keyframe>()); |
| 760 | reg(std::make_unique<video_frame_prev_large>()); |
| 761 | reg(std::make_unique<video_frame_save>()); |
| 762 | reg(std::make_unique<video_frame_save_raw>()); |
| 763 | reg(std::make_unique<video_jump>()); |
| 764 | reg(std::make_unique<video_jump_end>()); |
| 765 | reg(std::make_unique<video_jump_start>()); |
| 766 | reg(std::make_unique<video_open>()); |
| 767 | reg(std::make_unique<video_open_dummy>()); |
| 768 | reg(std::make_unique<video_opt_autoscroll>()); |
| 769 | reg(std::make_unique<video_play>()); |
| 770 | reg(std::make_unique<video_play_line>()); |
| 771 | reg(std::make_unique<video_show_overscan>()); |
| 772 | reg(std::make_unique<video_stop>()); |
| 773 | reg(std::make_unique<video_zoom_100>()); |
| 774 | reg(std::make_unique<video_zoom_200>()); |
| 775 | reg(std::make_unique<video_zoom_50>()); |
| 776 | reg(std::make_unique<video_zoom_in>()); |
| 777 | reg(std::make_unique<video_zoom_out>()); |
| 778 | } |
| 779 | } |
no test coverage detected