├── .github ├── lint-device-urls.sh ├── super-linter.env └── workflows │ ├── build-dockerfiles.yml │ ├── lint.yml │ └── manifest-schemas.yml ├── .gitignore ├── .markdownlint.yml ├── .textlintrc ├── .vscode ├── extensions.json └── settings.json ├── 3.4 ├── api │ └── capture │ │ └── html │ │ ├── axis-logo.png │ │ ├── bc_s.png │ │ ├── bdwn.png │ │ ├── capture_8h.html │ │ ├── capture_8h.js │ │ ├── capture_8h_source.html │ │ ├── capture__native_8h.html │ │ ├── capture__native_8h.js │ │ ├── capture__native_8h_source.html │ │ ├── closed.png │ │ ├── customdoxygen.css │ │ ├── deprecated.html │ │ ├── doc.png │ │ ├── doxygen.css │ │ ├── doxygen.png │ │ ├── dynsections.js │ │ ├── files.html │ │ ├── files.js │ │ ├── folderclosed.png │ │ ├── folderopen.png │ │ ├── globals.html │ │ ├── globals_defs.html │ │ ├── globals_func.html │ │ ├── globals_type.html │ │ ├── index.html │ │ ├── jquery.js │ │ ├── menu.js │ │ ├── menudata.js │ │ ├── nav_f.png │ │ ├── nav_g.png │ │ ├── nav_h.png │ │ ├── navtree.css │ │ ├── navtree.js │ │ ├── navtreedata.js │ │ ├── navtreeindex0.js │ │ ├── open.png │ │ ├── pages.html │ │ ├── resize.js │ │ ├── splitbar.png │ │ ├── sync_off.png │ │ ├── sync_on.png │ │ ├── tab_a.png │ │ ├── tab_b.png │ │ ├── tab_h.png │ │ ├── tab_s.png │ │ └── tabs.css ├── main │ └── html │ │ ├── acap3_api.html │ │ └── index.html └── sdk │ └── html │ └── index.html ├── 3.5 ├── api │ ├── axaudio │ │ ├── examples │ │ │ ├── LICENSE │ │ │ ├── Makefile │ │ │ ├── README │ │ │ ├── axaudioexample.c │ │ │ └── package.conf │ │ └── html │ │ │ ├── annotated.html │ │ │ ├── annotated_dup.js │ │ │ ├── ax__audio__config_8h_source.html │ │ │ ├── ax__audio__datatypes_8h_source.html │ │ │ ├── ax__audio__error_8h.html │ │ │ ├── ax__audio__error_8h.js │ │ │ ├── ax__audio__error_8h_source.html │ │ │ ├── ax__audio__output_8h_source.html │ │ │ ├── ax__audio__utils_8h_source.html │ │ │ ├── axaudio_8h.html │ │ │ ├── axaudio_8h.js │ │ │ ├── axaudio_8h_source.html │ │ │ ├── axaudioexample_8c-example.html │ │ │ ├── axis-logo.png │ │ │ ├── bc_s.png │ │ │ ├── bdwn.png │ │ │ ├── classes.html │ │ │ ├── closed.png │ │ │ ├── common_8h_source.html │ │ │ ├── customdoxygen.css │ │ │ ├── doc.png │ │ │ ├── doxygen.css │ │ │ ├── doxygen.png │ │ │ ├── dynsections.js │ │ │ ├── examples.html │ │ │ ├── examples.js │ │ │ ├── files.html │ │ │ ├── files.js │ │ │ ├── folderclosed.png │ │ │ ├── folderopen.png │ │ │ ├── globals.html │ │ │ ├── globals_defs.html │ │ │ ├── globals_enum.html │ │ │ ├── globals_eval.html │ │ │ ├── globals_func.html │ │ │ ├── globals_type.html │ │ │ ├── index.html │ │ │ ├── jquery.js │ │ │ ├── menu.js │ │ │ ├── menudata.js │ │ │ ├── nav_f.png │ │ │ ├── nav_g.png │ │ │ ├── nav_h.png │ │ │ ├── navtree.css │ │ │ ├── navtree.js │ │ │ ├── navtreedata.js │ │ │ ├── navtreeindex0.js │ │ │ ├── open.png │ │ │ ├── resize.js │ │ │ ├── splitbar.png │ │ │ ├── struct__AXAudioFrame.html │ │ │ ├── struct__AXAudioFrame.js │ │ │ ├── struct__AXAudioOutput.html │ │ │ ├── struct__AXAudioOutput.js │ │ │ ├── struct__AXAudioStream.html │ │ │ ├── struct__AXAudioStream.js │ │ │ ├── sync_off.png │ │ │ ├── sync_on.png │ │ │ ├── tab_a.png │ │ │ ├── tab_b.png │ │ │ ├── tab_h.png │ │ │ ├── tab_s.png │ │ │ └── tabs.css │ ├── axevent │ │ ├── examples │ │ │ ├── Makefile │ │ │ ├── element_item_example │ │ │ │ ├── LICENSE │ │ │ │ ├── Makefile │ │ │ │ ├── ax_event_element_item_example.c │ │ │ │ └── package.conf │ │ │ ├── key_value_set_example1 │ │ │ │ ├── LICENSE │ │ │ │ ├── Makefile │ │ │ │ ├── ax_event_key_value_set_example1.c │ │ │ │ └── package.conf │ │ │ ├── key_value_set_example2 │ │ │ │ ├── LICENSE │ │ │ │ ├── Makefile │ │ │ │ ├── ax_event_key_value_set_example2.c │ │ │ │ └── package.conf │ │ │ ├── property_state_declaration_example │ │ │ │ ├── LICENSE │ │ │ │ ├── Makefile │ │ │ │ ├── ax_event_property_state_declaration_example.c │ │ │ │ └── package.conf │ │ │ ├── property_state_declaration_from_template_example │ │ │ │ ├── LICENSE │ │ │ │ ├── Makefile │ │ │ │ ├── ax_event_property_state_declaration_from_template_example.c │ │ │ │ └── package.conf │ │ │ ├── send_event_example │ │ │ │ ├── LICENSE │ │ │ │ ├── Makefile │ │ │ │ ├── ax_event_send_event_example.c │ │ │ │ └── package.conf │ │ │ ├── stateless_declaration_example │ │ │ │ ├── LICENSE │ │ │ │ ├── Makefile │ │ │ │ ├── ax_event_stateless_declaration_example.c │ │ │ │ └── package.conf │ │ │ ├── stateless_declaration_from_template_example │ │ │ │ ├── LICENSE │ │ │ │ ├── Makefile │ │ │ │ ├── ax_event_stateless_declaration_from_template_example.c │ │ │ │ └── package.conf │ │ │ └── subscription_example │ │ │ │ ├── LICENSE │ │ │ │ ├── Makefile │ │ │ │ ├── ax_event_subscription_example.c │ │ │ │ └── package.conf │ │ └── html │ │ │ ├── ax__event_8h.html │ │ │ ├── ax__event_8h.js │ │ │ ├── ax__event_8h_source.html │ │ │ ├── ax__event__element__item_8h.html │ │ │ ├── ax__event__element__item_8h.js │ │ │ ├── ax__event__element__item_8h_source.html │ │ │ ├── ax__event__error_8h.html │ │ │ ├── ax__event__error_8h.js │ │ │ ├── ax__event__error_8h_source.html │ │ │ ├── ax__event__handler_8h.html │ │ │ ├── ax__event__handler_8h.js │ │ │ ├── ax__event__handler_8h_source.html │ │ │ ├── ax__event__key__value__set_8h.html │ │ │ ├── ax__event__key__value__set_8h.js │ │ │ ├── ax__event__key__value__set_8h_source.html │ │ │ ├── ax__event__types_8h.html │ │ │ ├── ax__event__types_8h.js │ │ │ ├── ax__event__types_8h_source.html │ │ │ ├── ax_event_key_value_set_example1_8c-example.html │ │ │ ├── ax_event_key_value_set_example2_8c-example.html │ │ │ ├── ax_event_property_state_declaration_example_8c-example.html │ │ │ ├── ax_event_property_state_declaration_from_template_example_8c-example.html │ │ │ ├── ax_event_stateless_declaration_example_8c-example.html │ │ │ ├── ax_event_stateless_declaration_from_template_example_8c-example.html │ │ │ ├── ax_event_subscription_example_8c-example.html │ │ │ ├── axevent_8h.html │ │ │ ├── axevent_8h_source.html │ │ │ ├── axis-logo.png │ │ │ ├── bc_s.png │ │ │ ├── bdwn.png │ │ │ ├── closed.png │ │ │ ├── customdoxygen.css │ │ │ ├── deprecated.html │ │ │ ├── doc.png │ │ │ ├── doxygen.css │ │ │ ├── doxygen.png │ │ │ ├── dynsections.js │ │ │ ├── examples.html │ │ │ ├── examples.js │ │ │ ├── files.html │ │ │ ├── files.js │ │ │ ├── folderclosed.png │ │ │ ├── folderopen.png │ │ │ ├── globals.html │ │ │ ├── globals_defs.html │ │ │ ├── globals_enum.html │ │ │ ├── globals_eval.html │ │ │ ├── globals_func.html │ │ │ ├── globals_type.html │ │ │ ├── index.html │ │ │ ├── jquery.js │ │ │ ├── menu.js │ │ │ ├── menudata.js │ │ │ ├── nav_f.png │ │ │ ├── nav_g.png │ │ │ ├── nav_h.png │ │ │ ├── navtree.css │ │ │ ├── navtree.js │ │ │ ├── navtreedata.js │ │ │ ├── navtreeindex0.js │ │ │ ├── open.png │ │ │ ├── pages.html │ │ │ ├── resize.js │ │ │ ├── splitbar.png │ │ │ ├── sync_off.png │ │ │ ├── sync_on.png │ │ │ ├── tab_a.png │ │ │ ├── tab_b.png │ │ │ ├── tab_h.png │ │ │ ├── tab_s.png │ │ │ └── tabs.css │ ├── axhttp │ │ ├── examples │ │ │ ├── LICENSE │ │ │ ├── Makefile │ │ │ ├── ax_http_serve_request.c │ │ │ ├── cgi.txt │ │ │ └── package.conf │ │ └── html │ │ │ ├── annotated.html │ │ │ ├── annotated_dup.js │ │ │ ├── ax__http__error_8h.html │ │ │ ├── ax__http__error_8h.js │ │ │ ├── ax__http__error_8h_source.html │ │ │ ├── ax__http__handler_8h.html │ │ │ ├── ax__http__handler_8h.js │ │ │ ├── ax__http__handler_8h_source.html │ │ │ ├── ax__http__handler__int_8h_source.html │ │ │ ├── ax__http__server__socket_8h.html │ │ │ ├── ax__http__server__socket_8h.js │ │ │ ├── ax__http__server__socket_8h_source.html │ │ │ ├── ax__http__server__socket__int_8h_source.html │ │ │ ├── ax__http__util_8h_source.html │ │ │ ├── ax__http__util__int_8h_source.html │ │ │ ├── ax_http_serve_request_8c-example.html │ │ │ ├── axhttp_8h.html │ │ │ ├── axhttp_8h_source.html │ │ │ ├── axis-logo.png │ │ │ ├── bc_s.png │ │ │ ├── bdwn.png │ │ │ ├── classes.html │ │ │ ├── closed.png │ │ │ ├── customdoxygen.css │ │ │ ├── doc.png │ │ │ ├── doxygen.css │ │ │ ├── doxygen.png │ │ │ ├── dynsections.js │ │ │ ├── examples.html │ │ │ ├── examples.js │ │ │ ├── files.html │ │ │ ├── files.js │ │ │ ├── folderclosed.png │ │ │ ├── folderopen.png │ │ │ ├── globals.html │ │ │ ├── globals_defs.html │ │ │ ├── globals_enum.html │ │ │ ├── globals_eval.html │ │ │ ├── globals_func.html │ │ │ ├── globals_type.html │ │ │ ├── index.html │ │ │ ├── jquery.js │ │ │ ├── menu.js │ │ │ ├── menudata.js │ │ │ ├── nav_f.png │ │ │ ├── nav_g.png │ │ │ ├── nav_h.png │ │ │ ├── navtree.css │ │ │ ├── navtree.js │ │ │ ├── navtreedata.js │ │ │ ├── navtreeindex0.js │ │ │ ├── open.png │ │ │ ├── resize.js │ │ │ ├── splitbar.png │ │ │ ├── struct__AXHttpHandler.html │ │ │ ├── struct__AXHttpHandler.js │ │ │ ├── struct__AXHttpServerSocket.html │ │ │ ├── struct__AXHttpServerSocket.js │ │ │ ├── struct__ThreadArgs.html │ │ │ ├── struct__ThreadArgs.js │ │ │ ├── sync_off.png │ │ │ ├── sync_on.png │ │ │ ├── tab_a.png │ │ │ ├── tab_b.png │ │ │ ├── tab_h.png │ │ │ ├── tab_s.png │ │ │ └── tabs.css │ ├── axoverlay │ │ ├── example │ │ │ ├── cairo_image │ │ │ │ └── axoverlayexample_cairo.c │ │ │ ├── opengles_objectloader │ │ │ │ ├── README │ │ │ │ ├── config.c │ │ │ │ ├── config.h │ │ │ │ ├── gl_example_errors.c │ │ │ │ ├── gl_example_errors.h │ │ │ │ ├── loaders.cpp │ │ │ │ ├── loaders.h │ │ │ │ ├── mesh.cpp │ │ │ │ ├── mesh.h │ │ │ │ ├── misc │ │ │ │ │ ├── cube.bmp │ │ │ │ │ ├── cube.mtl │ │ │ │ │ ├── cube.obj │ │ │ │ │ ├── shader.frag │ │ │ │ │ ├── shader.vert │ │ │ │ │ ├── stormwind.bmp │ │ │ │ │ ├── stormwind.mtl │ │ │ │ │ └── stormwind.obj │ │ │ │ ├── opengles_objectloader.c │ │ │ │ ├── render.c │ │ │ │ ├── render.h │ │ │ │ ├── shaders.c │ │ │ │ └── shaders.h │ │ │ ├── opengles_performance │ │ │ │ └── opengles_performance.c │ │ │ └── palette │ │ │ │ └── axoverlayexample_palette.c │ │ └── html │ │ │ ├── annotated.html │ │ │ ├── annotated_dup.js │ │ │ ├── axis-logo.png │ │ │ ├── axoverlay_8h.html │ │ │ ├── axoverlay_8h.js │ │ │ ├── axoverlay_8h__incl.dot │ │ │ ├── axoverlay_8h__incl.md5 │ │ │ ├── axoverlay_8h_source.html │ │ │ ├── axoverlaypage.html │ │ │ ├── bc_s.png │ │ │ ├── bdwn.png │ │ │ ├── classes.html │ │ │ ├── closed.png │ │ │ ├── customdoxygen.css │ │ │ ├── dir_68267d1309a1af8e8297ef4c3efbcdba.html │ │ │ ├── dir_68267d1309a1af8e8297ef4c3efbcdba.js │ │ │ ├── doc.png │ │ │ ├── doxygen.css │ │ │ ├── doxygen.png │ │ │ ├── dynsections.js │ │ │ ├── files.html │ │ │ ├── files.js │ │ │ ├── folderclosed.png │ │ │ ├── folderopen.png │ │ │ ├── functions.html │ │ │ ├── functions_vars.html │ │ │ ├── globals.html │ │ │ ├── globals_defs.html │ │ │ ├── globals_enum.html │ │ │ ├── globals_eval.html │ │ │ ├── globals_func.html │ │ │ ├── globals_type.html │ │ │ ├── graph_legend.dot │ │ │ ├── graph_legend.html │ │ │ ├── graph_legend.md5 │ │ │ ├── index.html │ │ │ ├── jquery.js │ │ │ ├── menu.js │ │ │ ├── menudata.js │ │ │ ├── nav_f.png │ │ │ ├── nav_g.png │ │ │ ├── nav_h.png │ │ │ ├── navtree.css │ │ │ ├── navtree.js │ │ │ ├── navtreedata.js │ │ │ ├── navtreeindex0.js │ │ │ ├── open.png │ │ │ ├── pages.html │ │ │ ├── resize.js │ │ │ ├── search │ │ │ ├── all_0.html │ │ │ ├── all_0.js │ │ │ ├── all_1.html │ │ │ ├── all_1.js │ │ │ ├── all_2.html │ │ │ ├── all_2.js │ │ │ ├── all_3.html │ │ │ ├── all_3.js │ │ │ ├── all_4.html │ │ │ ├── all_4.js │ │ │ ├── all_5.html │ │ │ ├── all_5.js │ │ │ ├── all_6.html │ │ │ ├── all_6.js │ │ │ ├── all_7.html │ │ │ ├── all_7.js │ │ │ ├── all_8.html │ │ │ ├── all_8.js │ │ │ ├── all_9.html │ │ │ ├── all_9.js │ │ │ ├── all_a.html │ │ │ ├── all_a.js │ │ │ ├── all_b.html │ │ │ ├── all_b.js │ │ │ ├── all_c.html │ │ │ ├── all_c.js │ │ │ ├── all_d.html │ │ │ ├── all_d.js │ │ │ ├── classes_0.html │ │ │ ├── classes_0.js │ │ │ ├── close.png │ │ │ ├── defines_0.html │ │ │ ├── defines_0.js │ │ │ ├── enums_0.html │ │ │ ├── enums_0.js │ │ │ ├── enumvalues_0.html │ │ │ ├── enumvalues_0.js │ │ │ ├── files_0.html │ │ │ ├── files_0.js │ │ │ ├── functions_0.html │ │ │ ├── functions_0.js │ │ │ ├── mag_sel.png │ │ │ ├── nomatches.html │ │ │ ├── pages_0.html │ │ │ ├── pages_0.js │ │ │ ├── pages_1.html │ │ │ ├── pages_1.js │ │ │ ├── search.css │ │ │ ├── search.js │ │ │ ├── search_l.png │ │ │ ├── search_m.png │ │ │ ├── search_r.png │ │ │ ├── searchdata.js │ │ │ ├── typedefs_0.html │ │ │ ├── typedefs_0.js │ │ │ ├── variables_0.html │ │ │ ├── variables_0.js │ │ │ ├── variables_1.html │ │ │ ├── variables_1.js │ │ │ ├── variables_2.html │ │ │ ├── variables_2.js │ │ │ ├── variables_3.html │ │ │ ├── variables_3.js │ │ │ ├── variables_4.html │ │ │ ├── variables_4.js │ │ │ ├── variables_5.html │ │ │ ├── variables_5.js │ │ │ ├── variables_6.html │ │ │ ├── variables_6.js │ │ │ ├── variables_7.html │ │ │ ├── variables_7.js │ │ │ ├── variables_8.html │ │ │ ├── variables_8.js │ │ │ ├── variables_9.html │ │ │ ├── variables_9.js │ │ │ ├── variables_a.html │ │ │ ├── variables_a.js │ │ │ ├── variables_b.html │ │ │ ├── variables_b.js │ │ │ ├── variables_c.html │ │ │ └── variables_c.js │ │ │ ├── splitbar.png │ │ │ ├── structaxoverlay__overlay__data.html │ │ │ ├── structaxoverlay__overlay__data.js │ │ │ ├── structaxoverlay__palette__color.html │ │ │ ├── structaxoverlay__palette__color.js │ │ │ ├── structaxoverlay__settings.html │ │ │ ├── structaxoverlay__settings.js │ │ │ ├── structaxoverlay__settings__coll__graph.dot │ │ │ ├── structaxoverlay__settings__coll__graph.md5 │ │ │ ├── structaxoverlay__stream__data.html │ │ │ ├── structaxoverlay__stream__data.js │ │ │ ├── sync_off.png │ │ │ ├── sync_on.png │ │ │ ├── tab_a.png │ │ │ ├── tab_b.png │ │ │ ├── tab_h.png │ │ │ ├── tab_s.png │ │ │ └── tabs.css │ ├── axparameter │ │ ├── examples │ │ │ ├── LICENSE │ │ │ ├── Makefile │ │ │ ├── axparameterexample.c │ │ │ ├── package.conf │ │ │ └── param.conf │ │ └── html │ │ │ ├── ax__parameter_8h.html │ │ │ ├── ax__parameter_8h.js │ │ │ ├── ax__parameter_8h_source.html │ │ │ ├── ax__parameter__error_8h.html │ │ │ ├── ax__parameter__error_8h.js │ │ │ ├── ax__parameter__error_8h_source.html │ │ │ ├── axis-logo.png │ │ │ ├── axparameter_8h.html │ │ │ ├── axparameter_8h_source.html │ │ │ ├── axparameterexample_8c-example.html │ │ │ ├── bc_s.png │ │ │ ├── bdwn.png │ │ │ ├── closed.png │ │ │ ├── customdoxygen.css │ │ │ ├── doc.png │ │ │ ├── doxygen.css │ │ │ ├── doxygen.png │ │ │ ├── dynsections.js │ │ │ ├── examples.html │ │ │ ├── examples.js │ │ │ ├── files.html │ │ │ ├── files.js │ │ │ ├── folderclosed.png │ │ │ ├── folderopen.png │ │ │ ├── globals.html │ │ │ ├── globals_enum.html │ │ │ ├── globals_eval.html │ │ │ ├── globals_func.html │ │ │ ├── globals_type.html │ │ │ ├── index.html │ │ │ ├── jquery.js │ │ │ ├── menu.js │ │ │ ├── menudata.js │ │ │ ├── nav_f.png │ │ │ ├── nav_g.png │ │ │ ├── nav_h.png │ │ │ ├── navtree.css │ │ │ ├── navtree.js │ │ │ ├── navtreedata.js │ │ │ ├── navtreeindex0.js │ │ │ ├── open.png │ │ │ ├── resize.js │ │ │ ├── splitbar.png │ │ │ ├── sync_off.png │ │ │ ├── sync_on.png │ │ │ ├── tab_a.png │ │ │ ├── tab_b.png │ │ │ ├── tab_h.png │ │ │ ├── tab_s.png │ │ │ └── tabs.css │ ├── axptz │ │ ├── example │ │ │ ├── LICENSE │ │ │ ├── Makefile │ │ │ ├── README │ │ │ ├── axptzexample.c │ │ │ └── package.conf │ │ └── html │ │ │ ├── annotated.html │ │ │ ├── annotated_dup.js │ │ │ ├── ax__ptz_8h.html │ │ │ ├── ax__ptz_8h.js │ │ │ ├── ax__ptz_8h_source.html │ │ │ ├── ax__ptz__control__queue_8h.html │ │ │ ├── ax__ptz__control__queue_8h.js │ │ │ ├── ax__ptz__control__queue_8h_source.html │ │ │ ├── ax__ptz__control__queue__int_8h_source.html │ │ │ ├── ax__ptz__error_8h.html │ │ │ ├── ax__ptz__error_8h.js │ │ │ ├── ax__ptz__error_8h_source.html │ │ │ ├── ax__ptz__error__int_8h_source.html │ │ │ ├── ax__ptz__int_8h_source.html │ │ │ ├── ax__ptz__movement_8h.html │ │ │ ├── ax__ptz__movement_8h.js │ │ │ ├── ax__ptz__movement_8h_source.html │ │ │ ├── ax__ptz__movement__handler_8h.html │ │ │ ├── ax__ptz__movement__handler_8h.js │ │ │ ├── ax__ptz__movement__handler_8h_source.html │ │ │ ├── ax__ptz__movement__handler__int_8h_source.html │ │ │ ├── ax__ptz__movement__int_8h_source.html │ │ │ ├── ax__ptz__preset__handler_8h.html │ │ │ ├── ax__ptz__preset__handler_8h.js │ │ │ ├── ax__ptz__preset__handler_8h_source.html │ │ │ ├── ax__ptz__preset__handler__int_8h_source.html │ │ │ ├── ax__ptz__types_8h.html │ │ │ ├── ax__ptz__types_8h.js │ │ │ ├── ax__ptz__types_8h_source.html │ │ │ ├── ax__ptz__types__int_8h_source.html │ │ │ ├── axis-logo.png │ │ │ ├── axptz_8h.html │ │ │ ├── axptz_8h_source.html │ │ │ ├── axptzexample_8c-example.html │ │ │ ├── bc_s.png │ │ │ ├── bdwn.png │ │ │ ├── classes.html │ │ │ ├── closed.png │ │ │ ├── customdoxygen.css │ │ │ ├── doc.png │ │ │ ├── doxygen.css │ │ │ ├── doxygen.png │ │ │ ├── dynsections.js │ │ │ ├── examples.html │ │ │ ├── examples.js │ │ │ ├── files.html │ │ │ ├── files.js │ │ │ ├── folderclosed.png │ │ │ ├── folderopen.png │ │ │ ├── functions.html │ │ │ ├── functions_vars.html │ │ │ ├── globals.html │ │ │ ├── globals_enum.html │ │ │ ├── globals_eval.html │ │ │ ├── globals_func.html │ │ │ ├── globals_type.html │ │ │ ├── index.html │ │ │ ├── jquery.js │ │ │ ├── menu.js │ │ │ ├── menudata.js │ │ │ ├── nav_f.png │ │ │ ├── nav_g.png │ │ │ ├── nav_h.png │ │ │ ├── navtree.css │ │ │ ├── navtree.js │ │ │ ├── navtreedata.js │ │ │ ├── navtreeindex0.js │ │ │ ├── open.png │ │ │ ├── resize.js │ │ │ ├── splitbar.png │ │ │ ├── structAXPTZLimits.html │ │ │ ├── structAXPTZLimits.js │ │ │ ├── structAXPTZMonotonicTimestamp.html │ │ │ ├── structAXPTZMonotonicTimestamp.js │ │ │ ├── structAXPTZStatus.html │ │ │ ├── structAXPTZStatus.js │ │ │ ├── struct__AXPTZ.html │ │ │ ├── struct__AXPTZ.js │ │ │ ├── struct__AXPTZAbsoluteMovement.html │ │ │ ├── struct__AXPTZAbsoluteMovement.js │ │ │ ├── struct__AXPTZContinuousMovement.html │ │ │ ├── struct__AXPTZContinuousMovement.js │ │ │ ├── struct__AXPTZControlQueue.html │ │ │ ├── struct__AXPTZControlQueue.js │ │ │ ├── struct__AXPTZControlQueueGroup.html │ │ │ ├── struct__AXPTZControlQueueGroup.js │ │ │ ├── struct__AXPTZMovement.html │ │ │ ├── struct__AXPTZMovement.js │ │ │ ├── struct__AXPTZMovementHandler.html │ │ │ ├── struct__AXPTZMovementHandler.js │ │ │ ├── struct__AXPTZPresetHandler.html │ │ │ ├── struct__AXPTZPresetHandler.js │ │ │ ├── struct__AXPTZProperty.html │ │ │ ├── struct__AXPTZProperty.js │ │ │ ├── struct__AXPTZRelativeMovement.html │ │ │ ├── struct__AXPTZRelativeMovement.js │ │ │ ├── sync_off.png │ │ │ ├── sync_on.png │ │ │ ├── tab_a.png │ │ │ ├── tab_b.png │ │ │ ├── tab_h.png │ │ │ ├── tab_s.png │ │ │ └── tabs.css │ ├── axserialport │ │ ├── example_pelco-D │ │ │ ├── LICENSE │ │ │ ├── Makefile │ │ │ ├── README │ │ │ ├── axserialport_pelco_spectra_mini.c │ │ │ └── package.conf │ │ ├── examples │ │ │ ├── LICENSE │ │ │ ├── Makefile │ │ │ ├── README │ │ │ ├── axserialport_example.c │ │ │ └── package.conf │ │ ├── examples_threads │ │ │ ├── LICENSE │ │ │ ├── Makefile │ │ │ ├── README │ │ │ ├── package.conf │ │ │ └── serial_example_threads.c │ │ └── html │ │ │ ├── axis-logo.png │ │ │ ├── axserialport_8h.html │ │ │ ├── axserialport_8h.js │ │ │ ├── axserialport_8h_source.html │ │ │ ├── axserialport_example_8c-example.html │ │ │ ├── bc_s.png │ │ │ ├── bdwn.png │ │ │ ├── closed.png │ │ │ ├── customdoxygen.css │ │ │ ├── doc.png │ │ │ ├── doxygen.css │ │ │ ├── doxygen.png │ │ │ ├── dynsections.js │ │ │ ├── examples.html │ │ │ ├── examples.js │ │ │ ├── files.html │ │ │ ├── files.js │ │ │ ├── folderclosed.png │ │ │ ├── folderopen.png │ │ │ ├── globals.html │ │ │ ├── globals_enum.html │ │ │ ├── globals_eval.html │ │ │ ├── globals_func.html │ │ │ ├── globals_type.html │ │ │ ├── index.html │ │ │ ├── jquery.js │ │ │ ├── menu.js │ │ │ ├── menudata.js │ │ │ ├── nav_f.png │ │ │ ├── nav_g.png │ │ │ ├── nav_h.png │ │ │ ├── navtree.css │ │ │ ├── navtree.js │ │ │ ├── navtreedata.js │ │ │ ├── navtreeindex0.js │ │ │ ├── open.png │ │ │ ├── resize.js │ │ │ ├── splitbar.png │ │ │ ├── sync_off.png │ │ │ ├── sync_on.png │ │ │ ├── tab_a.png │ │ │ ├── tab_b.png │ │ │ ├── tab_h.png │ │ │ ├── tab_s.png │ │ │ └── tabs.css │ ├── axstorage │ │ ├── examples │ │ │ ├── LICENSE │ │ │ ├── Makefile │ │ │ ├── README │ │ │ ├── ax_storage_example.c │ │ │ ├── package.conf │ │ │ └── param.conf │ │ └── html │ │ │ ├── ax__storage_8h.html │ │ │ ├── ax__storage_8h.js │ │ │ ├── ax__storage_8h_source.html │ │ │ ├── ax__storage__error_8h.html │ │ │ ├── ax__storage__error_8h.js │ │ │ ├── ax__storage__error_8h_source.html │ │ │ ├── ax_storage_example_8c-example.html │ │ │ ├── axis-logo.png │ │ │ ├── axstorage_8h.html │ │ │ ├── axstorage_8h_source.html │ │ │ ├── bc_s.png │ │ │ ├── bdwn.png │ │ │ ├── closed.png │ │ │ ├── customdoxygen.css │ │ │ ├── doc.png │ │ │ ├── doxygen.css │ │ │ ├── doxygen.png │ │ │ ├── dynsections.js │ │ │ ├── examples.html │ │ │ ├── examples.js │ │ │ ├── files.html │ │ │ ├── files.js │ │ │ ├── folderclosed.png │ │ │ ├── folderopen.png │ │ │ ├── globals.html │ │ │ ├── globals_enum.html │ │ │ ├── globals_eval.html │ │ │ ├── globals_func.html │ │ │ ├── globals_type.html │ │ │ ├── index.html │ │ │ ├── jquery.js │ │ │ ├── menu.js │ │ │ ├── menudata.js │ │ │ ├── nav_f.png │ │ │ ├── nav_g.png │ │ │ ├── nav_h.png │ │ │ ├── navtree.css │ │ │ ├── navtree.js │ │ │ ├── navtreedata.js │ │ │ ├── navtreeindex0.js │ │ │ ├── open.png │ │ │ ├── resize.js │ │ │ ├── splitbar.png │ │ │ ├── sync_off.png │ │ │ ├── sync_on.png │ │ │ ├── tab_a.png │ │ │ ├── tab_b.png │ │ │ ├── tab_h.png │ │ │ ├── tab_s.png │ │ │ └── tabs.css │ ├── capture │ │ └── html │ │ │ ├── axis-logo.png │ │ │ ├── bc_s.png │ │ │ ├── bdwn.png │ │ │ ├── capture_8h.html │ │ │ ├── capture_8h.js │ │ │ ├── capture_8h_source.html │ │ │ ├── capture__native_8h.html │ │ │ ├── capture__native_8h.js │ │ │ ├── capture__native_8h_source.html │ │ │ ├── closed.png │ │ │ ├── customdoxygen.css │ │ │ ├── deprecated.html │ │ │ ├── doc.png │ │ │ ├── doxygen.css │ │ │ ├── doxygen.png │ │ │ ├── dynsections.js │ │ │ ├── files.html │ │ │ ├── files.js │ │ │ ├── folderclosed.png │ │ │ ├── folderopen.png │ │ │ ├── globals.html │ │ │ ├── globals_defs.html │ │ │ ├── globals_func.html │ │ │ ├── globals_type.html │ │ │ ├── index.html │ │ │ ├── jquery.js │ │ │ ├── menu.js │ │ │ ├── menudata.js │ │ │ ├── nav_f.png │ │ │ ├── nav_g.png │ │ │ ├── nav_h.png │ │ │ ├── navtree.css │ │ │ ├── navtree.js │ │ │ ├── navtreedata.js │ │ │ ├── navtreeindex0.js │ │ │ ├── open.png │ │ │ ├── pages.html │ │ │ ├── resize.js │ │ │ ├── splitbar.png │ │ │ ├── sync_off.png │ │ │ ├── sync_on.png │ │ │ ├── tab_a.png │ │ │ ├── tab_b.png │ │ │ ├── tab_h.png │ │ │ ├── tab_s.png │ │ │ └── tabs.css │ ├── larod │ │ └── html │ │ │ ├── annotated.html │ │ │ ├── axis-logo.png │ │ │ ├── bc_s.png │ │ │ ├── bdwn.png │ │ │ ├── classes.html │ │ │ ├── closed.png │ │ │ ├── customdoxygen.css │ │ │ ├── deprecated.html │ │ │ ├── dir_97aefd0d527b934f1d99a682da8fe6a9.html │ │ │ ├── doc.png │ │ │ ├── doxygen.css │ │ │ ├── doxygen.png │ │ │ ├── dynsections.js │ │ │ ├── files.html │ │ │ ├── folderclosed.png │ │ │ ├── folderopen.png │ │ │ ├── functions.html │ │ │ ├── functions_vars.html │ │ │ ├── globals.html │ │ │ ├── globals_defs.html │ │ │ ├── globals_enum.html │ │ │ ├── globals_eval.html │ │ │ ├── globals_func.html │ │ │ ├── globals_type.html │ │ │ ├── index.html │ │ │ ├── jquery.js │ │ │ ├── larod_8h.html │ │ │ ├── larod_8h_source.html │ │ │ ├── md__opt_builder-doc_larod_doc_api-changes.html │ │ │ ├── md__opt_builder-doc_larod_doc_architecture.html │ │ │ ├── md__opt_builder-doc_larod_doc_dma-buf.html │ │ │ ├── md__opt_builder-doc_larod_doc_introduction-for-app-developers.html │ │ │ ├── md__opt_builder-doc_larod_doc_larod-client.html │ │ │ ├── md__opt_builder-doc_larod_doc_model-formats.html │ │ │ ├── md__opt_builder-doc_larod_doc_nn-inference.html │ │ │ ├── md__opt_builder-doc_larod_doc_preprocessing.html │ │ │ ├── md__opt_builder-doc_larod_tools_model-converter_README.html │ │ │ ├── menu.js │ │ │ ├── menudata.js │ │ │ ├── nav_f.png │ │ │ ├── nav_g.png │ │ │ ├── nav_h.png │ │ │ ├── open.png │ │ │ ├── pages.html │ │ │ ├── search │ │ │ ├── all_0.html │ │ │ ├── all_0.js │ │ │ ├── all_1.html │ │ │ ├── all_1.js │ │ │ ├── all_2.html │ │ │ ├── all_2.js │ │ │ ├── all_3.html │ │ │ ├── all_3.js │ │ │ ├── all_4.html │ │ │ ├── all_4.js │ │ │ ├── all_5.html │ │ │ ├── all_5.js │ │ │ ├── all_6.html │ │ │ ├── all_6.js │ │ │ ├── all_7.html │ │ │ ├── all_7.js │ │ │ ├── all_8.html │ │ │ ├── all_8.js │ │ │ ├── all_9.html │ │ │ ├── all_9.js │ │ │ ├── all_a.html │ │ │ ├── all_a.js │ │ │ ├── classes_0.html │ │ │ ├── classes_0.js │ │ │ ├── close.png │ │ │ ├── defines_0.html │ │ │ ├── defines_0.js │ │ │ ├── enums_0.html │ │ │ ├── enums_0.js │ │ │ ├── enumvalues_0.html │ │ │ ├── enumvalues_0.js │ │ │ ├── files_0.html │ │ │ ├── files_0.js │ │ │ ├── functions_0.html │ │ │ ├── functions_0.js │ │ │ ├── mag_sel.png │ │ │ ├── nomatches.html │ │ │ ├── pages_0.html │ │ │ ├── pages_0.js │ │ │ ├── pages_1.html │ │ │ ├── pages_1.js │ │ │ ├── pages_2.html │ │ │ ├── pages_2.js │ │ │ ├── pages_3.html │ │ │ ├── pages_3.js │ │ │ ├── pages_4.html │ │ │ ├── pages_4.js │ │ │ ├── pages_5.html │ │ │ ├── pages_5.js │ │ │ ├── pages_6.html │ │ │ ├── pages_6.js │ │ │ ├── pages_7.html │ │ │ ├── pages_7.js │ │ │ ├── pages_8.html │ │ │ ├── pages_8.js │ │ │ ├── pages_9.html │ │ │ ├── pages_9.js │ │ │ ├── search.css │ │ │ ├── search.js │ │ │ ├── search_l.png │ │ │ ├── search_m.png │ │ │ ├── search_r.png │ │ │ ├── searchdata.js │ │ │ ├── typedefs_0.html │ │ │ ├── typedefs_0.js │ │ │ ├── variables_0.html │ │ │ ├── variables_0.js │ │ │ ├── variables_1.html │ │ │ ├── variables_1.js │ │ │ ├── variables_2.html │ │ │ └── variables_2.js │ │ │ ├── splitbar.png │ │ │ ├── structlarodError.html │ │ │ ├── structlarodTensorDims.html │ │ │ ├── structlarodTensorPitches.html │ │ │ ├── sync_off.png │ │ │ ├── sync_on.png │ │ │ ├── tab_a.png │ │ │ ├── tab_b.png │ │ │ ├── tab_h.png │ │ │ ├── tab_s.png │ │ │ └── tabs.css │ ├── licensekey │ │ └── html │ │ │ ├── axis-logo.png │ │ │ ├── bc_s.png │ │ │ ├── bdwn.png │ │ │ ├── closed.png │ │ │ ├── customdoxygen.css │ │ │ ├── doc.png │ │ │ ├── doxygen.css │ │ │ ├── doxygen.png │ │ │ ├── dynsections.js │ │ │ ├── files.html │ │ │ ├── files.js │ │ │ ├── folderclosed.png │ │ │ ├── folderopen.png │ │ │ ├── globals.html │ │ │ ├── globals_func.html │ │ │ ├── index.html │ │ │ ├── jquery.js │ │ │ ├── licensekey_8h.html │ │ │ ├── licensekey_8h.js │ │ │ ├── licensekey_8h_source.html │ │ │ ├── licensekey__dyn_8h_source.html │ │ │ ├── licensekey__states_8h.html │ │ │ ├── licensekey__states_8h.js │ │ │ ├── licensekey__states_8h_source.html │ │ │ ├── menu.js │ │ │ ├── menudata.js │ │ │ ├── nav_f.png │ │ │ ├── nav_g.png │ │ │ ├── nav_h.png │ │ │ ├── navtree.css │ │ │ ├── navtree.js │ │ │ ├── navtreedata.js │ │ │ ├── navtreeindex0.js │ │ │ ├── open.png │ │ │ ├── resize.js │ │ │ ├── splitbar.png │ │ │ ├── sync_off.png │ │ │ ├── sync_on.png │ │ │ ├── tab_a.png │ │ │ ├── tab_b.png │ │ │ ├── tab_h.png │ │ │ ├── tab_s.png │ │ │ └── tabs.css │ └── vdostream │ │ └── html │ │ ├── annotated.html │ │ ├── annotated_dup.js │ │ ├── bc_s.png │ │ ├── bdwn.png │ │ ├── classVdoChannel.html │ │ ├── classVdoFrame.html │ │ ├── classVdoMap.html │ │ ├── classVdoStream.html │ │ ├── classes.html │ │ ├── closed.png │ │ ├── customdoxygen.css │ │ ├── deprecated.html │ │ ├── dir_000000_000001.html │ │ ├── dir_97aefd0d527b934f1d99a682da8fe6a9.html │ │ ├── dir_97aefd0d527b934f1d99a682da8fe6a9_dep.dot │ │ ├── dir_97aefd0d527b934f1d99a682da8fe6a9_dep.md5 │ │ ├── dir_bdd9a5d540de89e9fe90efdfc6973a4f.html │ │ ├── doc.png │ │ ├── doxygen.css │ │ ├── doxygen.png │ │ ├── dynsections.js │ │ ├── files.html │ │ ├── files.js │ │ ├── folderclosed.png │ │ ├── folderopen.png │ │ ├── globals.html │ │ ├── globals_defs.html │ │ ├── globals_dup.js │ │ ├── globals_enum.html │ │ ├── globals_eval.html │ │ ├── globals_func.html │ │ ├── graph_legend.dot │ │ ├── graph_legend.html │ │ ├── graph_legend.md5 │ │ ├── index.html │ │ ├── jquery.js │ │ ├── menu.js │ │ ├── menudata.js │ │ ├── nav_f.png │ │ ├── nav_g.png │ │ ├── nav_h.png │ │ ├── navtree.css │ │ ├── navtree.js │ │ ├── navtreedata.js │ │ ├── navtreeindex0.js │ │ ├── navtreeindex1.js │ │ ├── open.png │ │ ├── pages.html │ │ ├── resize.js │ │ ├── search │ │ ├── all_0.html │ │ ├── all_0.js │ │ ├── all_1.html │ │ ├── all_1.js │ │ ├── classes_0.html │ │ ├── classes_0.js │ │ ├── close.png │ │ ├── defines_0.html │ │ ├── defines_0.js │ │ ├── enums_0.html │ │ ├── enums_0.js │ │ ├── enumvalues_0.html │ │ ├── enumvalues_0.js │ │ ├── files_0.html │ │ ├── files_0.js │ │ ├── functions_0.html │ │ ├── functions_0.js │ │ ├── mag_sel.png │ │ ├── nomatches.html │ │ ├── pages_0.html │ │ ├── pages_0.js │ │ ├── search.css │ │ ├── search.js │ │ ├── search_l.png │ │ ├── search_m.png │ │ ├── search_r.png │ │ └── searchdata.js │ │ ├── splitbar.png │ │ ├── structVdoChunk.html │ │ ├── structVdoMemChunk.html │ │ ├── structVdoRect.html │ │ ├── structVdoResolution.html │ │ ├── structVdoResolutionSet.html │ │ ├── structVdoResolutionSet__coll__graph.dot │ │ ├── structVdoResolutionSet__coll__graph.md5 │ │ ├── sync_off.png │ │ ├── sync_on.png │ │ ├── tab_a.png │ │ ├── tab_b.png │ │ ├── tab_h.png │ │ ├── tab_s.png │ │ ├── tabs.css │ │ ├── vdo-buffer_8h.html │ │ ├── vdo-buffer_8h.js │ │ ├── vdo-buffer_8h__dep__incl.dot │ │ ├── vdo-buffer_8h__dep__incl.md5 │ │ ├── vdo-buffer_8h__incl.dot │ │ ├── vdo-buffer_8h__incl.md5 │ │ ├── vdo-buffer_8h_source.html │ │ ├── vdo-channel_8h.html │ │ ├── vdo-channel_8h.js │ │ ├── vdo-channel_8h__incl.dot │ │ ├── vdo-channel_8h__incl.md5 │ │ ├── vdo-channel_8h_source.html │ │ ├── vdo-error_8h.html │ │ ├── vdo-error_8h.js │ │ ├── vdo-error_8h__incl.dot │ │ ├── vdo-error_8h__incl.md5 │ │ ├── vdo-error_8h_source.html │ │ ├── vdo-frame_8h.html │ │ ├── vdo-frame_8h.js │ │ ├── vdo-frame_8h__dep__incl.dot │ │ ├── vdo-frame_8h__dep__incl.md5 │ │ ├── vdo-frame_8h__incl.dot │ │ ├── vdo-frame_8h__incl.md5 │ │ ├── vdo-frame_8h_source.html │ │ ├── vdo-map_8h.html │ │ ├── vdo-map_8h.js │ │ ├── vdo-map_8h__dep__incl.dot │ │ ├── vdo-map_8h__dep__incl.md5 │ │ ├── vdo-map_8h__incl.dot │ │ ├── vdo-map_8h__incl.md5 │ │ ├── vdo-map_8h_source.html │ │ ├── vdo-stream_8h.html │ │ ├── vdo-stream_8h.js │ │ ├── vdo-stream_8h__incl.dot │ │ ├── vdo-stream_8h__incl.md5 │ │ ├── vdo-stream_8h_source.html │ │ ├── vdo-types_8h.html │ │ ├── vdo-types_8h.js │ │ ├── vdo-types_8h__dep__incl.dot │ │ ├── vdo-types_8h__dep__incl.md5 │ │ ├── vdo-types_8h__incl.dot │ │ ├── vdo-types_8h__incl.md5 │ │ └── vdo-types_8h_source.html ├── main │ └── html │ │ ├── acap3_api.html │ │ └── index.html └── sdk │ └── html │ └── index.html ├── 404.html ├── CODEOWNERS ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── Dockerfile ├── Dockerfiles-multistage ├── Dockerfile-1-Gem-Deps └── Dockerfile-2-Jekyll-Build-Only ├── Gemfile ├── LICENSE ├── README.md ├── TROUBLESHOOTING.md ├── _config.yml ├── _includes └── footer_custom.html ├── _layouts ├── acap_container_applications_deprecation_page.html └── acap_sdk_version_3.html ├── _sass └── color_schemes │ ├── axis-colors.scss │ └── axis.scss ├── assets ├── images │ ├── vs-code-manifest-validation1-500x500.png │ ├── vs-code-ms-cpp-extension-332x240.png │ └── vs-code-ms-cpp-extension.png └── logos │ ├── acap_312x200.png │ └── axis-logo.png ├── build-multistage ├── build_redirects.py ├── docs ├── acap-sdk-version-3 │ ├── api │ │ ├── index.md │ │ └── src │ │ │ ├── api │ │ │ ├── axaudio │ │ │ │ ├── examples │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── README │ │ │ │ │ ├── axaudioexample.c │ │ │ │ │ └── package.conf │ │ │ │ └── html │ │ │ │ │ ├── annotated.html │ │ │ │ │ ├── annotated_dup.js │ │ │ │ │ ├── ax__audio__config_8h_source.html │ │ │ │ │ ├── ax__audio__datatypes_8h_source.html │ │ │ │ │ ├── ax__audio__error_8h.html │ │ │ │ │ ├── ax__audio__error_8h.js │ │ │ │ │ ├── ax__audio__error_8h_source.html │ │ │ │ │ ├── ax__audio__output_8h_source.html │ │ │ │ │ ├── ax__audio__utils_8h_source.html │ │ │ │ │ ├── axaudio_8h.html │ │ │ │ │ ├── axaudio_8h.js │ │ │ │ │ ├── axaudio_8h_source.html │ │ │ │ │ ├── axaudioexample_8c-example.html │ │ │ │ │ ├── axis-logo.png │ │ │ │ │ ├── bc_s.png │ │ │ │ │ ├── bdwn.png │ │ │ │ │ ├── classes.html │ │ │ │ │ ├── closed.png │ │ │ │ │ ├── common_8h_source.html │ │ │ │ │ ├── customdoxygen.css │ │ │ │ │ ├── doc.png │ │ │ │ │ ├── doxygen.css │ │ │ │ │ ├── doxygen.png │ │ │ │ │ ├── dynsections.js │ │ │ │ │ ├── examples.html │ │ │ │ │ ├── examples.js │ │ │ │ │ ├── files.html │ │ │ │ │ ├── files.js │ │ │ │ │ ├── folderclosed.png │ │ │ │ │ ├── folderopen.png │ │ │ │ │ ├── globals.html │ │ │ │ │ ├── globals_defs.html │ │ │ │ │ ├── globals_enum.html │ │ │ │ │ ├── globals_eval.html │ │ │ │ │ ├── globals_func.html │ │ │ │ │ ├── globals_type.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── jquery.js │ │ │ │ │ ├── menu.js │ │ │ │ │ ├── menudata.js │ │ │ │ │ ├── nav_f.png │ │ │ │ │ ├── nav_g.png │ │ │ │ │ ├── nav_h.png │ │ │ │ │ ├── navtree.css │ │ │ │ │ ├── navtree.js │ │ │ │ │ ├── navtreedata.js │ │ │ │ │ ├── navtreeindex0.js │ │ │ │ │ ├── open.png │ │ │ │ │ ├── resize.js │ │ │ │ │ ├── splitbar.png │ │ │ │ │ ├── struct__AXAudioFrame.html │ │ │ │ │ ├── struct__AXAudioFrame.js │ │ │ │ │ ├── struct__AXAudioOutput.html │ │ │ │ │ ├── struct__AXAudioOutput.js │ │ │ │ │ ├── struct__AXAudioStream.html │ │ │ │ │ ├── struct__AXAudioStream.js │ │ │ │ │ ├── sync_off.png │ │ │ │ │ ├── sync_on.png │ │ │ │ │ ├── tab_a.png │ │ │ │ │ ├── tab_b.png │ │ │ │ │ ├── tab_h.png │ │ │ │ │ ├── tab_s.png │ │ │ │ │ └── tabs.css │ │ │ ├── axevent │ │ │ │ ├── examples │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── element_item_example │ │ │ │ │ │ ├── LICENSE │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── ax_event_element_item_example.c │ │ │ │ │ │ └── package.conf │ │ │ │ │ ├── key_value_set_example1 │ │ │ │ │ │ ├── LICENSE │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── ax_event_key_value_set_example1.c │ │ │ │ │ │ └── package.conf │ │ │ │ │ ├── key_value_set_example2 │ │ │ │ │ │ ├── LICENSE │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── ax_event_key_value_set_example2.c │ │ │ │ │ │ └── package.conf │ │ │ │ │ ├── property_state_declaration_example │ │ │ │ │ │ ├── LICENSE │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── ax_event_property_state_declaration_example.c │ │ │ │ │ │ └── package.conf │ │ │ │ │ ├── property_state_declaration_from_template_example │ │ │ │ │ │ ├── LICENSE │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── ax_event_property_state_declaration_from_template_example.c │ │ │ │ │ │ └── package.conf │ │ │ │ │ ├── send_event_example │ │ │ │ │ │ ├── LICENSE │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── ax_event_send_event_example.c │ │ │ │ │ │ └── package.conf │ │ │ │ │ ├── stateless_declaration_example │ │ │ │ │ │ ├── LICENSE │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── ax_event_stateless_declaration_example.c │ │ │ │ │ │ └── package.conf │ │ │ │ │ ├── stateless_declaration_from_template_example │ │ │ │ │ │ ├── LICENSE │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── ax_event_stateless_declaration_from_template_example.c │ │ │ │ │ │ └── package.conf │ │ │ │ │ └── subscription_example │ │ │ │ │ │ ├── LICENSE │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── ax_event_subscription_example.c │ │ │ │ │ │ └── package.conf │ │ │ │ └── html │ │ │ │ │ ├── ax__event_8h.html │ │ │ │ │ ├── ax__event_8h.js │ │ │ │ │ ├── ax__event_8h_source.html │ │ │ │ │ ├── ax__event__element__item_8h.html │ │ │ │ │ ├── ax__event__element__item_8h.js │ │ │ │ │ ├── ax__event__element__item_8h_source.html │ │ │ │ │ ├── ax__event__error_8h.html │ │ │ │ │ ├── ax__event__error_8h.js │ │ │ │ │ ├── ax__event__error_8h_source.html │ │ │ │ │ ├── ax__event__handler_8h.html │ │ │ │ │ ├── ax__event__handler_8h.js │ │ │ │ │ ├── ax__event__handler_8h_source.html │ │ │ │ │ ├── ax__event__key__value__set_8h.html │ │ │ │ │ ├── ax__event__key__value__set_8h.js │ │ │ │ │ ├── ax__event__key__value__set_8h_source.html │ │ │ │ │ ├── ax__event__types_8h.html │ │ │ │ │ ├── ax__event__types_8h.js │ │ │ │ │ ├── ax__event__types_8h_source.html │ │ │ │ │ ├── ax_event_key_value_set_example1_8c-example.html │ │ │ │ │ ├── ax_event_key_value_set_example2_8c-example.html │ │ │ │ │ ├── ax_event_property_state_declaration_example_8c-example.html │ │ │ │ │ ├── ax_event_property_state_declaration_from_template_example_8c-example.html │ │ │ │ │ ├── ax_event_stateless_declaration_example_8c-example.html │ │ │ │ │ ├── ax_event_stateless_declaration_from_template_example_8c-example.html │ │ │ │ │ ├── ax_event_subscription_example_8c-example.html │ │ │ │ │ ├── axevent_8h.html │ │ │ │ │ ├── axevent_8h_source.html │ │ │ │ │ ├── axis-logo.png │ │ │ │ │ ├── bc_s.png │ │ │ │ │ ├── bdwn.png │ │ │ │ │ ├── closed.png │ │ │ │ │ ├── customdoxygen.css │ │ │ │ │ ├── deprecated.html │ │ │ │ │ ├── doc.png │ │ │ │ │ ├── doxygen.css │ │ │ │ │ ├── doxygen.png │ │ │ │ │ ├── dynsections.js │ │ │ │ │ ├── examples.html │ │ │ │ │ ├── examples.js │ │ │ │ │ ├── files.html │ │ │ │ │ ├── files.js │ │ │ │ │ ├── folderclosed.png │ │ │ │ │ ├── folderopen.png │ │ │ │ │ ├── globals.html │ │ │ │ │ ├── globals_defs.html │ │ │ │ │ ├── globals_enum.html │ │ │ │ │ ├── globals_eval.html │ │ │ │ │ ├── globals_func.html │ │ │ │ │ ├── globals_type.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── jquery.js │ │ │ │ │ ├── menu.js │ │ │ │ │ ├── menudata.js │ │ │ │ │ ├── nav_f.png │ │ │ │ │ ├── nav_g.png │ │ │ │ │ ├── nav_h.png │ │ │ │ │ ├── navtree.css │ │ │ │ │ ├── navtree.js │ │ │ │ │ ├── navtreedata.js │ │ │ │ │ ├── navtreeindex0.js │ │ │ │ │ ├── open.png │ │ │ │ │ ├── pages.html │ │ │ │ │ ├── resize.js │ │ │ │ │ ├── splitbar.png │ │ │ │ │ ├── sync_off.png │ │ │ │ │ ├── sync_on.png │ │ │ │ │ ├── tab_a.png │ │ │ │ │ ├── tab_b.png │ │ │ │ │ ├── tab_h.png │ │ │ │ │ ├── tab_s.png │ │ │ │ │ └── tabs.css │ │ │ ├── axhttp │ │ │ │ ├── examples │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── ax_http_serve_request.c │ │ │ │ │ ├── cgi.txt │ │ │ │ │ └── package.conf │ │ │ │ └── html │ │ │ │ │ ├── annotated.html │ │ │ │ │ ├── annotated_dup.js │ │ │ │ │ ├── ax__http__error_8h.html │ │ │ │ │ ├── ax__http__error_8h.js │ │ │ │ │ ├── ax__http__error_8h_source.html │ │ │ │ │ ├── ax__http__handler_8h.html │ │ │ │ │ ├── ax__http__handler_8h.js │ │ │ │ │ ├── ax__http__handler_8h_source.html │ │ │ │ │ ├── ax__http__handler__int_8h_source.html │ │ │ │ │ ├── ax__http__server__socket_8h.html │ │ │ │ │ ├── ax__http__server__socket_8h.js │ │ │ │ │ ├── ax__http__server__socket_8h_source.html │ │ │ │ │ ├── ax__http__server__socket__int_8h_source.html │ │ │ │ │ ├── ax__http__util_8h_source.html │ │ │ │ │ ├── ax__http__util__int_8h_source.html │ │ │ │ │ ├── ax_http_serve_request_8c-example.html │ │ │ │ │ ├── axhttp_8h.html │ │ │ │ │ ├── axhttp_8h_source.html │ │ │ │ │ ├── axis-logo.png │ │ │ │ │ ├── bc_s.png │ │ │ │ │ ├── bdwn.png │ │ │ │ │ ├── classes.html │ │ │ │ │ ├── closed.png │ │ │ │ │ ├── customdoxygen.css │ │ │ │ │ ├── doc.png │ │ │ │ │ ├── doxygen.css │ │ │ │ │ ├── doxygen.png │ │ │ │ │ ├── dynsections.js │ │ │ │ │ ├── examples.html │ │ │ │ │ ├── examples.js │ │ │ │ │ ├── files.html │ │ │ │ │ ├── files.js │ │ │ │ │ ├── folderclosed.png │ │ │ │ │ ├── folderopen.png │ │ │ │ │ ├── globals.html │ │ │ │ │ ├── globals_defs.html │ │ │ │ │ ├── globals_enum.html │ │ │ │ │ ├── globals_eval.html │ │ │ │ │ ├── globals_func.html │ │ │ │ │ ├── globals_type.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── jquery.js │ │ │ │ │ ├── menu.js │ │ │ │ │ ├── menudata.js │ │ │ │ │ ├── nav_f.png │ │ │ │ │ ├── nav_g.png │ │ │ │ │ ├── nav_h.png │ │ │ │ │ ├── navtree.css │ │ │ │ │ ├── navtree.js │ │ │ │ │ ├── navtreedata.js │ │ │ │ │ ├── navtreeindex0.js │ │ │ │ │ ├── open.png │ │ │ │ │ ├── resize.js │ │ │ │ │ ├── splitbar.png │ │ │ │ │ ├── struct__AXHttpHandler.html │ │ │ │ │ ├── struct__AXHttpHandler.js │ │ │ │ │ ├── struct__AXHttpServerSocket.html │ │ │ │ │ ├── struct__AXHttpServerSocket.js │ │ │ │ │ ├── struct__ThreadArgs.html │ │ │ │ │ ├── struct__ThreadArgs.js │ │ │ │ │ ├── sync_off.png │ │ │ │ │ ├── sync_on.png │ │ │ │ │ ├── tab_a.png │ │ │ │ │ ├── tab_b.png │ │ │ │ │ ├── tab_h.png │ │ │ │ │ ├── tab_s.png │ │ │ │ │ └── tabs.css │ │ │ ├── axoverlay │ │ │ │ ├── example │ │ │ │ │ ├── cairo_image │ │ │ │ │ │ └── axoverlayexample_cairo.c │ │ │ │ │ ├── opengles_objectloader │ │ │ │ │ │ ├── README │ │ │ │ │ │ ├── config.c │ │ │ │ │ │ ├── config.h │ │ │ │ │ │ ├── gl_example_errors.c │ │ │ │ │ │ ├── gl_example_errors.h │ │ │ │ │ │ ├── loaders.cpp │ │ │ │ │ │ ├── loaders.h │ │ │ │ │ │ ├── mesh.cpp │ │ │ │ │ │ ├── mesh.h │ │ │ │ │ │ ├── misc │ │ │ │ │ │ │ ├── cube.bmp │ │ │ │ │ │ │ ├── cube.mtl │ │ │ │ │ │ │ ├── cube.obj │ │ │ │ │ │ │ ├── shader.frag │ │ │ │ │ │ │ ├── shader.vert │ │ │ │ │ │ │ ├── stormwind.bmp │ │ │ │ │ │ │ ├── stormwind.mtl │ │ │ │ │ │ │ └── stormwind.obj │ │ │ │ │ │ ├── opengles_objectloader.c │ │ │ │ │ │ ├── render.c │ │ │ │ │ │ ├── render.h │ │ │ │ │ │ ├── shaders.c │ │ │ │ │ │ └── shaders.h │ │ │ │ │ ├── opengles_performance │ │ │ │ │ │ └── opengles_performance.c │ │ │ │ │ └── palette │ │ │ │ │ │ └── axoverlayexample_palette.c │ │ │ │ └── html │ │ │ │ │ ├── annotated.html │ │ │ │ │ ├── annotated_dup.js │ │ │ │ │ ├── axis-logo.png │ │ │ │ │ ├── axoverlay_8h.html │ │ │ │ │ ├── axoverlay_8h.js │ │ │ │ │ ├── axoverlay_8h__incl.dot │ │ │ │ │ ├── axoverlay_8h__incl.md5 │ │ │ │ │ ├── axoverlay_8h_source.html │ │ │ │ │ ├── axoverlaypage.html │ │ │ │ │ ├── bc_s.png │ │ │ │ │ ├── bdwn.png │ │ │ │ │ ├── classes.html │ │ │ │ │ ├── closed.png │ │ │ │ │ ├── customdoxygen.css │ │ │ │ │ ├── dir_68267d1309a1af8e8297ef4c3efbcdba.html │ │ │ │ │ ├── dir_68267d1309a1af8e8297ef4c3efbcdba.js │ │ │ │ │ ├── doc.png │ │ │ │ │ ├── doxygen.css │ │ │ │ │ ├── doxygen.png │ │ │ │ │ ├── dynsections.js │ │ │ │ │ ├── files.html │ │ │ │ │ ├── files.js │ │ │ │ │ ├── folderclosed.png │ │ │ │ │ ├── folderopen.png │ │ │ │ │ ├── functions.html │ │ │ │ │ ├── functions_vars.html │ │ │ │ │ ├── globals.html │ │ │ │ │ ├── globals_defs.html │ │ │ │ │ ├── globals_enum.html │ │ │ │ │ ├── globals_eval.html │ │ │ │ │ ├── globals_func.html │ │ │ │ │ ├── globals_type.html │ │ │ │ │ ├── graph_legend.dot │ │ │ │ │ ├── graph_legend.html │ │ │ │ │ ├── graph_legend.md5 │ │ │ │ │ ├── index.html │ │ │ │ │ ├── jquery.js │ │ │ │ │ ├── menu.js │ │ │ │ │ ├── menudata.js │ │ │ │ │ ├── nav_f.png │ │ │ │ │ ├── nav_g.png │ │ │ │ │ ├── nav_h.png │ │ │ │ │ ├── navtree.css │ │ │ │ │ ├── navtree.js │ │ │ │ │ ├── navtreedata.js │ │ │ │ │ ├── navtreeindex0.js │ │ │ │ │ ├── open.png │ │ │ │ │ ├── pages.html │ │ │ │ │ ├── resize.js │ │ │ │ │ ├── search │ │ │ │ │ ├── all_0.html │ │ │ │ │ ├── all_0.js │ │ │ │ │ ├── all_1.html │ │ │ │ │ ├── all_1.js │ │ │ │ │ ├── all_2.html │ │ │ │ │ ├── all_2.js │ │ │ │ │ ├── all_3.html │ │ │ │ │ ├── all_3.js │ │ │ │ │ ├── all_4.html │ │ │ │ │ ├── all_4.js │ │ │ │ │ ├── all_5.html │ │ │ │ │ ├── all_5.js │ │ │ │ │ ├── all_6.html │ │ │ │ │ ├── all_6.js │ │ │ │ │ ├── all_7.html │ │ │ │ │ ├── all_7.js │ │ │ │ │ ├── all_8.html │ │ │ │ │ ├── all_8.js │ │ │ │ │ ├── all_9.html │ │ │ │ │ ├── all_9.js │ │ │ │ │ ├── all_a.html │ │ │ │ │ ├── all_a.js │ │ │ │ │ ├── all_b.html │ │ │ │ │ ├── all_b.js │ │ │ │ │ ├── all_c.html │ │ │ │ │ ├── all_c.js │ │ │ │ │ ├── all_d.html │ │ │ │ │ ├── all_d.js │ │ │ │ │ ├── classes_0.html │ │ │ │ │ ├── classes_0.js │ │ │ │ │ ├── close.png │ │ │ │ │ ├── defines_0.html │ │ │ │ │ ├── defines_0.js │ │ │ │ │ ├── enums_0.html │ │ │ │ │ ├── enums_0.js │ │ │ │ │ ├── enumvalues_0.html │ │ │ │ │ ├── enumvalues_0.js │ │ │ │ │ ├── files_0.html │ │ │ │ │ ├── files_0.js │ │ │ │ │ ├── functions_0.html │ │ │ │ │ ├── functions_0.js │ │ │ │ │ ├── mag_sel.png │ │ │ │ │ ├── nomatches.html │ │ │ │ │ ├── pages_0.html │ │ │ │ │ ├── pages_0.js │ │ │ │ │ ├── pages_1.html │ │ │ │ │ ├── pages_1.js │ │ │ │ │ ├── search.css │ │ │ │ │ ├── search.js │ │ │ │ │ ├── search_l.png │ │ │ │ │ ├── search_m.png │ │ │ │ │ ├── search_r.png │ │ │ │ │ ├── searchdata.js │ │ │ │ │ ├── typedefs_0.html │ │ │ │ │ ├── typedefs_0.js │ │ │ │ │ ├── variables_0.html │ │ │ │ │ ├── variables_0.js │ │ │ │ │ ├── variables_1.html │ │ │ │ │ ├── variables_1.js │ │ │ │ │ ├── variables_2.html │ │ │ │ │ ├── variables_2.js │ │ │ │ │ ├── variables_3.html │ │ │ │ │ ├── variables_3.js │ │ │ │ │ ├── variables_4.html │ │ │ │ │ ├── variables_4.js │ │ │ │ │ ├── variables_5.html │ │ │ │ │ ├── variables_5.js │ │ │ │ │ ├── variables_6.html │ │ │ │ │ ├── variables_6.js │ │ │ │ │ ├── variables_7.html │ │ │ │ │ ├── variables_7.js │ │ │ │ │ ├── variables_8.html │ │ │ │ │ ├── variables_8.js │ │ │ │ │ ├── variables_9.html │ │ │ │ │ ├── variables_9.js │ │ │ │ │ ├── variables_a.html │ │ │ │ │ ├── variables_a.js │ │ │ │ │ ├── variables_b.html │ │ │ │ │ ├── variables_b.js │ │ │ │ │ ├── variables_c.html │ │ │ │ │ └── variables_c.js │ │ │ │ │ ├── splitbar.png │ │ │ │ │ ├── structaxoverlay__overlay__data.html │ │ │ │ │ ├── structaxoverlay__overlay__data.js │ │ │ │ │ ├── structaxoverlay__palette__color.html │ │ │ │ │ ├── structaxoverlay__palette__color.js │ │ │ │ │ ├── structaxoverlay__settings.html │ │ │ │ │ ├── structaxoverlay__settings.js │ │ │ │ │ ├── structaxoverlay__settings__coll__graph.dot │ │ │ │ │ ├── structaxoverlay__settings__coll__graph.md5 │ │ │ │ │ ├── structaxoverlay__stream__data.html │ │ │ │ │ ├── structaxoverlay__stream__data.js │ │ │ │ │ ├── sync_off.png │ │ │ │ │ ├── sync_on.png │ │ │ │ │ ├── tab_a.png │ │ │ │ │ ├── tab_b.png │ │ │ │ │ ├── tab_h.png │ │ │ │ │ ├── tab_s.png │ │ │ │ │ └── tabs.css │ │ │ ├── axparameter │ │ │ │ ├── examples │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── axparameterexample.c │ │ │ │ │ ├── package.conf │ │ │ │ │ └── param.conf │ │ │ │ └── html │ │ │ │ │ ├── ax__parameter_8h.html │ │ │ │ │ ├── ax__parameter_8h.js │ │ │ │ │ ├── ax__parameter_8h_source.html │ │ │ │ │ ├── ax__parameter__error_8h.html │ │ │ │ │ ├── ax__parameter__error_8h.js │ │ │ │ │ ├── ax__parameter__error_8h_source.html │ │ │ │ │ ├── axis-logo.png │ │ │ │ │ ├── axparameter_8h.html │ │ │ │ │ ├── axparameter_8h_source.html │ │ │ │ │ ├── axparameterexample_8c-example.html │ │ │ │ │ ├── bc_s.png │ │ │ │ │ ├── bdwn.png │ │ │ │ │ ├── closed.png │ │ │ │ │ ├── customdoxygen.css │ │ │ │ │ ├── doc.png │ │ │ │ │ ├── doxygen.css │ │ │ │ │ ├── doxygen.png │ │ │ │ │ ├── dynsections.js │ │ │ │ │ ├── examples.html │ │ │ │ │ ├── examples.js │ │ │ │ │ ├── files.html │ │ │ │ │ ├── files.js │ │ │ │ │ ├── folderclosed.png │ │ │ │ │ ├── folderopen.png │ │ │ │ │ ├── globals.html │ │ │ │ │ ├── globals_enum.html │ │ │ │ │ ├── globals_eval.html │ │ │ │ │ ├── globals_func.html │ │ │ │ │ ├── globals_type.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── jquery.js │ │ │ │ │ ├── menu.js │ │ │ │ │ ├── menudata.js │ │ │ │ │ ├── nav_f.png │ │ │ │ │ ├── nav_g.png │ │ │ │ │ ├── nav_h.png │ │ │ │ │ ├── navtree.css │ │ │ │ │ ├── navtree.js │ │ │ │ │ ├── navtreedata.js │ │ │ │ │ ├── navtreeindex0.js │ │ │ │ │ ├── open.png │ │ │ │ │ ├── resize.js │ │ │ │ │ ├── splitbar.png │ │ │ │ │ ├── sync_off.png │ │ │ │ │ ├── sync_on.png │ │ │ │ │ ├── tab_a.png │ │ │ │ │ ├── tab_b.png │ │ │ │ │ ├── tab_h.png │ │ │ │ │ ├── tab_s.png │ │ │ │ │ └── tabs.css │ │ │ ├── axptz │ │ │ │ ├── example │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── README │ │ │ │ │ ├── axptzexample.c │ │ │ │ │ └── package.conf │ │ │ │ └── html │ │ │ │ │ ├── annotated.html │ │ │ │ │ ├── annotated_dup.js │ │ │ │ │ ├── ax__ptz_8h.html │ │ │ │ │ ├── ax__ptz_8h.js │ │ │ │ │ ├── ax__ptz_8h_source.html │ │ │ │ │ ├── ax__ptz__control__queue_8h.html │ │ │ │ │ ├── ax__ptz__control__queue_8h.js │ │ │ │ │ ├── ax__ptz__control__queue_8h_source.html │ │ │ │ │ ├── ax__ptz__control__queue__int_8h_source.html │ │ │ │ │ ├── ax__ptz__error_8h.html │ │ │ │ │ ├── ax__ptz__error_8h.js │ │ │ │ │ ├── ax__ptz__error_8h_source.html │ │ │ │ │ ├── ax__ptz__error__int_8h_source.html │ │ │ │ │ ├── ax__ptz__int_8h_source.html │ │ │ │ │ ├── ax__ptz__movement_8h.html │ │ │ │ │ ├── ax__ptz__movement_8h.js │ │ │ │ │ ├── ax__ptz__movement_8h_source.html │ │ │ │ │ ├── ax__ptz__movement__handler_8h.html │ │ │ │ │ ├── ax__ptz__movement__handler_8h.js │ │ │ │ │ ├── ax__ptz__movement__handler_8h_source.html │ │ │ │ │ ├── ax__ptz__movement__handler__int_8h_source.html │ │ │ │ │ ├── ax__ptz__movement__int_8h_source.html │ │ │ │ │ ├── ax__ptz__preset__handler_8h.html │ │ │ │ │ ├── ax__ptz__preset__handler_8h.js │ │ │ │ │ ├── ax__ptz__preset__handler_8h_source.html │ │ │ │ │ ├── ax__ptz__preset__handler__int_8h_source.html │ │ │ │ │ ├── ax__ptz__types_8h.html │ │ │ │ │ ├── ax__ptz__types_8h.js │ │ │ │ │ ├── ax__ptz__types_8h_source.html │ │ │ │ │ ├── ax__ptz__types__int_8h_source.html │ │ │ │ │ ├── axis-logo.png │ │ │ │ │ ├── axptz_8h.html │ │ │ │ │ ├── axptz_8h_source.html │ │ │ │ │ ├── axptzexample_8c-example.html │ │ │ │ │ ├── bc_s.png │ │ │ │ │ ├── bdwn.png │ │ │ │ │ ├── classes.html │ │ │ │ │ ├── closed.png │ │ │ │ │ ├── customdoxygen.css │ │ │ │ │ ├── doc.png │ │ │ │ │ ├── doxygen.css │ │ │ │ │ ├── doxygen.png │ │ │ │ │ ├── dynsections.js │ │ │ │ │ ├── examples.html │ │ │ │ │ ├── examples.js │ │ │ │ │ ├── files.html │ │ │ │ │ ├── files.js │ │ │ │ │ ├── folderclosed.png │ │ │ │ │ ├── folderopen.png │ │ │ │ │ ├── functions.html │ │ │ │ │ ├── functions_vars.html │ │ │ │ │ ├── globals.html │ │ │ │ │ ├── globals_enum.html │ │ │ │ │ ├── globals_eval.html │ │ │ │ │ ├── globals_func.html │ │ │ │ │ ├── globals_type.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── jquery.js │ │ │ │ │ ├── menu.js │ │ │ │ │ ├── menudata.js │ │ │ │ │ ├── nav_f.png │ │ │ │ │ ├── nav_g.png │ │ │ │ │ ├── nav_h.png │ │ │ │ │ ├── navtree.css │ │ │ │ │ ├── navtree.js │ │ │ │ │ ├── navtreedata.js │ │ │ │ │ ├── navtreeindex0.js │ │ │ │ │ ├── open.png │ │ │ │ │ ├── resize.js │ │ │ │ │ ├── splitbar.png │ │ │ │ │ ├── structAXPTZLimits.html │ │ │ │ │ ├── structAXPTZLimits.js │ │ │ │ │ ├── structAXPTZMonotonicTimestamp.html │ │ │ │ │ ├── structAXPTZMonotonicTimestamp.js │ │ │ │ │ ├── structAXPTZStatus.html │ │ │ │ │ ├── structAXPTZStatus.js │ │ │ │ │ ├── struct__AXPTZ.html │ │ │ │ │ ├── struct__AXPTZ.js │ │ │ │ │ ├── struct__AXPTZAbsoluteMovement.html │ │ │ │ │ ├── struct__AXPTZAbsoluteMovement.js │ │ │ │ │ ├── struct__AXPTZContinuousMovement.html │ │ │ │ │ ├── struct__AXPTZContinuousMovement.js │ │ │ │ │ ├── struct__AXPTZControlQueue.html │ │ │ │ │ ├── struct__AXPTZControlQueue.js │ │ │ │ │ ├── struct__AXPTZControlQueueGroup.html │ │ │ │ │ ├── struct__AXPTZControlQueueGroup.js │ │ │ │ │ ├── struct__AXPTZMovement.html │ │ │ │ │ ├── struct__AXPTZMovement.js │ │ │ │ │ ├── struct__AXPTZMovementHandler.html │ │ │ │ │ ├── struct__AXPTZMovementHandler.js │ │ │ │ │ ├── struct__AXPTZPresetHandler.html │ │ │ │ │ ├── struct__AXPTZPresetHandler.js │ │ │ │ │ ├── struct__AXPTZProperty.html │ │ │ │ │ ├── struct__AXPTZProperty.js │ │ │ │ │ ├── struct__AXPTZRelativeMovement.html │ │ │ │ │ ├── struct__AXPTZRelativeMovement.js │ │ │ │ │ ├── sync_off.png │ │ │ │ │ ├── sync_on.png │ │ │ │ │ ├── tab_a.png │ │ │ │ │ ├── tab_b.png │ │ │ │ │ ├── tab_h.png │ │ │ │ │ ├── tab_s.png │ │ │ │ │ └── tabs.css │ │ │ ├── axserialport │ │ │ │ ├── example_pelco-D │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── README │ │ │ │ │ ├── axserialport_pelco_spectra_mini.c │ │ │ │ │ └── package.conf │ │ │ │ ├── examples │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── README │ │ │ │ │ ├── axserialport_example.c │ │ │ │ │ └── package.conf │ │ │ │ ├── examples_threads │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── README │ │ │ │ │ ├── package.conf │ │ │ │ │ └── serial_example_threads.c │ │ │ │ └── html │ │ │ │ │ ├── axis-logo.png │ │ │ │ │ ├── axserialport_8h.html │ │ │ │ │ ├── axserialport_8h.js │ │ │ │ │ ├── axserialport_8h_source.html │ │ │ │ │ ├── axserialport_example_8c-example.html │ │ │ │ │ ├── bc_s.png │ │ │ │ │ ├── bdwn.png │ │ │ │ │ ├── closed.png │ │ │ │ │ ├── customdoxygen.css │ │ │ │ │ ├── doc.png │ │ │ │ │ ├── doxygen.css │ │ │ │ │ ├── doxygen.png │ │ │ │ │ ├── dynsections.js │ │ │ │ │ ├── examples.html │ │ │ │ │ ├── examples.js │ │ │ │ │ ├── files.html │ │ │ │ │ ├── files.js │ │ │ │ │ ├── folderclosed.png │ │ │ │ │ ├── folderopen.png │ │ │ │ │ ├── globals.html │ │ │ │ │ ├── globals_enum.html │ │ │ │ │ ├── globals_eval.html │ │ │ │ │ ├── globals_func.html │ │ │ │ │ ├── globals_type.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── jquery.js │ │ │ │ │ ├── menu.js │ │ │ │ │ ├── menudata.js │ │ │ │ │ ├── nav_f.png │ │ │ │ │ ├── nav_g.png │ │ │ │ │ ├── nav_h.png │ │ │ │ │ ├── navtree.css │ │ │ │ │ ├── navtree.js │ │ │ │ │ ├── navtreedata.js │ │ │ │ │ ├── navtreeindex0.js │ │ │ │ │ ├── open.png │ │ │ │ │ ├── resize.js │ │ │ │ │ ├── splitbar.png │ │ │ │ │ ├── sync_off.png │ │ │ │ │ ├── sync_on.png │ │ │ │ │ ├── tab_a.png │ │ │ │ │ ├── tab_b.png │ │ │ │ │ ├── tab_h.png │ │ │ │ │ ├── tab_s.png │ │ │ │ │ └── tabs.css │ │ │ ├── axstorage │ │ │ │ ├── examples │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── README │ │ │ │ │ ├── ax_storage_example.c │ │ │ │ │ ├── package.conf │ │ │ │ │ └── param.conf │ │ │ │ └── html │ │ │ │ │ ├── ax__storage_8h.html │ │ │ │ │ ├── ax__storage_8h.js │ │ │ │ │ ├── ax__storage_8h_source.html │ │ │ │ │ ├── ax__storage__error_8h.html │ │ │ │ │ ├── ax__storage__error_8h.js │ │ │ │ │ ├── ax__storage__error_8h_source.html │ │ │ │ │ ├── ax_storage_example_8c-example.html │ │ │ │ │ ├── axis-logo.png │ │ │ │ │ ├── axstorage_8h.html │ │ │ │ │ ├── axstorage_8h_source.html │ │ │ │ │ ├── bc_s.png │ │ │ │ │ ├── bdwn.png │ │ │ │ │ ├── closed.png │ │ │ │ │ ├── customdoxygen.css │ │ │ │ │ ├── doc.png │ │ │ │ │ ├── doxygen.css │ │ │ │ │ ├── doxygen.png │ │ │ │ │ ├── dynsections.js │ │ │ │ │ ├── examples.html │ │ │ │ │ ├── examples.js │ │ │ │ │ ├── files.html │ │ │ │ │ ├── files.js │ │ │ │ │ ├── folderclosed.png │ │ │ │ │ ├── folderopen.png │ │ │ │ │ ├── globals.html │ │ │ │ │ ├── globals_enum.html │ │ │ │ │ ├── globals_eval.html │ │ │ │ │ ├── globals_func.html │ │ │ │ │ ├── globals_type.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── jquery.js │ │ │ │ │ ├── menu.js │ │ │ │ │ ├── menudata.js │ │ │ │ │ ├── nav_f.png │ │ │ │ │ ├── nav_g.png │ │ │ │ │ ├── nav_h.png │ │ │ │ │ ├── navtree.css │ │ │ │ │ ├── navtree.js │ │ │ │ │ ├── navtreedata.js │ │ │ │ │ ├── navtreeindex0.js │ │ │ │ │ ├── open.png │ │ │ │ │ ├── resize.js │ │ │ │ │ ├── splitbar.png │ │ │ │ │ ├── sync_off.png │ │ │ │ │ ├── sync_on.png │ │ │ │ │ ├── tab_a.png │ │ │ │ │ ├── tab_b.png │ │ │ │ │ ├── tab_h.png │ │ │ │ │ ├── tab_s.png │ │ │ │ │ └── tabs.css │ │ │ ├── capture │ │ │ │ └── html │ │ │ │ │ ├── axis-logo.png │ │ │ │ │ ├── bc_s.png │ │ │ │ │ ├── bdwn.png │ │ │ │ │ ├── capture_8h.html │ │ │ │ │ ├── capture_8h.js │ │ │ │ │ ├── capture_8h_source.html │ │ │ │ │ ├── capture__native_8h.html │ │ │ │ │ ├── capture__native_8h.js │ │ │ │ │ ├── capture__native_8h_source.html │ │ │ │ │ ├── closed.png │ │ │ │ │ ├── customdoxygen.css │ │ │ │ │ ├── deprecated.html │ │ │ │ │ ├── doc.png │ │ │ │ │ ├── doxygen.css │ │ │ │ │ ├── doxygen.png │ │ │ │ │ ├── dynsections.js │ │ │ │ │ ├── files.html │ │ │ │ │ ├── files.js │ │ │ │ │ ├── folderclosed.png │ │ │ │ │ ├── folderopen.png │ │ │ │ │ ├── globals.html │ │ │ │ │ ├── globals_defs.html │ │ │ │ │ ├── globals_func.html │ │ │ │ │ ├── globals_type.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── jquery.js │ │ │ │ │ ├── menu.js │ │ │ │ │ ├── menudata.js │ │ │ │ │ ├── nav_f.png │ │ │ │ │ ├── nav_g.png │ │ │ │ │ ├── nav_h.png │ │ │ │ │ ├── navtree.css │ │ │ │ │ ├── navtree.js │ │ │ │ │ ├── navtreedata.js │ │ │ │ │ ├── navtreeindex0.js │ │ │ │ │ ├── open.png │ │ │ │ │ ├── pages.html │ │ │ │ │ ├── resize.js │ │ │ │ │ ├── splitbar.png │ │ │ │ │ ├── sync_off.png │ │ │ │ │ ├── sync_on.png │ │ │ │ │ ├── tab_a.png │ │ │ │ │ ├── tab_b.png │ │ │ │ │ ├── tab_h.png │ │ │ │ │ ├── tab_s.png │ │ │ │ │ └── tabs.css │ │ │ ├── larod │ │ │ │ └── html │ │ │ │ │ ├── annotated.html │ │ │ │ │ ├── axis-logo.png │ │ │ │ │ ├── bc_s.png │ │ │ │ │ ├── bdwn.png │ │ │ │ │ ├── classes.html │ │ │ │ │ ├── closed.png │ │ │ │ │ ├── customdoxygen.css │ │ │ │ │ ├── deprecated.html │ │ │ │ │ ├── dir_97aefd0d527b934f1d99a682da8fe6a9.html │ │ │ │ │ ├── doc.png │ │ │ │ │ ├── doxygen.css │ │ │ │ │ ├── doxygen.png │ │ │ │ │ ├── dynsections.js │ │ │ │ │ ├── files.html │ │ │ │ │ ├── folderclosed.png │ │ │ │ │ ├── folderopen.png │ │ │ │ │ ├── functions.html │ │ │ │ │ ├── functions_vars.html │ │ │ │ │ ├── globals.html │ │ │ │ │ ├── globals_defs.html │ │ │ │ │ ├── globals_enum.html │ │ │ │ │ ├── globals_eval.html │ │ │ │ │ ├── globals_func.html │ │ │ │ │ ├── globals_type.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── jquery.js │ │ │ │ │ ├── larod_8h.html │ │ │ │ │ ├── larod_8h_source.html │ │ │ │ │ ├── md__opt_builder-doc_larod_doc_api-changes.html │ │ │ │ │ ├── md__opt_builder-doc_larod_doc_architecture.html │ │ │ │ │ ├── md__opt_builder-doc_larod_doc_dma-buf.html │ │ │ │ │ ├── md__opt_builder-doc_larod_doc_introduction-for-app-developers.html │ │ │ │ │ ├── md__opt_builder-doc_larod_doc_larod-client.html │ │ │ │ │ ├── md__opt_builder-doc_larod_doc_model-formats.html │ │ │ │ │ ├── md__opt_builder-doc_larod_doc_nn-inference.html │ │ │ │ │ ├── md__opt_builder-doc_larod_doc_preprocessing.html │ │ │ │ │ ├── md__opt_builder-doc_larod_tools_model-converter_README.html │ │ │ │ │ ├── menu.js │ │ │ │ │ ├── menudata.js │ │ │ │ │ ├── nav_f.png │ │ │ │ │ ├── nav_g.png │ │ │ │ │ ├── nav_h.png │ │ │ │ │ ├── open.png │ │ │ │ │ ├── pages.html │ │ │ │ │ ├── search │ │ │ │ │ ├── all_0.html │ │ │ │ │ ├── all_0.js │ │ │ │ │ ├── all_1.html │ │ │ │ │ ├── all_1.js │ │ │ │ │ ├── all_2.html │ │ │ │ │ ├── all_2.js │ │ │ │ │ ├── all_3.html │ │ │ │ │ ├── all_3.js │ │ │ │ │ ├── all_4.html │ │ │ │ │ ├── all_4.js │ │ │ │ │ ├── all_5.html │ │ │ │ │ ├── all_5.js │ │ │ │ │ ├── all_6.html │ │ │ │ │ ├── all_6.js │ │ │ │ │ ├── all_7.html │ │ │ │ │ ├── all_7.js │ │ │ │ │ ├── all_8.html │ │ │ │ │ ├── all_8.js │ │ │ │ │ ├── all_9.html │ │ │ │ │ ├── all_9.js │ │ │ │ │ ├── all_a.html │ │ │ │ │ ├── all_a.js │ │ │ │ │ ├── classes_0.html │ │ │ │ │ ├── classes_0.js │ │ │ │ │ ├── close.png │ │ │ │ │ ├── defines_0.html │ │ │ │ │ ├── defines_0.js │ │ │ │ │ ├── enums_0.html │ │ │ │ │ ├── enums_0.js │ │ │ │ │ ├── enumvalues_0.html │ │ │ │ │ ├── enumvalues_0.js │ │ │ │ │ ├── files_0.html │ │ │ │ │ ├── files_0.js │ │ │ │ │ ├── functions_0.html │ │ │ │ │ ├── functions_0.js │ │ │ │ │ ├── mag_sel.png │ │ │ │ │ ├── nomatches.html │ │ │ │ │ ├── pages_0.html │ │ │ │ │ ├── pages_0.js │ │ │ │ │ ├── pages_1.html │ │ │ │ │ ├── pages_1.js │ │ │ │ │ ├── pages_2.html │ │ │ │ │ ├── pages_2.js │ │ │ │ │ ├── pages_3.html │ │ │ │ │ ├── pages_3.js │ │ │ │ │ ├── pages_4.html │ │ │ │ │ ├── pages_4.js │ │ │ │ │ ├── pages_5.html │ │ │ │ │ ├── pages_5.js │ │ │ │ │ ├── pages_6.html │ │ │ │ │ ├── pages_6.js │ │ │ │ │ ├── pages_7.html │ │ │ │ │ ├── pages_7.js │ │ │ │ │ ├── pages_8.html │ │ │ │ │ ├── pages_8.js │ │ │ │ │ ├── pages_9.html │ │ │ │ │ ├── pages_9.js │ │ │ │ │ ├── search.css │ │ │ │ │ ├── search.js │ │ │ │ │ ├── search_l.png │ │ │ │ │ ├── search_m.png │ │ │ │ │ ├── search_r.png │ │ │ │ │ ├── searchdata.js │ │ │ │ │ ├── typedefs_0.html │ │ │ │ │ ├── typedefs_0.js │ │ │ │ │ ├── variables_0.html │ │ │ │ │ ├── variables_0.js │ │ │ │ │ ├── variables_1.html │ │ │ │ │ ├── variables_1.js │ │ │ │ │ ├── variables_2.html │ │ │ │ │ └── variables_2.js │ │ │ │ │ ├── splitbar.png │ │ │ │ │ ├── structlarodError.html │ │ │ │ │ ├── structlarodTensorDims.html │ │ │ │ │ ├── structlarodTensorPitches.html │ │ │ │ │ ├── sync_off.png │ │ │ │ │ ├── sync_on.png │ │ │ │ │ ├── tab_a.png │ │ │ │ │ ├── tab_b.png │ │ │ │ │ ├── tab_h.png │ │ │ │ │ ├── tab_s.png │ │ │ │ │ └── tabs.css │ │ │ ├── licensekey │ │ │ │ └── html │ │ │ │ │ ├── axis-logo.png │ │ │ │ │ ├── bc_s.png │ │ │ │ │ ├── bdwn.png │ │ │ │ │ ├── closed.png │ │ │ │ │ ├── customdoxygen.css │ │ │ │ │ ├── doc.png │ │ │ │ │ ├── doxygen.css │ │ │ │ │ ├── doxygen.png │ │ │ │ │ ├── dynsections.js │ │ │ │ │ ├── files.html │ │ │ │ │ ├── files.js │ │ │ │ │ ├── folderclosed.png │ │ │ │ │ ├── folderopen.png │ │ │ │ │ ├── globals.html │ │ │ │ │ ├── globals_func.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── jquery.js │ │ │ │ │ ├── licensekey_8h.html │ │ │ │ │ ├── licensekey_8h.js │ │ │ │ │ ├── licensekey_8h_source.html │ │ │ │ │ ├── licensekey__dyn_8h_source.html │ │ │ │ │ ├── licensekey__states_8h.html │ │ │ │ │ ├── licensekey__states_8h.js │ │ │ │ │ ├── licensekey__states_8h_source.html │ │ │ │ │ ├── menu.js │ │ │ │ │ ├── menudata.js │ │ │ │ │ ├── nav_f.png │ │ │ │ │ ├── nav_g.png │ │ │ │ │ ├── nav_h.png │ │ │ │ │ ├── navtree.css │ │ │ │ │ ├── navtree.js │ │ │ │ │ ├── navtreedata.js │ │ │ │ │ ├── navtreeindex0.js │ │ │ │ │ ├── open.png │ │ │ │ │ ├── resize.js │ │ │ │ │ ├── splitbar.png │ │ │ │ │ ├── sync_off.png │ │ │ │ │ ├── sync_on.png │ │ │ │ │ ├── tab_a.png │ │ │ │ │ ├── tab_b.png │ │ │ │ │ ├── tab_h.png │ │ │ │ │ ├── tab_s.png │ │ │ │ │ └── tabs.css │ │ │ └── vdostream │ │ │ │ └── html │ │ │ │ ├── annotated.html │ │ │ │ ├── annotated_dup.js │ │ │ │ ├── bc_s.png │ │ │ │ ├── bdwn.png │ │ │ │ ├── classVdoChannel.html │ │ │ │ ├── classVdoFrame.html │ │ │ │ ├── classVdoMap.html │ │ │ │ ├── classVdoStream.html │ │ │ │ ├── classes.html │ │ │ │ ├── closed.png │ │ │ │ ├── customdoxygen.css │ │ │ │ ├── deprecated.html │ │ │ │ ├── dir_000000_000001.html │ │ │ │ ├── dir_97aefd0d527b934f1d99a682da8fe6a9.html │ │ │ │ ├── dir_97aefd0d527b934f1d99a682da8fe6a9_dep.dot │ │ │ │ ├── dir_97aefd0d527b934f1d99a682da8fe6a9_dep.md5 │ │ │ │ ├── dir_bdd9a5d540de89e9fe90efdfc6973a4f.html │ │ │ │ ├── doc.png │ │ │ │ ├── doxygen.css │ │ │ │ ├── doxygen.png │ │ │ │ ├── dynsections.js │ │ │ │ ├── files.html │ │ │ │ ├── files.js │ │ │ │ ├── folderclosed.png │ │ │ │ ├── folderopen.png │ │ │ │ ├── globals.html │ │ │ │ ├── globals_defs.html │ │ │ │ ├── globals_dup.js │ │ │ │ ├── globals_enum.html │ │ │ │ ├── globals_eval.html │ │ │ │ ├── globals_func.html │ │ │ │ ├── graph_legend.dot │ │ │ │ ├── graph_legend.html │ │ │ │ ├── graph_legend.md5 │ │ │ │ ├── index.html │ │ │ │ ├── jquery.js │ │ │ │ ├── menu.js │ │ │ │ ├── menudata.js │ │ │ │ ├── nav_f.png │ │ │ │ ├── nav_g.png │ │ │ │ ├── nav_h.png │ │ │ │ ├── navtree.css │ │ │ │ ├── navtree.js │ │ │ │ ├── navtreedata.js │ │ │ │ ├── navtreeindex0.js │ │ │ │ ├── navtreeindex1.js │ │ │ │ ├── open.png │ │ │ │ ├── pages.html │ │ │ │ ├── resize.js │ │ │ │ ├── search │ │ │ │ ├── all_0.html │ │ │ │ ├── all_0.js │ │ │ │ ├── all_1.html │ │ │ │ ├── all_1.js │ │ │ │ ├── classes_0.html │ │ │ │ ├── classes_0.js │ │ │ │ ├── close.png │ │ │ │ ├── defines_0.html │ │ │ │ ├── defines_0.js │ │ │ │ ├── enums_0.html │ │ │ │ ├── enums_0.js │ │ │ │ ├── enumvalues_0.html │ │ │ │ ├── enumvalues_0.js │ │ │ │ ├── files_0.html │ │ │ │ ├── files_0.js │ │ │ │ ├── functions_0.html │ │ │ │ ├── functions_0.js │ │ │ │ ├── mag_sel.png │ │ │ │ ├── nomatches.html │ │ │ │ ├── pages_0.html │ │ │ │ ├── pages_0.js │ │ │ │ ├── search.css │ │ │ │ ├── search.js │ │ │ │ ├── search_l.png │ │ │ │ ├── search_m.png │ │ │ │ ├── search_r.png │ │ │ │ └── searchdata.js │ │ │ │ ├── splitbar.png │ │ │ │ ├── structVdoChunk.html │ │ │ │ ├── structVdoMemChunk.html │ │ │ │ ├── structVdoRect.html │ │ │ │ ├── structVdoResolution.html │ │ │ │ ├── structVdoResolutionSet.html │ │ │ │ ├── structVdoResolutionSet__coll__graph.dot │ │ │ │ ├── structVdoResolutionSet__coll__graph.md5 │ │ │ │ ├── sync_off.png │ │ │ │ ├── sync_on.png │ │ │ │ ├── tab_a.png │ │ │ │ ├── tab_b.png │ │ │ │ ├── tab_h.png │ │ │ │ ├── tab_s.png │ │ │ │ ├── tabs.css │ │ │ │ ├── vdo-buffer_8h.html │ │ │ │ ├── vdo-buffer_8h.js │ │ │ │ ├── vdo-buffer_8h__dep__incl.dot │ │ │ │ ├── vdo-buffer_8h__dep__incl.md5 │ │ │ │ ├── vdo-buffer_8h__incl.dot │ │ │ │ ├── vdo-buffer_8h__incl.md5 │ │ │ │ ├── vdo-buffer_8h_source.html │ │ │ │ ├── vdo-channel_8h.html │ │ │ │ ├── vdo-channel_8h.js │ │ │ │ ├── vdo-channel_8h__incl.dot │ │ │ │ ├── vdo-channel_8h__incl.md5 │ │ │ │ ├── vdo-channel_8h_source.html │ │ │ │ ├── vdo-error_8h.html │ │ │ │ ├── vdo-error_8h.js │ │ │ │ ├── vdo-error_8h__incl.dot │ │ │ │ ├── vdo-error_8h__incl.md5 │ │ │ │ ├── vdo-error_8h_source.html │ │ │ │ ├── vdo-frame_8h.html │ │ │ │ ├── vdo-frame_8h.js │ │ │ │ ├── vdo-frame_8h__dep__incl.dot │ │ │ │ ├── vdo-frame_8h__dep__incl.md5 │ │ │ │ ├── vdo-frame_8h__incl.dot │ │ │ │ ├── vdo-frame_8h__incl.md5 │ │ │ │ ├── vdo-frame_8h_source.html │ │ │ │ ├── vdo-map_8h.html │ │ │ │ ├── vdo-map_8h.js │ │ │ │ ├── vdo-map_8h__dep__incl.dot │ │ │ │ ├── vdo-map_8h__dep__incl.md5 │ │ │ │ ├── vdo-map_8h__incl.dot │ │ │ │ ├── vdo-map_8h__incl.md5 │ │ │ │ ├── vdo-map_8h_source.html │ │ │ │ ├── vdo-stream_8h.html │ │ │ │ ├── vdo-stream_8h.js │ │ │ │ ├── vdo-stream_8h__incl.dot │ │ │ │ ├── vdo-stream_8h__incl.md5 │ │ │ │ ├── vdo-stream_8h_source.html │ │ │ │ ├── vdo-types_8h.html │ │ │ │ ├── vdo-types_8h.js │ │ │ │ ├── vdo-types_8h__dep__incl.dot │ │ │ │ ├── vdo-types_8h__dep__incl.md5 │ │ │ │ ├── vdo-types_8h__incl.dot │ │ │ │ ├── vdo-types_8h__incl.md5 │ │ │ │ └── vdo-types_8h_source.html │ │ │ ├── main │ │ │ └── html │ │ │ │ ├── acap3_api.html │ │ │ │ └── index.html │ │ │ └── sdk │ │ │ └── html │ │ │ └── index.html │ ├── develop-applications │ │ ├── application-project-structure.md │ │ ├── build-install-and-run-the-application.md │ │ ├── develop-using-visual-studio-code.md │ │ ├── index.md │ │ ├── reproducible-builds.md │ │ ├── supported-languages.md │ │ └── vapix-access-for-acap-applications.md │ ├── get-started │ │ ├── acap-development-requirements.md │ │ ├── compatibility.md │ │ ├── find-out-which-sdk-to-use.md │ │ ├── index.md │ │ ├── set-up-and-verify-the-sdk.md │ │ └── set-up-the-device.md │ ├── index.md │ ├── introduction │ │ └── index.md │ ├── more-resources │ │ └── index.md │ ├── services-for-partners │ │ ├── acap-service-portal-for-administrators.md │ │ ├── accept-or-deny-unsigned-acap-applications.md │ │ ├── index.md │ │ └── package-signing.md │ └── what-is-new-in-acap-sdk │ │ └── index.md ├── api │ ├── _setup_apidocs.sh │ ├── beta-api.md │ ├── computer-vision-sdk-apis.md │ ├── index.md │ ├── native-sdk-api.md │ └── src │ │ ├── api │ │ ├── axevent │ │ │ ├── examples │ │ │ │ ├── Makefile │ │ │ │ ├── element_item_example │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── ax_event_element_item_example.c │ │ │ │ │ └── package.conf │ │ │ │ ├── key_value_set_example1 │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── ax_event_key_value_set_example1.c │ │ │ │ │ └── package.conf │ │ │ │ ├── key_value_set_example2 │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── ax_event_key_value_set_example2.c │ │ │ │ │ └── package.conf │ │ │ │ ├── property_state_declaration_example │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── ax_event_property_state_declaration_example.c │ │ │ │ │ └── package.conf │ │ │ │ ├── property_state_declaration_from_template_example │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── ax_event_property_state_declaration_from_template_example.c │ │ │ │ │ └── package.conf │ │ │ │ ├── send_event_example │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── ax_event_send_event_example.c │ │ │ │ │ └── package.conf │ │ │ │ ├── stateless_declaration_example │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── ax_event_stateless_declaration_example.c │ │ │ │ │ └── package.conf │ │ │ │ ├── stateless_declaration_from_template_example │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── ax_event_stateless_declaration_from_template_example.c │ │ │ │ │ └── package.conf │ │ │ │ └── subscription_example │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── ax_event_subscription_example.c │ │ │ │ │ └── package.conf │ │ │ └── html │ │ │ │ ├── ax__event_8h.html │ │ │ │ ├── ax__event_8h.js │ │ │ │ ├── ax__event_8h_source.html │ │ │ │ ├── ax__event__element__item_8h.html │ │ │ │ ├── ax__event__element__item_8h.js │ │ │ │ ├── ax__event__element__item_8h_source.html │ │ │ │ ├── ax__event__error_8h.html │ │ │ │ ├── ax__event__error_8h.js │ │ │ │ ├── ax__event__error_8h_source.html │ │ │ │ ├── ax__event__handler_8h.html │ │ │ │ ├── ax__event__handler_8h.js │ │ │ │ ├── ax__event__handler_8h_source.html │ │ │ │ ├── ax__event__key__value__set_8h.html │ │ │ │ ├── ax__event__key__value__set_8h.js │ │ │ │ ├── ax__event__key__value__set_8h_source.html │ │ │ │ ├── ax__event__types_8h.html │ │ │ │ ├── ax__event__types_8h.js │ │ │ │ ├── ax__event__types_8h_source.html │ │ │ │ ├── ax_event_key_value_set_example1_8c-example.html │ │ │ │ ├── ax_event_key_value_set_example2_8c-example.html │ │ │ │ ├── ax_event_property_state_declaration_example_8c-example.html │ │ │ │ ├── ax_event_property_state_declaration_from_template_example_8c-example.html │ │ │ │ ├── ax_event_stateless_declaration_example_8c-example.html │ │ │ │ ├── ax_event_stateless_declaration_from_template_example_8c-example.html │ │ │ │ ├── ax_event_subscription_example_8c-example.html │ │ │ │ ├── axevent_8h.html │ │ │ │ ├── axevent_8h_source.html │ │ │ │ ├── axis-logo.png │ │ │ │ ├── bc_s.png │ │ │ │ ├── bdwn.png │ │ │ │ ├── closed.png │ │ │ │ ├── customdoxygen.css │ │ │ │ ├── deprecated.html │ │ │ │ ├── doc.png │ │ │ │ ├── doxygen.css │ │ │ │ ├── doxygen.svg │ │ │ │ ├── dynsections.js │ │ │ │ ├── examples.html │ │ │ │ ├── examples.js │ │ │ │ ├── files.html │ │ │ │ ├── files_dup.js │ │ │ │ ├── folderclosed.png │ │ │ │ ├── folderopen.png │ │ │ │ ├── globals.html │ │ │ │ ├── globals_defs.html │ │ │ │ ├── globals_enum.html │ │ │ │ ├── globals_eval.html │ │ │ │ ├── globals_func.html │ │ │ │ ├── globals_type.html │ │ │ │ ├── index.html │ │ │ │ ├── jquery.js │ │ │ │ ├── menu.js │ │ │ │ ├── menudata.js │ │ │ │ ├── nav_f.png │ │ │ │ ├── nav_g.png │ │ │ │ ├── nav_h.png │ │ │ │ ├── navtree.css │ │ │ │ ├── navtree.js │ │ │ │ ├── navtreedata.js │ │ │ │ ├── navtreeindex0.js │ │ │ │ ├── open.png │ │ │ │ ├── pages.html │ │ │ │ ├── resize.js │ │ │ │ ├── splitbar.png │ │ │ │ ├── sync_off.png │ │ │ │ ├── sync_on.png │ │ │ │ ├── tab_a.png │ │ │ │ ├── tab_b.png │ │ │ │ ├── tab_h.png │ │ │ │ ├── tab_s.png │ │ │ │ └── tabs.css │ │ ├── axoverlay │ │ │ ├── example │ │ │ │ ├── cairo_image │ │ │ │ │ ├── axoverlayexample_cairo.c │ │ │ │ │ └── meson.build │ │ │ │ ├── meson.build │ │ │ │ ├── opengles_objectloader │ │ │ │ │ ├── README │ │ │ │ │ ├── config.cpp │ │ │ │ │ ├── config.h │ │ │ │ │ ├── gl_example_errors.c │ │ │ │ │ ├── gl_example_errors.h │ │ │ │ │ ├── loaders.cpp │ │ │ │ │ ├── loaders.h │ │ │ │ │ ├── mesh.cpp │ │ │ │ │ ├── mesh.h │ │ │ │ │ ├── meson.build │ │ │ │ │ ├── misc │ │ │ │ │ │ ├── cube.bmp │ │ │ │ │ │ ├── cube.mtl │ │ │ │ │ │ ├── cube.obj │ │ │ │ │ │ ├── shader.frag │ │ │ │ │ │ ├── shader.vert │ │ │ │ │ │ ├── stormwind.bmp │ │ │ │ │ │ ├── stormwind.mtl │ │ │ │ │ │ └── stormwind.obj │ │ │ │ │ ├── opengles_objectloader.cpp │ │ │ │ │ ├── render.cpp │ │ │ │ │ ├── render.h │ │ │ │ │ ├── shaders.c │ │ │ │ │ └── shaders.h │ │ │ │ ├── opengles_performance │ │ │ │ │ ├── meson.build │ │ │ │ │ └── opengles_performance.c │ │ │ │ ├── opengles_skia │ │ │ │ │ ├── meson.build │ │ │ │ │ └── opengles_skia.cpp │ │ │ │ └── palette │ │ │ │ │ ├── axoverlayexample_palette.c │ │ │ │ │ └── meson.build │ │ │ └── html │ │ │ │ ├── annotated.html │ │ │ │ ├── annotated_dup.js │ │ │ │ ├── axis-logo.png │ │ │ │ ├── axoverlay_8h.html │ │ │ │ ├── axoverlay_8h.js │ │ │ │ ├── axoverlay_8h__incl.dot │ │ │ │ ├── axoverlay_8h_source.html │ │ │ │ ├── axoverlaypage.html │ │ │ │ ├── bc_s.png │ │ │ │ ├── bdwn.png │ │ │ │ ├── classes.html │ │ │ │ ├── closed.png │ │ │ │ ├── customdoxygen.css │ │ │ │ ├── dir_5f95f37867742e27eef5ba25b7140943.html │ │ │ │ ├── dir_a6e26b83e1cc01163d742a8b70e154d1.html │ │ │ │ ├── doc.png │ │ │ │ ├── doxygen.css │ │ │ │ ├── doxygen.svg │ │ │ │ ├── dynsections.js │ │ │ │ ├── files.html │ │ │ │ ├── files_dup.js │ │ │ │ ├── folderclosed.png │ │ │ │ ├── folderopen.png │ │ │ │ ├── functions.html │ │ │ │ ├── functions_vars.html │ │ │ │ ├── globals.html │ │ │ │ ├── globals_defs.html │ │ │ │ ├── globals_enum.html │ │ │ │ ├── globals_eval.html │ │ │ │ ├── globals_func.html │ │ │ │ ├── globals_type.html │ │ │ │ ├── graph_legend.dot │ │ │ │ ├── graph_legend.html │ │ │ │ ├── index.html │ │ │ │ ├── jquery.js │ │ │ │ ├── menu.js │ │ │ │ ├── menudata.js │ │ │ │ ├── nav_f.png │ │ │ │ ├── nav_g.png │ │ │ │ ├── nav_h.png │ │ │ │ ├── navtree.css │ │ │ │ ├── navtree.js │ │ │ │ ├── navtreedata.js │ │ │ │ ├── navtreeindex0.js │ │ │ │ ├── open.png │ │ │ │ ├── pages.html │ │ │ │ ├── resize.js │ │ │ │ ├── search │ │ │ │ ├── all_0.html │ │ │ │ ├── all_0.js │ │ │ │ ├── all_1.html │ │ │ │ ├── all_1.js │ │ │ │ ├── all_2.html │ │ │ │ ├── all_2.js │ │ │ │ ├── all_3.html │ │ │ │ ├── all_3.js │ │ │ │ ├── all_4.html │ │ │ │ ├── all_4.js │ │ │ │ ├── all_5.html │ │ │ │ ├── all_5.js │ │ │ │ ├── all_6.html │ │ │ │ ├── all_6.js │ │ │ │ ├── all_7.html │ │ │ │ ├── all_7.js │ │ │ │ ├── all_8.html │ │ │ │ ├── all_8.js │ │ │ │ ├── all_9.html │ │ │ │ ├── all_9.js │ │ │ │ ├── all_a.html │ │ │ │ ├── all_a.js │ │ │ │ ├── all_b.html │ │ │ │ ├── all_b.js │ │ │ │ ├── all_c.html │ │ │ │ ├── all_c.js │ │ │ │ ├── classes_0.html │ │ │ │ ├── classes_0.js │ │ │ │ ├── close.svg │ │ │ │ ├── defines_0.html │ │ │ │ ├── defines_0.js │ │ │ │ ├── enums_0.html │ │ │ │ ├── enums_0.js │ │ │ │ ├── enumvalues_0.html │ │ │ │ ├── enumvalues_0.js │ │ │ │ ├── files_0.html │ │ │ │ ├── files_0.js │ │ │ │ ├── functions_0.html │ │ │ │ ├── functions_0.js │ │ │ │ ├── mag_sel.svg │ │ │ │ ├── nomatches.html │ │ │ │ ├── pages_0.html │ │ │ │ ├── pages_0.js │ │ │ │ ├── search.css │ │ │ │ ├── search.js │ │ │ │ ├── search_l.png │ │ │ │ ├── search_m.png │ │ │ │ ├── search_r.png │ │ │ │ ├── searchdata.js │ │ │ │ ├── typedefs_0.html │ │ │ │ ├── typedefs_0.js │ │ │ │ ├── variables_0.html │ │ │ │ ├── variables_0.js │ │ │ │ ├── variables_1.html │ │ │ │ ├── variables_1.js │ │ │ │ ├── variables_2.html │ │ │ │ ├── variables_2.js │ │ │ │ ├── variables_3.html │ │ │ │ ├── variables_3.js │ │ │ │ ├── variables_4.html │ │ │ │ ├── variables_4.js │ │ │ │ ├── variables_5.html │ │ │ │ ├── variables_5.js │ │ │ │ ├── variables_6.html │ │ │ │ ├── variables_6.js │ │ │ │ ├── variables_7.html │ │ │ │ ├── variables_7.js │ │ │ │ ├── variables_8.html │ │ │ │ ├── variables_8.js │ │ │ │ ├── variables_9.html │ │ │ │ ├── variables_9.js │ │ │ │ ├── variables_a.html │ │ │ │ ├── variables_a.js │ │ │ │ ├── variables_b.html │ │ │ │ ├── variables_b.js │ │ │ │ ├── variables_c.html │ │ │ │ └── variables_c.js │ │ │ │ ├── splitbar.png │ │ │ │ ├── structaxoverlay__overlay__data.html │ │ │ │ ├── structaxoverlay__overlay__data.js │ │ │ │ ├── structaxoverlay__palette__color.html │ │ │ │ ├── structaxoverlay__palette__color.js │ │ │ │ ├── structaxoverlay__settings.html │ │ │ │ ├── structaxoverlay__settings.js │ │ │ │ ├── structaxoverlay__settings__coll__graph.dot │ │ │ │ ├── structaxoverlay__stream__data.html │ │ │ │ ├── structaxoverlay__stream__data.js │ │ │ │ ├── sync_off.png │ │ │ │ ├── sync_on.png │ │ │ │ ├── tab_a.png │ │ │ │ ├── tab_b.png │ │ │ │ ├── tab_h.png │ │ │ │ ├── tab_s.png │ │ │ │ └── tabs.css │ │ ├── axparameter │ │ │ ├── examples │ │ │ │ ├── LICENSE │ │ │ │ ├── Makefile │ │ │ │ ├── axparameterexample.c │ │ │ │ ├── package.conf │ │ │ │ └── param.conf │ │ │ └── html │ │ │ │ ├── ax__parameter_8h.html │ │ │ │ ├── ax__parameter_8h_source.html │ │ │ │ ├── ax__parameter__error_8h.html │ │ │ │ ├── ax__parameter__error_8h_source.html │ │ │ │ ├── axis-logo.png │ │ │ │ ├── axparameter_8h.html │ │ │ │ ├── axparameter_8h_source.html │ │ │ │ ├── axparameterexample_8c-example.html │ │ │ │ ├── bc_s.png │ │ │ │ ├── bdwn.png │ │ │ │ ├── closed.png │ │ │ │ ├── customdoxygen.css │ │ │ │ ├── doc.png │ │ │ │ ├── doxygen.css │ │ │ │ ├── doxygen.svg │ │ │ │ ├── dynsections.js │ │ │ │ ├── examples.html │ │ │ │ ├── files.html │ │ │ │ ├── folderclosed.png │ │ │ │ ├── folderopen.png │ │ │ │ ├── globals.html │ │ │ │ ├── globals_enum.html │ │ │ │ ├── globals_eval.html │ │ │ │ ├── globals_func.html │ │ │ │ ├── globals_type.html │ │ │ │ ├── index.html │ │ │ │ ├── jquery.js │ │ │ │ ├── menu.js │ │ │ │ ├── menudata.js │ │ │ │ ├── nav_f.png │ │ │ │ ├── nav_g.png │ │ │ │ ├── nav_h.png │ │ │ │ ├── open.png │ │ │ │ ├── splitbar.png │ │ │ │ ├── sync_off.png │ │ │ │ ├── sync_on.png │ │ │ │ ├── tab_a.png │ │ │ │ ├── tab_b.png │ │ │ │ ├── tab_h.png │ │ │ │ ├── tab_s.png │ │ │ │ └── tabs.css │ │ ├── axserialport │ │ │ ├── example_pelco-D │ │ │ │ ├── LICENSE │ │ │ │ ├── Makefile │ │ │ │ ├── README │ │ │ │ ├── axserialport_pelco_spectra_mini.c │ │ │ │ └── package.conf │ │ │ ├── examples │ │ │ │ ├── LICENSE │ │ │ │ ├── Makefile │ │ │ │ ├── README │ │ │ │ ├── axserialport_example.c │ │ │ │ └── package.conf │ │ │ ├── examples_threads │ │ │ │ ├── LICENSE │ │ │ │ ├── Makefile │ │ │ │ ├── README │ │ │ │ ├── package.conf │ │ │ │ └── serial_example_threads.c │ │ │ └── html │ │ │ │ ├── axis-logo.png │ │ │ │ ├── axserialport_8h.html │ │ │ │ ├── axserialport_8h.js │ │ │ │ ├── axserialport_8h_source.html │ │ │ │ ├── axserialport_example_8c-example.html │ │ │ │ ├── bc_s.png │ │ │ │ ├── bdwn.png │ │ │ │ ├── closed.png │ │ │ │ ├── customdoxygen.css │ │ │ │ ├── doc.png │ │ │ │ ├── doxygen.css │ │ │ │ ├── doxygen.svg │ │ │ │ ├── dynsections.js │ │ │ │ ├── examples.html │ │ │ │ ├── examples.js │ │ │ │ ├── files.html │ │ │ │ ├── files_dup.js │ │ │ │ ├── folderclosed.png │ │ │ │ ├── folderopen.png │ │ │ │ ├── globals.html │ │ │ │ ├── globals_enum.html │ │ │ │ ├── globals_eval.html │ │ │ │ ├── globals_func.html │ │ │ │ ├── globals_type.html │ │ │ │ ├── index.html │ │ │ │ ├── jquery.js │ │ │ │ ├── menu.js │ │ │ │ ├── menudata.js │ │ │ │ ├── nav_f.png │ │ │ │ ├── nav_g.png │ │ │ │ ├── nav_h.png │ │ │ │ ├── navtree.css │ │ │ │ ├── navtree.js │ │ │ │ ├── navtreedata.js │ │ │ │ ├── navtreeindex0.js │ │ │ │ ├── open.png │ │ │ │ ├── resize.js │ │ │ │ ├── splitbar.png │ │ │ │ ├── sync_off.png │ │ │ │ ├── sync_on.png │ │ │ │ ├── tab_a.png │ │ │ │ ├── tab_b.png │ │ │ │ ├── tab_h.png │ │ │ │ ├── tab_s.png │ │ │ │ └── tabs.css │ │ ├── axstorage │ │ │ ├── examples │ │ │ │ ├── LICENSE │ │ │ │ ├── Makefile │ │ │ │ ├── README │ │ │ │ ├── ax_storage_example.c │ │ │ │ ├── package.conf │ │ │ │ └── param.conf │ │ │ └── html │ │ │ │ ├── ax__storage_8h.html │ │ │ │ ├── ax__storage_8h.js │ │ │ │ ├── ax__storage_8h_source.html │ │ │ │ ├── ax__storage__error_8h.html │ │ │ │ ├── ax__storage__error_8h.js │ │ │ │ ├── ax__storage__error_8h_source.html │ │ │ │ ├── ax_storage_example_8c-example.html │ │ │ │ ├── axis-logo.png │ │ │ │ ├── axstorage_8h.html │ │ │ │ ├── axstorage_8h_source.html │ │ │ │ ├── bc_s.png │ │ │ │ ├── bdwn.png │ │ │ │ ├── closed.png │ │ │ │ ├── customdoxygen.css │ │ │ │ ├── doc.png │ │ │ │ ├── doxygen.css │ │ │ │ ├── doxygen.svg │ │ │ │ ├── dynsections.js │ │ │ │ ├── examples.html │ │ │ │ ├── examples.js │ │ │ │ ├── files.html │ │ │ │ ├── files_dup.js │ │ │ │ ├── folderclosed.png │ │ │ │ ├── folderopen.png │ │ │ │ ├── globals.html │ │ │ │ ├── globals_enum.html │ │ │ │ ├── globals_eval.html │ │ │ │ ├── globals_func.html │ │ │ │ ├── globals_type.html │ │ │ │ ├── index.html │ │ │ │ ├── jquery.js │ │ │ │ ├── menu.js │ │ │ │ ├── menudata.js │ │ │ │ ├── nav_f.png │ │ │ │ ├── nav_g.png │ │ │ │ ├── nav_h.png │ │ │ │ ├── navtree.css │ │ │ │ ├── navtree.js │ │ │ │ ├── navtreedata.js │ │ │ │ ├── navtreeindex0.js │ │ │ │ ├── open.png │ │ │ │ ├── resize.js │ │ │ │ ├── splitbar.png │ │ │ │ ├── sync_off.png │ │ │ │ ├── sync_on.png │ │ │ │ ├── tab_a.png │ │ │ │ ├── tab_b.png │ │ │ │ ├── tab_h.png │ │ │ │ ├── tab_s.png │ │ │ │ └── tabs.css │ │ ├── bbox │ │ │ └── html │ │ │ │ ├── bbox_8h.html │ │ │ │ ├── bbox_8h.js │ │ │ │ ├── bbox_8h__incl.dot │ │ │ │ ├── bbox_8h_source.html │ │ │ │ ├── bc_s.png │ │ │ │ ├── bdwn.png │ │ │ │ ├── closed.png │ │ │ │ ├── customdoxygen.css │ │ │ │ ├── doc.png │ │ │ │ ├── doxygen.css │ │ │ │ ├── doxygen.svg │ │ │ │ ├── dynsections.js │ │ │ │ ├── files.html │ │ │ │ ├── files_dup.js │ │ │ │ ├── folderclosed.png │ │ │ │ ├── folderopen.png │ │ │ │ ├── globals.html │ │ │ │ ├── globals_func.html │ │ │ │ ├── graph_legend.dot │ │ │ │ ├── graph_legend.html │ │ │ │ ├── index.html │ │ │ │ ├── jquery.js │ │ │ │ ├── menu.js │ │ │ │ ├── menudata.js │ │ │ │ ├── nav_f.png │ │ │ │ ├── nav_g.png │ │ │ │ ├── nav_h.png │ │ │ │ ├── navtree.css │ │ │ │ ├── navtree.js │ │ │ │ ├── navtreedata.js │ │ │ │ ├── navtreeindex0.js │ │ │ │ ├── open.png │ │ │ │ ├── resize.js │ │ │ │ ├── search │ │ │ │ ├── all_0.html │ │ │ │ ├── all_0.js │ │ │ │ ├── close.svg │ │ │ │ ├── files_0.html │ │ │ │ ├── files_0.js │ │ │ │ ├── functions_0.html │ │ │ │ ├── functions_0.js │ │ │ │ ├── mag_sel.svg │ │ │ │ ├── nomatches.html │ │ │ │ ├── search.css │ │ │ │ ├── search.js │ │ │ │ ├── search_l.png │ │ │ │ ├── search_m.png │ │ │ │ ├── search_r.png │ │ │ │ └── searchdata.js │ │ │ │ ├── splitbar.png │ │ │ │ ├── sync_off.png │ │ │ │ ├── sync_on.png │ │ │ │ ├── tab_a.png │ │ │ │ ├── tab_b.png │ │ │ │ ├── tab_h.png │ │ │ │ ├── tab_s.png │ │ │ │ └── tabs.css │ │ ├── larod │ │ │ └── html │ │ │ │ ├── annotated.html │ │ │ │ ├── axis-logo.png │ │ │ │ ├── bc_s.png │ │ │ │ ├── bdwn.png │ │ │ │ ├── classes.html │ │ │ │ ├── closed.png │ │ │ │ ├── customdoxygen.css │ │ │ │ ├── deprecated.html │ │ │ │ ├── dir_97aefd0d527b934f1d99a682da8fe6a9.html │ │ │ │ ├── doc.png │ │ │ │ ├── doxygen.css │ │ │ │ ├── doxygen.png │ │ │ │ ├── dynsections.js │ │ │ │ ├── files.html │ │ │ │ ├── folderclosed.png │ │ │ │ ├── folderopen.png │ │ │ │ ├── functions.html │ │ │ │ ├── functions_vars.html │ │ │ │ ├── globals.html │ │ │ │ ├── globals_defs.html │ │ │ │ ├── globals_enum.html │ │ │ │ ├── globals_eval.html │ │ │ │ ├── globals_func.html │ │ │ │ ├── globals_type.html │ │ │ │ ├── index.html │ │ │ │ ├── jquery.js │ │ │ │ ├── larod_8h.html │ │ │ │ ├── larod_8h_source.html │ │ │ │ ├── md__opt_builder-doc_larod_doc_api-changes.html │ │ │ │ ├── md__opt_builder-doc_larod_doc_architecture.html │ │ │ │ ├── md__opt_builder-doc_larod_doc_dma-buf.html │ │ │ │ ├── md__opt_builder-doc_larod_doc_how-to-setup-larod-to-use-powerd.html │ │ │ │ ├── md__opt_builder-doc_larod_doc_introduction-for-app-developers.html │ │ │ │ ├── md__opt_builder-doc_larod_doc_larod-client.html │ │ │ │ ├── md__opt_builder-doc_larod_doc_model-formats.html │ │ │ │ ├── md__opt_builder-doc_larod_doc_nn-inference.html │ │ │ │ ├── md__opt_builder-doc_larod_doc_preprocessing.html │ │ │ │ ├── md__opt_builder-doc_larod_tools_model-converter_README.html │ │ │ │ ├── menu.js │ │ │ │ ├── menudata.js │ │ │ │ ├── nav_f.png │ │ │ │ ├── nav_g.png │ │ │ │ ├── nav_h.png │ │ │ │ ├── open.png │ │ │ │ ├── pages.html │ │ │ │ ├── search │ │ │ │ ├── all_0.html │ │ │ │ ├── all_0.js │ │ │ │ ├── all_1.html │ │ │ │ ├── all_1.js │ │ │ │ ├── all_2.html │ │ │ │ ├── all_2.js │ │ │ │ ├── all_3.html │ │ │ │ ├── all_3.js │ │ │ │ ├── all_4.html │ │ │ │ ├── all_4.js │ │ │ │ ├── all_5.html │ │ │ │ ├── all_5.js │ │ │ │ ├── all_6.html │ │ │ │ ├── all_6.js │ │ │ │ ├── all_7.html │ │ │ │ ├── all_7.js │ │ │ │ ├── all_8.html │ │ │ │ ├── all_8.js │ │ │ │ ├── all_9.html │ │ │ │ ├── all_9.js │ │ │ │ ├── all_a.html │ │ │ │ ├── all_a.js │ │ │ │ ├── all_b.html │ │ │ │ ├── all_b.js │ │ │ │ ├── classes_0.html │ │ │ │ ├── classes_0.js │ │ │ │ ├── close.png │ │ │ │ ├── defines_0.html │ │ │ │ ├── defines_0.js │ │ │ │ ├── enums_0.html │ │ │ │ ├── enums_0.js │ │ │ │ ├── enumvalues_0.html │ │ │ │ ├── enumvalues_0.js │ │ │ │ ├── files_0.html │ │ │ │ ├── files_0.js │ │ │ │ ├── functions_0.html │ │ │ │ ├── functions_0.js │ │ │ │ ├── mag_sel.png │ │ │ │ ├── nomatches.html │ │ │ │ ├── pages_0.html │ │ │ │ ├── pages_0.js │ │ │ │ ├── pages_1.html │ │ │ │ ├── pages_1.js │ │ │ │ ├── pages_2.html │ │ │ │ ├── pages_2.js │ │ │ │ ├── pages_3.html │ │ │ │ ├── pages_3.js │ │ │ │ ├── pages_4.html │ │ │ │ ├── pages_4.js │ │ │ │ ├── pages_5.html │ │ │ │ ├── pages_5.js │ │ │ │ ├── pages_6.html │ │ │ │ ├── pages_6.js │ │ │ │ ├── pages_7.html │ │ │ │ ├── pages_7.js │ │ │ │ ├── pages_8.html │ │ │ │ ├── pages_8.js │ │ │ │ ├── pages_9.html │ │ │ │ ├── pages_9.js │ │ │ │ ├── pages_a.html │ │ │ │ ├── pages_a.js │ │ │ │ ├── search.css │ │ │ │ ├── search.js │ │ │ │ ├── search_l.png │ │ │ │ ├── search_m.png │ │ │ │ ├── search_r.png │ │ │ │ ├── searchdata.js │ │ │ │ ├── typedefs_0.html │ │ │ │ ├── typedefs_0.js │ │ │ │ ├── variables_0.html │ │ │ │ ├── variables_0.js │ │ │ │ ├── variables_1.html │ │ │ │ ├── variables_1.js │ │ │ │ ├── variables_2.html │ │ │ │ └── variables_2.js │ │ │ │ ├── splitbar.png │ │ │ │ ├── structlarodError.html │ │ │ │ ├── structlarodTensorDims.html │ │ │ │ ├── structlarodTensorPitches.html │ │ │ │ ├── sync_off.png │ │ │ │ ├── sync_on.png │ │ │ │ ├── tab_a.png │ │ │ │ ├── tab_b.png │ │ │ │ ├── tab_h.png │ │ │ │ ├── tab_s.png │ │ │ │ └── tabs.css │ │ ├── licensekey │ │ │ └── html │ │ │ │ ├── axis-logo.png │ │ │ │ ├── bc_s.png │ │ │ │ ├── bdwn.png │ │ │ │ ├── closed.png │ │ │ │ ├── customdoxygen.css │ │ │ │ ├── doc.png │ │ │ │ ├── doxygen.css │ │ │ │ ├── doxygen.svg │ │ │ │ ├── dynsections.js │ │ │ │ ├── files.html │ │ │ │ ├── files_dup.js │ │ │ │ ├── folderclosed.png │ │ │ │ ├── folderopen.png │ │ │ │ ├── globals.html │ │ │ │ ├── globals_func.html │ │ │ │ ├── index.html │ │ │ │ ├── jquery.js │ │ │ │ ├── licensekey_8h.html │ │ │ │ ├── licensekey_8h.js │ │ │ │ ├── licensekey_8h_source.html │ │ │ │ ├── licensekey__dyn_8h_source.html │ │ │ │ ├── licensekey__states_8h.html │ │ │ │ ├── licensekey__states_8h.js │ │ │ │ ├── licensekey__states_8h_source.html │ │ │ │ ├── menu.js │ │ │ │ ├── menudata.js │ │ │ │ ├── nav_f.png │ │ │ │ ├── nav_g.png │ │ │ │ ├── nav_h.png │ │ │ │ ├── navtree.css │ │ │ │ ├── navtree.js │ │ │ │ ├── navtreedata.js │ │ │ │ ├── navtreeindex0.js │ │ │ │ ├── open.png │ │ │ │ ├── resize.js │ │ │ │ ├── splitbar.png │ │ │ │ ├── sync_off.png │ │ │ │ ├── sync_on.png │ │ │ │ ├── tab_a.png │ │ │ │ ├── tab_b.png │ │ │ │ ├── tab_h.png │ │ │ │ ├── tab_s.png │ │ │ │ └── tabs.css │ │ ├── message-broker │ │ │ └── html │ │ │ │ ├── annotated.html │ │ │ │ ├── axis-logo.png │ │ │ │ ├── bc_s.png │ │ │ │ ├── bdwn.png │ │ │ │ ├── channel_8h_source.html │ │ │ │ ├── channel__config_8h_source.html │ │ │ │ ├── channel__info_8h_source.html │ │ │ │ ├── classes.html │ │ │ │ ├── closed.png │ │ │ │ ├── connection_8h_source.html │ │ │ │ ├── consumer_2main_8c-example.html │ │ │ │ ├── customdoxygen.css │ │ │ │ ├── dir_157f1fd8a7cadef2cbcf31e1f5adfeae.html │ │ │ │ ├── dir_49e56c817e5e54854c35e136979f97ca.html │ │ │ │ ├── doc.png │ │ │ │ ├── doxygen.css │ │ │ │ ├── doxygen.svg │ │ │ │ ├── dynsections.js │ │ │ │ ├── error_8h_source.html │ │ │ │ ├── examples.html │ │ │ │ ├── files.html │ │ │ │ ├── folderclosed.png │ │ │ │ ├── folderopen.png │ │ │ │ ├── functions.html │ │ │ │ ├── functions_vars.html │ │ │ │ ├── graph_legend.dot │ │ │ │ ├── graph_legend.html │ │ │ │ ├── index.html │ │ │ │ ├── jquery.js │ │ │ │ ├── menu.js │ │ │ │ ├── menudata.js │ │ │ │ ├── message_8h_source.html │ │ │ │ ├── nav_f.png │ │ │ │ ├── nav_g.png │ │ │ │ ├── nav_h.png │ │ │ │ ├── open.png │ │ │ │ ├── release_notes.html │ │ │ │ ├── search │ │ │ │ ├── all_0.html │ │ │ │ ├── all_0.js │ │ │ │ ├── all_1.html │ │ │ │ ├── all_1.js │ │ │ │ ├── all_2.html │ │ │ │ ├── all_2.js │ │ │ │ ├── all_3.html │ │ │ │ ├── all_3.js │ │ │ │ ├── all_4.html │ │ │ │ ├── all_4.js │ │ │ │ ├── all_5.html │ │ │ │ ├── all_5.js │ │ │ │ ├── classes_0.html │ │ │ │ ├── classes_0.js │ │ │ │ ├── close.svg │ │ │ │ ├── mag_sel.svg │ │ │ │ ├── nomatches.html │ │ │ │ ├── pages_0.html │ │ │ │ ├── pages_0.js │ │ │ │ ├── pages_1.html │ │ │ │ ├── pages_1.js │ │ │ │ ├── pages_2.html │ │ │ │ ├── pages_2.js │ │ │ │ ├── pages_3.html │ │ │ │ ├── pages_3.js │ │ │ │ ├── search.css │ │ │ │ ├── search.js │ │ │ │ ├── search_l.png │ │ │ │ ├── search_m.png │ │ │ │ ├── search_r.png │ │ │ │ ├── searchdata.js │ │ │ │ ├── variables_0.html │ │ │ │ ├── variables_0.js │ │ │ │ ├── variables_1.html │ │ │ │ ├── variables_1.js │ │ │ │ ├── variables_2.html │ │ │ │ ├── variables_2.js │ │ │ │ ├── variables_3.html │ │ │ │ └── variables_3.js │ │ │ │ ├── signatures_8h_source.html │ │ │ │ ├── splitbar.png │ │ │ │ ├── standard_topics.html │ │ │ │ ├── structmdb__error__t.html │ │ │ │ ├── structmdb__message__payload.html │ │ │ │ ├── subscriber_8h_source.html │ │ │ │ ├── subscriber__config_8h_source.html │ │ │ │ ├── sync_off.png │ │ │ │ ├── sync_on.png │ │ │ │ ├── tab_a.png │ │ │ │ ├── tab_b.png │ │ │ │ ├── tab_h.png │ │ │ │ ├── tab_s.png │ │ │ │ ├── tabs.css │ │ │ │ └── terminology.html │ │ └── vdostream │ │ │ └── html │ │ │ ├── annotated.html │ │ │ ├── annotated_dup.js │ │ │ ├── bc_s.png │ │ │ ├── bdwn.png │ │ │ ├── classVdoChannel.html │ │ │ ├── classVdoFrame.html │ │ │ ├── classVdoMap.html │ │ │ ├── classVdoStream.html │ │ │ ├── classes.html │ │ │ ├── closed.png │ │ │ ├── customdoxygen.css │ │ │ ├── deprecated.html │ │ │ ├── dir_000000_000001.html │ │ │ ├── dir_97aefd0d527b934f1d99a682da8fe6a9.html │ │ │ ├── dir_97aefd0d527b934f1d99a682da8fe6a9_dep.dot │ │ │ ├── dir_bdd9a5d540de89e9fe90efdfc6973a4f.html │ │ │ ├── doc.png │ │ │ ├── doxygen.css │ │ │ ├── doxygen.svg │ │ │ ├── dynsections.js │ │ │ ├── files.html │ │ │ ├── files_dup.js │ │ │ ├── folderclosed.png │ │ │ ├── folderopen.png │ │ │ ├── globals.html │ │ │ ├── globals_defs.html │ │ │ ├── globals_dup.js │ │ │ ├── globals_enum.html │ │ │ ├── globals_eval.html │ │ │ ├── globals_func.html │ │ │ ├── graph_legend.dot │ │ │ ├── graph_legend.html │ │ │ ├── index.html │ │ │ ├── jquery.js │ │ │ ├── menu.js │ │ │ ├── menudata.js │ │ │ ├── nav_f.png │ │ │ ├── nav_g.png │ │ │ ├── nav_h.png │ │ │ ├── navtree.css │ │ │ ├── navtree.js │ │ │ ├── navtreedata.js │ │ │ ├── navtreeindex0.js │ │ │ ├── navtreeindex1.js │ │ │ ├── open.png │ │ │ ├── pages.html │ │ │ ├── resize.js │ │ │ ├── search │ │ │ ├── all_0.html │ │ │ ├── all_0.js │ │ │ ├── all_1.html │ │ │ ├── all_1.js │ │ │ ├── classes_0.html │ │ │ ├── classes_0.js │ │ │ ├── close.svg │ │ │ ├── defines_0.html │ │ │ ├── defines_0.js │ │ │ ├── enums_0.html │ │ │ ├── enums_0.js │ │ │ ├── enumvalues_0.html │ │ │ ├── enumvalues_0.js │ │ │ ├── files_0.html │ │ │ ├── files_0.js │ │ │ ├── functions_0.html │ │ │ ├── functions_0.js │ │ │ ├── mag_sel.svg │ │ │ ├── nomatches.html │ │ │ ├── pages_0.html │ │ │ ├── pages_0.js │ │ │ ├── search.css │ │ │ ├── search.js │ │ │ ├── search_l.png │ │ │ ├── search_m.png │ │ │ ├── search_r.png │ │ │ └── searchdata.js │ │ │ ├── splitbar.png │ │ │ ├── structVdoChunk.html │ │ │ ├── structVdoMemChunk.html │ │ │ ├── structVdoRect.html │ │ │ ├── structVdoResolution.html │ │ │ ├── structVdoResolutionSet.html │ │ │ ├── structVdoResolutionSet__coll__graph.dot │ │ │ ├── sync_off.png │ │ │ ├── sync_on.png │ │ │ ├── tab_a.png │ │ │ ├── tab_b.png │ │ │ ├── tab_h.png │ │ │ ├── tab_s.png │ │ │ ├── tabs.css │ │ │ ├── unionVdoPair32i.html │ │ │ ├── unionVdoPair32u.html │ │ │ ├── unionVdoPair32u__coll__graph.dot │ │ │ ├── vdo-buffer_8h.html │ │ │ ├── vdo-buffer_8h.js │ │ │ ├── vdo-buffer_8h__dep__incl.dot │ │ │ ├── vdo-buffer_8h__incl.dot │ │ │ ├── vdo-buffer_8h_source.html │ │ │ ├── vdo-channel_8h.html │ │ │ ├── vdo-channel_8h.js │ │ │ ├── vdo-channel_8h__incl.dot │ │ │ ├── vdo-channel_8h_source.html │ │ │ ├── vdo-error_8h.html │ │ │ ├── vdo-error_8h.js │ │ │ ├── vdo-error_8h__incl.dot │ │ │ ├── vdo-error_8h_source.html │ │ │ ├── vdo-frame_8h.html │ │ │ ├── vdo-frame_8h.js │ │ │ ├── vdo-frame_8h__dep__incl.dot │ │ │ ├── vdo-frame_8h__incl.dot │ │ │ ├── vdo-frame_8h_source.html │ │ │ ├── vdo-map_8h.html │ │ │ ├── vdo-map_8h.js │ │ │ ├── vdo-map_8h__dep__incl.dot │ │ │ ├── vdo-map_8h__incl.dot │ │ │ ├── vdo-map_8h_source.html │ │ │ ├── vdo-stream_8h.html │ │ │ ├── vdo-stream_8h.js │ │ │ ├── vdo-stream_8h__incl.dot │ │ │ ├── vdo-stream_8h_source.html │ │ │ ├── vdo-types_8h.html │ │ │ ├── vdo-types_8h.js │ │ │ ├── vdo-types_8h__dep__incl.dot │ │ │ ├── vdo-types_8h__incl.dot │ │ │ └── vdo-types_8h_source.html │ │ ├── main │ │ └── html │ │ │ ├── acap3_api.html │ │ │ └── index.html │ │ └── sdk │ │ └── html │ │ └── index.html ├── axis-devices-and-compatibility │ └── index.md ├── cloud-integrations │ └── index.md ├── computer-vision-on-device │ └── index.md ├── develop-container-applications │ ├── build-install-run.md │ ├── camera-calibration.md │ ├── include-third-party-libraries.md │ ├── index.md │ ├── supported-languages.md │ └── web-server-via-reverse-proxy.md ├── develop │ ├── VAPIX-access-for-ACAP-applications.md │ ├── application-project-structure.md │ ├── build-install-run.md │ ├── camera-calibration.md │ ├── include-third-party-libraries.md │ ├── index.md │ ├── manifest-schemas │ │ ├── index.md │ │ ├── schema-field-descriptions-v1.0.md │ │ ├── schema-field-descriptions-v1.1.md │ │ ├── schema-field-descriptions-v1.2.md │ │ ├── schema-field-descriptions-v1.3.1.md │ │ ├── schema-field-descriptions-v1.3.md │ │ ├── schema-field-descriptions-v1.4.0.md │ │ ├── schema-field-descriptions-v1.5.0.md │ │ ├── schema-field-descriptions-v1.6.0.md │ │ ├── schema-field-descriptions-v1.7.0.md │ │ ├── schema-field-descriptions-v1.7.1.md │ │ ├── schema-field-descriptions-v1.7.2.md │ │ └── schema-field-descriptions-v1.7.3.md │ ├── proxy.md │ ├── setting-up-visual-studio-code.md │ ├── supported-languages.md │ ├── user-selection.md │ └── web-server-via-reverse-proxy.md ├── faq │ ├── deployment.md │ ├── index.md │ ├── machine-learning.md │ └── security.md ├── get-help-and-give-feedback │ └── index.md ├── get-started │ ├── hello-world-example.md │ ├── index.md │ └── set-up-developer-environment │ │ ├── index.md │ │ ├── pre-requisites.md │ │ ├── set-up-device-advanced.md │ │ └── set-up-device.md ├── introduction │ ├── acap-examples.md │ ├── acap-sdk-overview.md │ ├── acap-version-comparison.md │ ├── index.md │ ├── version-history.md │ └── what-is-acap.md ├── licenses │ └── index.md ├── release-notes │ ├── 12.0.md │ ├── 12.1.md │ ├── 12.2.md │ ├── 4.0.md │ ├── 4.0_beta1.md │ ├── 4.1.md │ ├── 4.10.md │ ├── 4.11.md │ ├── 4.12.md │ ├── 4.13.md │ ├── 4.14.md │ ├── 4.15.md │ ├── 4.2.md │ ├── 4.3.md │ ├── 4.4.md │ ├── 4.5.md │ ├── 4.6.md │ ├── 4.7.md │ ├── 4.8.md │ ├── 4.9.md │ └── index.md └── service │ ├── acap-application-signing.md │ ├── acap-service-portal.md │ └── index.md ├── favicon.ico ├── index.md └── renovate.json /.gitignore: -------------------------------------------------------------------------------- 1 | /.jekyll-cache* 2 | /_site* 3 | /.sass-cache* 4 | /Gemfile.lock 5 | /*.log 6 | .DS_Store 7 | vendor* 8 | api-doc/ 9 | super-linter.log 10 | -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- 1 | { 2 | "recommendations": [ 3 | "DavidAnson.vscode-markdownlint", 4 | "yzhang.markdown-all-in-one", 5 | "streetsidesoftware.code-spell-checker" 6 | ] 7 | } 8 | -------------------------------------------------------------------------------- /3.4/api/capture/html/axis-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxisCommunications/acap-documentation/4aa04f185618e66f493453bcd62da1788c3059e4/3.4/api/capture/html/axis-logo.png -------------------------------------------------------------------------------- /3.4/api/capture/html/bc_s.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxisCommunications/acap-documentation/4aa04f185618e66f493453bcd62da1788c3059e4/3.4/api/capture/html/bc_s.png -------------------------------------------------------------------------------- /3.4/api/capture/html/bdwn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxisCommunications/acap-documentation/4aa04f185618e66f493453bcd62da1788c3059e4/3.4/api/capture/html/bdwn.png -------------------------------------------------------------------------------- /3.4/api/capture/html/closed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxisCommunications/acap-documentation/4aa04f185618e66f493453bcd62da1788c3059e4/3.4/api/capture/html/closed.png -------------------------------------------------------------------------------- /3.4/api/capture/html/doc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxisCommunications/acap-documentation/4aa04f185618e66f493453bcd62da1788c3059e4/3.4/api/capture/html/doc.png -------------------------------------------------------------------------------- /3.4/api/capture/html/doxygen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxisCommunications/acap-documentation/4aa04f185618e66f493453bcd62da1788c3059e4/3.4/api/capture/html/doxygen.png -------------------------------------------------------------------------------- /3.4/api/capture/html/files.js: -------------------------------------------------------------------------------- 1 | var files = 2 | [ 3 | [ "capture.h", "capture_8h.html", "capture_8h" ], 4 | [ "capture_native.h", "capture__native_8h.html", "capture__native_8h" ] 5 | ]; -------------------------------------------------------------------------------- /3.4/api/capture/html/folderclosed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxisCommunications/acap-documentation/4aa04f185618e66f493453bcd62da1788c3059e4/3.4/api/capture/html/folderclosed.png -------------------------------------------------------------------------------- /3.4/api/capture/html/folderopen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxisCommunications/acap-documentation/4aa04f185618e66f493453bcd62da1788c3059e4/3.4/api/capture/html/folderopen.png -------------------------------------------------------------------------------- /3.4/api/capture/html/nav_f.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxisCommunications/acap-documentation/4aa04f185618e66f493453bcd62da1788c3059e4/3.4/api/capture/html/nav_f.png -------------------------------------------------------------------------------- /3.4/api/capture/html/nav_g.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxisCommunications/acap-documentation/4aa04f185618e66f493453bcd62da1788c3059e4/3.4/api/capture/html/nav_g.png -------------------------------------------------------------------------------- /3.4/api/capture/html/nav_h.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxisCommunications/acap-documentation/4aa04f185618e66f493453bcd62da1788c3059e4/3.4/api/capture/html/nav_h.png -------------------------------------------------------------------------------- /3.4/api/capture/html/open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxisCommunications/acap-documentation/4aa04f185618e66f493453bcd62da1788c3059e4/3.4/api/capture/html/open.png -------------------------------------------------------------------------------- /3.4/api/capture/html/splitbar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxisCommunications/acap-documentation/4aa04f185618e66f493453bcd62da1788c3059e4/3.4/api/capture/html/splitbar.png -------------------------------------------------------------------------------- /3.4/api/capture/html/sync_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxisCommunications/acap-documentation/4aa04f185618e66f493453bcd62da1788c3059e4/3.4/api/capture/html/sync_off.png -------------------------------------------------------------------------------- /3.4/api/capture/html/sync_on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxisCommunications/acap-documentation/4aa04f185618e66f493453bcd62da1788c3059e4/3.4/api/capture/html/sync_on.png -------------------------------------------------------------------------------- /3.4/api/capture/html/tab_a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxisCommunications/acap-documentation/4aa04f185618e66f493453bcd62da1788c3059e4/3.4/api/capture/html/tab_a.png -------------------------------------------------------------------------------- /3.4/api/capture/html/tab_b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxisCommunications/acap-documentation/4aa04f185618e66f493453bcd62da1788c3059e4/3.4/api/capture/html/tab_b.png -------------------------------------------------------------------------------- /3.4/api/capture/html/tab_h.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxisCommunications/acap-documentation/4aa04f185618e66f493453bcd62da1788c3059e4/3.4/api/capture/html/tab_h.png -------------------------------------------------------------------------------- /3.4/api/capture/html/tab_s.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxisCommunications/acap-documentation/4aa04f185618e66f493453bcd62da1788c3059e4/3.4/api/capture/html/tab_s.png -------------------------------------------------------------------------------- /3.5/api/axaudio/examples/LICENSE: -------------------------------------------------------------------------------- 1 | Third Party Software Licenses 2 | -------------------------------------------------------------------------------- /3.5/api/axaudio/examples/README: -------------------------------------------------------------------------------- 1 | # Note that this example is only valid for devices with capability 2 | # for Audio output (enabled) -------------------------------------------------------------------------------- /3.5/api/axaudio/html/axis-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxisCommunications/acap-documentation/4aa04f185618e66f493453bcd62da1788c3059e4/3.5/api/axaudio/html/axis-logo.png -------------------------------------------------------------------------------- /3.5/api/axaudio/html/bc_s.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxisCommunications/acap-documentation/4aa04f185618e66f493453bcd62da1788c3059e4/3.5/api/axaudio/html/bc_s.png -------------------------------------------------------------------------------- /3.5/api/axaudio/html/bdwn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxisCommunications/acap-documentation/4aa04f185618e66f493453bcd62da1788c3059e4/3.5/api/axaudio/html/bdwn.png -------------------------------------------------------------------------------- /3.5/api/axaudio/html/closed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxisCommunications/acap-documentation/4aa04f185618e66f493453bcd62da1788c3059e4/3.5/api/axaudio/html/closed.png -------------------------------------------------------------------------------- /3.5/api/axaudio/html/doc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxisCommunications/acap-documentation/4aa04f185618e66f493453bcd62da1788c3059e4/3.5/api/axaudio/html/doc.png -------------------------------------------------------------------------------- /3.5/api/axaudio/html/doxygen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxisCommunications/acap-documentation/4aa04f185618e66f493453bcd62da1788c3059e4/3.5/api/axaudio/html/doxygen.png -------------------------------------------------------------------------------- /3.5/api/axaudio/html/examples.js: -------------------------------------------------------------------------------- 1 | var examples = 2 | [ 3 | [ "axaudioexample.c", "axaudioexample_8c-example.html", null ] 4 | ]; -------------------------------------------------------------------------------- /3.5/api/axaudio/html/folderclosed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxisCommunications/acap-documentation/4aa04f185618e66f493453bcd62da1788c3059e4/3.5/api/axaudio/html/folderclosed.png -------------------------------------------------------------------------------- /3.5/api/axaudio/html/folderopen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxisCommunications/acap-documentation/4aa04f185618e66f493453bcd62da1788c3059e4/3.5/api/axaudio/html/folderopen.png -------------------------------------------------------------------------------- /3.5/api/axaudio/html/nav_f.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxisCommunications/acap-documentation/4aa04f185618e66f493453bcd62da1788c3059e4/3.5/api/axaudio/html/nav_f.png -------------------------------------------------------------------------------- /3.5/api/axaudio/html/nav_g.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxisCommunications/acap-documentation/4aa04f185618e66f493453bcd62da1788c3059e4/3.5/api/axaudio/html/nav_g.png -------------------------------------------------------------------------------- /3.5/api/axaudio/html/nav_h.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxisCommunications/acap-documentation/4aa04f185618e66f493453bcd62da1788c3059e4/3.5/api/axaudio/html/nav_h.png -------------------------------------------------------------------------------- /3.5/api/axaudio/html/open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxisCommunications/acap-documentation/4aa04f185618e66f493453bcd62da1788c3059e4/3.5/api/axaudio/html/open.png -------------------------------------------------------------------------------- /3.5/api/axaudio/html/splitbar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxisCommunications/acap-documentation/4aa04f185618e66f493453bcd62da1788c3059e4/3.5/api/axaudio/html/splitbar.png -------------------------------------------------------------------------------- /3.5/api/axaudio/html/sync_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxisCommunications/acap-documentation/4aa04f185618e66f493453bcd62da1788c3059e4/3.5/api/axaudio/html/sync_off.png -------------------------------------------------------------------------------- /3.5/api/axaudio/html/sync_on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxisCommunications/acap-documentation/4aa04f185618e66f493453bcd62da1788c3059e4/3.5/api/axaudio/html/sync_on.png -------------------------------------------------------------------------------- /3.5/api/axaudio/html/tab_a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxisCommunications/acap-documentation/4aa04f185618e66f493453bcd62da1788c3059e4/3.5/api/axaudio/html/tab_a.png -------------------------------------------------------------------------------- /3.5/api/axaudio/html/tab_b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxisCommunications/acap-documentation/4aa04f185618e66f493453bcd62da1788c3059e4/3.5/api/axaudio/html/tab_b.png -------------------------------------------------------------------------------- /3.5/api/axaudio/html/tab_h.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxisCommunications/acap-documentation/4aa04f185618e66f493453bcd62da1788c3059e4/3.5/api/axaudio/html/tab_h.png -------------------------------------------------------------------------------- /3.5/api/axaudio/html/tab_s.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxisCommunications/acap-documentation/4aa04f185618e66f493453bcd62da1788c3059e4/3.5/api/axaudio/html/tab_s.png -------------------------------------------------------------------------------- /3.5/api/axevent/examples/element_item_example/LICENSE: -------------------------------------------------------------------------------- 1 | Third Party Software Licenses 2 | -------------------------------------------------------------------------------- /3.5/api/axevent/examples/key_value_set_example1/LICENSE: -------------------------------------------------------------------------------- 1 | Third Party Software Licenses 2 | -------------------------------------------------------------------------------- /3.5/api/axevent/examples/key_value_set_example2/LICENSE: -------------------------------------------------------------------------------- 1 | Third Party Software Licenses 2 | -------------------------------------------------------------------------------- /3.5/api/axevent/examples/property_state_declaration_example/LICENSE: -------------------------------------------------------------------------------- 1 | Third Party Software Licenses 2 | -------------------------------------------------------------------------------- /3.5/api/axevent/examples/property_state_declaration_from_template_example/LICENSE: -------------------------------------------------------------------------------- 1 | Third Party Software Licenses 2 | -------------------------------------------------------------------------------- /3.5/api/axevent/examples/send_event_example/LICENSE: -------------------------------------------------------------------------------- 1 | Third Party Software Licenses 2 | -------------------------------------------------------------------------------- /3.5/api/axevent/examples/stateless_declaration_example/LICENSE: -------------------------------------------------------------------------------- 1 | Third Party Software Licenses 2 | -------------------------------------------------------------------------------- /3.5/api/axevent/examples/stateless_declaration_from_template_example/LICENSE: -------------------------------------------------------------------------------- 1 | Third Party Software Licenses 2 | -------------------------------------------------------------------------------- /3.5/api/axevent/examples/subscription_example/LICENSE: -------------------------------------------------------------------------------- 1 | Third Party Software Licenses 2 | -------------------------------------------------------------------------------- /3.5/api/axevent/html/axis-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxisCommunications/acap-documentation/4aa04f185618e66f493453bcd62da1788c3059e4/3.5/api/axevent/html/axis-logo.png -------------------------------------------------------------------------------- /3.5/api/axevent/html/bc_s.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxisCommunications/acap-documentation/4aa04f185618e66f493453bcd62da1788c3059e4/3.5/api/axevent/html/bc_s.png -------------------------------------------------------------------------------- /3.5/api/axevent/html/bdwn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxisCommunications/acap-documentation/4aa04f185618e66f493453bcd62da1788c3059e4/3.5/api/axevent/html/bdwn.png -------------------------------------------------------------------------------- /3.5/api/axevent/html/closed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxisCommunications/acap-documentation/4aa04f185618e66f493453bcd62da1788c3059e4/3.5/api/axevent/html/closed.png -------------------------------------------------------------------------------- /3.5/api/axevent/html/doc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxisCommunications/acap-documentation/4aa04f185618e66f493453bcd62da1788c3059e4/3.5/api/axevent/html/doc.png -------------------------------------------------------------------------------- /3.5/api/axevent/html/doxygen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxisCommunications/acap-documentation/4aa04f185618e66f493453bcd62da1788c3059e4/3.5/api/axevent/html/doxygen.png -------------------------------------------------------------------------------- /3.5/api/axevent/html/folderclosed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxisCommunications/acap-documentation/4aa04f185618e66f493453bcd62da1788c3059e4/3.5/api/axevent/html/folderclosed.png -------------------------------------------------------------------------------- /3.5/api/axevent/html/folderopen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxisCommunications/acap-documentation/4aa04f185618e66f493453bcd62da1788c3059e4/3.5/api/axevent/html/folderopen.png -------------------------------------------------------------------------------- /3.5/api/axevent/html/nav_f.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxisCommunications/acap-documentation/4aa04f185618e66f493453bcd62da1788c3059e4/3.5/api/axevent/html/nav_f.png -------------------------------------------------------------------------------- /3.5/api/axevent/html/nav_g.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxisCommunications/acap-documentation/4aa04f185618e66f493453bcd62da1788c3059e4/3.5/api/axevent/html/nav_g.png -------------------------------------------------------------------------------- /3.5/api/axevent/html/nav_h.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxisCommunications/acap-documentation/4aa04f185618e66f493453bcd62da1788c3059e4/3.5/api/axevent/html/nav_h.png -------------------------------------------------------------------------------- /3.5/api/axevent/html/open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxisCommunications/acap-documentation/4aa04f185618e66f493453bcd62da1788c3059e4/3.5/api/axevent/html/open.png -------------------------------------------------------------------------------- /3.5/api/axevent/html/splitbar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxisCommunications/acap-documentation/4aa04f185618e66f493453bcd62da1788c3059e4/3.5/api/axevent/html/splitbar.png -------------------------------------------------------------------------------- /3.5/api/axevent/html/sync_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxisCommunications/acap-documentation/4aa04f185618e66f493453bcd62da1788c3059e4/3.5/api/axevent/html/sync_off.png -------------------------------------------------------------------------------- /3.5/api/axevent/html/sync_on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxisCommunications/acap-documentation/4aa04f185618e66f493453bcd62da1788c3059e4/3.5/api/axevent/html/sync_on.png -------------------------------------------------------------------------------- /3.5/api/axevent/html/tab_a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxisCommunications/acap-documentation/4aa04f185618e66f493453bcd62da1788c3059e4/3.5/api/axevent/html/tab_a.png -------------------------------------------------------------------------------- /3.5/api/axevent/html/tab_b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxisCommunications/acap-documentation/4aa04f185618e66f493453bcd62da1788c3059e4/3.5/api/axevent/html/tab_b.png -------------------------------------------------------------------------------- /3.5/api/axevent/html/tab_h.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxisCommunications/acap-documentation/4aa04f185618e66f493453bcd62da1788c3059e4/3.5/api/axevent/html/tab_h.png -------------------------------------------------------------------------------- /3.5/api/axevent/html/tab_s.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxisCommunications/acap-documentation/4aa04f185618e66f493453bcd62da1788c3059e4/3.5/api/axevent/html/tab_s.png -------------------------------------------------------------------------------- /3.5/api/axhttp/examples/LICENSE: -------------------------------------------------------------------------------- 1 | Third Party Software Licenses 2 | -------------------------------------------------------------------------------- /3.5/api/axhttp/examples/cgi.txt: -------------------------------------------------------------------------------- 1 | administrator /test.cgi 2 | -------------------------------------------------------------------------------- /3.5/api/axhttp/html/axis-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxisCommunications/acap-documentation/4aa04f185618e66f493453bcd62da1788c3059e4/3.5/api/axhttp/html/axis-logo.png -------------------------------------------------------------------------------- /3.5/api/axhttp/html/bc_s.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxisCommunications/acap-documentation/4aa04f185618e66f493453bcd62da1788c3059e4/3.5/api/axhttp/html/bc_s.png -------------------------------------------------------------------------------- /3.5/api/axhttp/html/bdwn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxisCommunications/acap-documentation/4aa04f185618e66f493453bcd62da1788c3059e4/3.5/api/axhttp/html/bdwn.png -------------------------------------------------------------------------------- /3.5/api/axhttp/html/closed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxisCommunications/acap-documentation/4aa04f185618e66f493453bcd62da1788c3059e4/3.5/api/axhttp/html/closed.png -------------------------------------------------------------------------------- /3.5/api/axhttp/html/doc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxisCommunications/acap-documentation/4aa04f185618e66f493453bcd62da1788c3059e4/3.5/api/axhttp/html/doc.png -------------------------------------------------------------------------------- /3.5/api/axhttp/html/doxygen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxisCommunications/acap-documentation/4aa04f185618e66f493453bcd62da1788c3059e4/3.5/api/axhttp/html/doxygen.png -------------------------------------------------------------------------------- /3.5/api/axhttp/html/examples.js: -------------------------------------------------------------------------------- 1 | var examples = 2 | [ 3 | [ "ax_http_serve_request.c", "ax_http_serve_request_8c-example.html", null ] 4 | ]; -------------------------------------------------------------------------------- /3.5/api/axhttp/html/folderclosed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxisCommunications/acap-documentation/4aa04f185618e66f493453bcd62da1788c3059e4/3.5/api/axhttp/html/folderclosed.png -------------------------------------------------------------------------------- /3.5/api/axhttp/html/folderopen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxisCommunications/acap-documentation/4aa04f185618e66f493453bcd62da1788c3059e4/3.5/api/axhttp/html/folderopen.png -------------------------------------------------------------------------------- /3.5/api/axhttp/html/nav_f.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxisCommunications/acap-documentation/4aa04f185618e66f493453bcd62da1788c3059e4/3.5/api/axhttp/html/nav_f.png -------------------------------------------------------------------------------- /3.5/api/axhttp/html/nav_g.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxisCommunications/acap-documentation/4aa04f185618e66f493453bcd62da1788c3059e4/3.5/api/axhttp/html/nav_g.png -------------------------------------------------------------------------------- /3.5/api/axhttp/html/nav_h.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxisCommunications/acap-documentation/4aa04f185618e66f493453bcd62da1788c3059e4/3.5/api/axhttp/html/nav_h.png -------------------------------------------------------------------------------- /3.5/api/axhttp/html/open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxisCommunications/acap-documentation/4aa04f185618e66f493453bcd62da1788c3059e4/3.5/api/axhttp/html/open.png -------------------------------------------------------------------------------- /3.5/api/axhttp/html/splitbar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxisCommunications/acap-documentation/4aa04f185618e66f493453bcd62da1788c3059e4/3.5/api/axhttp/html/splitbar.png -------------------------------------------------------------------------------- /3.5/api/axhttp/html/sync_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxisCommunications/acap-documentation/4aa04f185618e66f493453bcd62da1788c3059e4/3.5/api/axhttp/html/sync_off.png -------------------------------------------------------------------------------- /3.5/api/axhttp/html/sync_on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxisCommunications/acap-documentation/4aa04f185618e66f493453bcd62da1788c3059e4/3.5/api/axhttp/html/sync_on.png -------------------------------------------------------------------------------- /3.5/api/axhttp/html/tab_a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxisCommunications/acap-documentation/4aa04f185618e66f493453bcd62da1788c3059e4/3.5/api/axhttp/html/tab_a.png -------------------------------------------------------------------------------- /3.5/api/axhttp/html/tab_b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxisCommunications/acap-documentation/4aa04f185618e66f493453bcd62da1788c3059e4/3.5/api/axhttp/html/tab_b.png -------------------------------------------------------------------------------- /3.5/api/axhttp/html/tab_h.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxisCommunications/acap-documentation/4aa04f185618e66f493453bcd62da1788c3059e4/3.5/api/axhttp/html/tab_h.png -------------------------------------------------------------------------------- /3.5/api/axhttp/html/tab_s.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxisCommunications/acap-documentation/4aa04f185618e66f493453bcd62da1788c3059e4/3.5/api/axhttp/html/tab_s.png -------------------------------------------------------------------------------- /3.5/api/axoverlay/html/axis-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxisCommunications/acap-documentation/4aa04f185618e66f493453bcd62da1788c3059e4/3.5/api/axoverlay/html/axis-logo.png -------------------------------------------------------------------------------- /3.5/api/axoverlay/html/axoverlay_8h__incl.md5: -------------------------------------------------------------------------------- 1 | 0c919c87ea3a0b3eb2b9909d8b26b08b -------------------------------------------------------------------------------- /3.5/api/axoverlay/html/bc_s.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxisCommunications/acap-documentation/4aa04f185618e66f493453bcd62da1788c3059e4/3.5/api/axoverlay/html/bc_s.png -------------------------------------------------------------------------------- /3.5/api/axoverlay/html/bdwn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxisCommunications/acap-documentation/4aa04f185618e66f493453bcd62da1788c3059e4/3.5/api/axoverlay/html/bdwn.png -------------------------------------------------------------------------------- /3.5/api/axoverlay/html/closed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxisCommunications/acap-documentation/4aa04f185618e66f493453bcd62da1788c3059e4/3.5/api/axoverlay/html/closed.png -------------------------------------------------------------------------------- /3.5/api/axoverlay/html/dir_68267d1309a1af8e8297ef4c3efbcdba.js: -------------------------------------------------------------------------------- 1 | var dir_68267d1309a1af8e8297ef4c3efbcdba = 2 | [ 3 | [ "axoverlay.h", "axoverlay_8h.html", "axoverlay_8h" ] 4 | ]; -------------------------------------------------------------------------------- /3.5/api/axoverlay/html/doc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxisCommunications/acap-documentation/4aa04f185618e66f493453bcd62da1788c3059e4/3.5/api/axoverlay/html/doc.png -------------------------------------------------------------------------------- /3.5/api/axoverlay/html/doxygen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxisCommunications/acap-documentation/4aa04f185618e66f493453bcd62da1788c3059e4/3.5/api/axoverlay/html/doxygen.png -------------------------------------------------------------------------------- /3.5/api/axoverlay/html/files.js: -------------------------------------------------------------------------------- 1 | var files = 2 | [ 3 | [ "src", "dir_68267d1309a1af8e8297ef4c3efbcdba.html", "dir_68267d1309a1af8e8297ef4c3efbcdba" ] 4 | ]; -------------------------------------------------------------------------------- /3.5/api/axoverlay/html/folderclosed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxisCommunications/acap-documentation/4aa04f185618e66f493453bcd62da1788c3059e4/3.5/api/axoverlay/html/folderclosed.png -------------------------------------------------------------------------------- /3.5/api/axoverlay/html/folderopen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxisCommunications/acap-documentation/4aa04f185618e66f493453bcd62da1788c3059e4/3.5/api/axoverlay/html/folderopen.png -------------------------------------------------------------------------------- /3.5/api/axoverlay/html/graph_legend.md5: -------------------------------------------------------------------------------- 1 | 387ff8eb65306fa251338d3c9bd7bfff -------------------------------------------------------------------------------- /3.5/api/axoverlay/html/nav_f.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxisCommunications/acap-documentation/4aa04f185618e66f493453bcd62da1788c3059e4/3.5/api/axoverlay/html/nav_f.png -------------------------------------------------------------------------------- /3.5/api/axoverlay/html/nav_g.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxisCommunications/acap-documentation/4aa04f185618e66f493453bcd62da1788c3059e4/3.5/api/axoverlay/html/nav_g.png -------------------------------------------------------------------------------- /3.5/api/axoverlay/html/nav_h.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxisCommunications/acap-documentation/4aa04f185618e66f493453bcd62da1788c3059e4/3.5/api/axoverlay/html/nav_h.png -------------------------------------------------------------------------------- /3.5/api/axoverlay/html/open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxisCommunications/acap-documentation/4aa04f185618e66f493453bcd62da1788c3059e4/3.5/api/axoverlay/html/open.png -------------------------------------------------------------------------------- /3.5/api/axoverlay/html/search/all_3.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['documentation',['Documentation',['../index.html',1,'']]] 4 | ]; 5 | -------------------------------------------------------------------------------- /3.5/api/axoverlay/html/search/all_4.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['green',['green',['../structaxoverlay__palette__color.html#a31adfa586bd42b64bc7b3e325cfcb577',1,'axoverlay_palette_color']]] 4 | ]; 5 | -------------------------------------------------------------------------------- /3.5/api/axoverlay/html/search/all_b.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['x',['x',['../structaxoverlay__overlay__data.html#a22fa3d552594bb3849a18616d6ccfdcb',1,'axoverlay_overlay_data']]] 4 | ]; 5 | -------------------------------------------------------------------------------- /3.5/api/axoverlay/html/search/all_c.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['y',['y',['../structaxoverlay__overlay__data.html#a9b62dfea0dbb98102fdcc4544e5a6013',1,'axoverlay_overlay_data']]] 4 | ]; 5 | -------------------------------------------------------------------------------- /3.5/api/axoverlay/html/search/all_d.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['z_5fpriority',['z_priority',['../structaxoverlay__overlay__data.html#a9fc5a3ae54574aa9a104c46f11d9c19b',1,'axoverlay_overlay_data']]] 4 | ]; 5 | -------------------------------------------------------------------------------- /3.5/api/axoverlay/html/search/close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxisCommunications/acap-documentation/4aa04f185618e66f493453bcd62da1788c3059e4/3.5/api/axoverlay/html/search/close.png -------------------------------------------------------------------------------- /3.5/api/axoverlay/html/search/files_0.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['axoverlay_2eh',['axoverlay.h',['../axoverlay_8h.html',1,'']]] 4 | ]; 5 | -------------------------------------------------------------------------------- /3.5/api/axoverlay/html/search/mag_sel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxisCommunications/acap-documentation/4aa04f185618e66f493453bcd62da1788c3059e4/3.5/api/axoverlay/html/search/mag_sel.png -------------------------------------------------------------------------------- /3.5/api/axoverlay/html/search/pages_0.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['axoverlay_20c_20api',['Axoverlay C API',['../axoverlaypage.html',1,'']]] 4 | ]; 5 | -------------------------------------------------------------------------------- /3.5/api/axoverlay/html/search/pages_1.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['documentation',['Documentation',['../index.html',1,'']]] 4 | ]; 5 | -------------------------------------------------------------------------------- /3.5/api/axoverlay/html/search/search_l.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxisCommunications/acap-documentation/4aa04f185618e66f493453bcd62da1788c3059e4/3.5/api/axoverlay/html/search/search_l.png -------------------------------------------------------------------------------- /3.5/api/axoverlay/html/search/search_m.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxisCommunications/acap-documentation/4aa04f185618e66f493453bcd62da1788c3059e4/3.5/api/axoverlay/html/search/search_m.png -------------------------------------------------------------------------------- /3.5/api/axoverlay/html/search/search_r.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxisCommunications/acap-documentation/4aa04f185618e66f493453bcd62da1788c3059e4/3.5/api/axoverlay/html/search/search_r.png -------------------------------------------------------------------------------- /3.5/api/axoverlay/html/search/variables_3.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['green',['green',['../structaxoverlay__palette__color.html#a31adfa586bd42b64bc7b3e325cfcb577',1,'axoverlay_palette_color']]] 4 | ]; 5 | -------------------------------------------------------------------------------- /3.5/api/axoverlay/html/search/variables_a.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['x',['x',['../structaxoverlay__overlay__data.html#a22fa3d552594bb3849a18616d6ccfdcb',1,'axoverlay_overlay_data']]] 4 | ]; 5 | -------------------------------------------------------------------------------- /3.5/api/axoverlay/html/search/variables_b.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['y',['y',['../structaxoverlay__overlay__data.html#a9b62dfea0dbb98102fdcc4544e5a6013',1,'axoverlay_overlay_data']]] 4 | ]; 5 | -------------------------------------------------------------------------------- /3.5/api/axoverlay/html/search/variables_c.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['z_5fpriority',['z_priority',['../structaxoverlay__overlay__data.html#a9fc5a3ae54574aa9a104c46f11d9c19b',1,'axoverlay_overlay_data']]] 4 | ]; 5 | -------------------------------------------------------------------------------- /3.5/api/axoverlay/html/splitbar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxisCommunications/acap-documentation/4aa04f185618e66f493453bcd62da1788c3059e4/3.5/api/axoverlay/html/splitbar.png -------------------------------------------------------------------------------- /3.5/api/axoverlay/html/structaxoverlay__settings__coll__graph.md5: -------------------------------------------------------------------------------- 1 | 0cf2b51d00effaea32f9a48537d332a0 -------------------------------------------------------------------------------- /3.5/api/axoverlay/html/sync_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxisCommunications/acap-documentation/4aa04f185618e66f493453bcd62da1788c3059e4/3.5/api/axoverlay/html/sync_off.png -------------------------------------------------------------------------------- /3.5/api/axoverlay/html/sync_on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxisCommunications/acap-documentation/4aa04f185618e66f493453bcd62da1788c3059e4/3.5/api/axoverlay/html/sync_on.png -------------------------------------------------------------------------------- /3.5/api/axoverlay/html/tab_a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxisCommunications/acap-documentation/4aa04f185618e66f493453bcd62da1788c3059e4/3.5/api/axoverlay/html/tab_a.png -------------------------------------------------------------------------------- /3.5/api/axoverlay/html/tab_b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxisCommunications/acap-documentation/4aa04f185618e66f493453bcd62da1788c3059e4/3.5/api/axoverlay/html/tab_b.png -------------------------------------------------------------------------------- /3.5/api/axoverlay/html/tab_h.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxisCommunications/acap-documentation/4aa04f185618e66f493453bcd62da1788c3059e4/3.5/api/axoverlay/html/tab_h.png -------------------------------------------------------------------------------- /3.5/api/axoverlay/html/tab_s.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxisCommunications/acap-documentation/4aa04f185618e66f493453bcd62da1788c3059e4/3.5/api/axoverlay/html/tab_s.png -------------------------------------------------------------------------------- /3.5/api/axparameter/examples/LICENSE: -------------------------------------------------------------------------------- 1 | Third Party Software Licenses 2 | -------------------------------------------------------------------------------- /3.5/api/axparameter/examples/param.conf: -------------------------------------------------------------------------------- 1 | # Static parameters. File must end with empty line 2 | StaticParam1="oldvalue" 3 | HiddenParam1="secret" type="hidden:string" 4 | 5 | -------------------------------------------------------------------------------- /3.5/api/axparameter/html/axis-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxisCommunications/acap-documentation/4aa04f185618e66f493453bcd62da1788c3059e4/3.5/api/axparameter/html/axis-logo.png -------------------------------------------------------------------------------- /3.5/api/axparameter/html/bc_s.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxisCommunications/acap-documentation/4aa04f185618e66f493453bcd62da1788c3059e4/3.5/api/axparameter/html/bc_s.png -------------------------------------------------------------------------------- /3.5/api/axparameter/html/bdwn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxisCommunications/acap-documentation/4aa04f185618e66f493453bcd62da1788c3059e4/3.5/api/axparameter/html/bdwn.png -------------------------------------------------------------------------------- /3.5/api/axparameter/html/closed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxisCommunications/acap-documentation/4aa04f185618e66f493453bcd62da1788c3059e4/3.5/api/axparameter/html/closed.png -------------------------------------------------------------------------------- /3.5/api/axparameter/html/doc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxisCommunications/acap-documentation/4aa04f185618e66f493453bcd62da1788c3059e4/3.5/api/axparameter/html/doc.png -------------------------------------------------------------------------------- /3.5/api/axparameter/html/doxygen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxisCommunications/acap-documentation/4aa04f185618e66f493453bcd62da1788c3059e4/3.5/api/axparameter/html/doxygen.png -------------------------------------------------------------------------------- /3.5/api/axparameter/html/examples.js: -------------------------------------------------------------------------------- 1 | var examples = 2 | [ 3 | [ "axparameterexample.c", "axparameterexample_8c-example.html", null ] 4 | ]; -------------------------------------------------------------------------------- /3.5/api/axparameter/html/folderclosed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxisCommunications/acap-documentation/4aa04f185618e66f493453bcd62da1788c3059e4/3.5/api/axparameter/html/folderclosed.png -------------------------------------------------------------------------------- /3.5/api/axparameter/html/folderopen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxisCommunications/acap-documentation/4aa04f185618e66f493453bcd62da1788c3059e4/3.5/api/axparameter/html/folderopen.png -------------------------------------------------------------------------------- /3.5/api/axparameter/html/nav_f.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxisCommunications/acap-documentation/4aa04f185618e66f493453bcd62da1788c3059e4/3.5/api/axparameter/html/nav_f.png -------------------------------------------------------------------------------- /3.5/api/axparameter/html/nav_g.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxisCommunications/acap-documentation/4aa04f185618e66f493453bcd62da1788c3059e4/3.5/api/axparameter/html/nav_g.png -------------------------------------------------------------------------------- /3.5/api/axparameter/html/nav_h.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxisCommunications/acap-documentation/4aa04f185618e66f493453bcd62da1788c3059e4/3.5/api/axparameter/html/nav_h.png -------------------------------------------------------------------------------- /3.5/api/axparameter/html/open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxisCommunications/acap-documentation/4aa04f185618e66f493453bcd62da1788c3059e4/3.5/api/axparameter/html/open.png -------------------------------------------------------------------------------- /3.5/api/axparameter/html/splitbar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxisCommunications/acap-documentation/4aa04f185618e66f493453bcd62da1788c3059e4/3.5/api/axparameter/html/splitbar.png -------------------------------------------------------------------------------- /3.5/api/axparameter/html/sync_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxisCommunications/acap-documentation/4aa04f185618e66f493453bcd62da1788c3059e4/3.5/api/axparameter/html/sync_off.png -------------------------------------------------------------------------------- /3.5/api/axparameter/html/sync_on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxisCommunications/acap-documentation/4aa04f185618e66f493453bcd62da1788c3059e4/3.5/api/axparameter/html/sync_on.png -------------------------------------------------------------------------------- /3.5/api/axparameter/html/tab_a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxisCommunications/acap-documentation/4aa04f185618e66f493453bcd62da1788c3059e4/3.5/api/axparameter/html/tab_a.png -------------------------------------------------------------------------------- /3.5/api/axparameter/html/tab_b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxisCommunications/acap-documentation/4aa04f185618e66f493453bcd62da1788c3059e4/3.5/api/axparameter/html/tab_b.png -------------------------------------------------------------------------------- /3.5/api/axparameter/html/tab_h.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxisCommunications/acap-documentation/4aa04f185618e66f493453bcd62da1788c3059e4/3.5/api/axparameter/html/tab_h.png -------------------------------------------------------------------------------- /3.5/api/axparameter/html/tab_s.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxisCommunications/acap-documentation/4aa04f185618e66f493453bcd62da1788c3059e4/3.5/api/axparameter/html/tab_s.png -------------------------------------------------------------------------------- /3.5/api/axptz/example/LICENSE: -------------------------------------------------------------------------------- 1 | Third Party Software Licenses 2 | -------------------------------------------------------------------------------- /3.5/api/axptz/example/README: -------------------------------------------------------------------------------- 1 | # Note that these tests require a PTZ enabled camera to run -------------------------------------------------------------------------------- /3.5/api/axptz/html/axis-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxisCommunications/acap-documentation/4aa04f185618e66f493453bcd62da1788c3059e4/3.5/api/axptz/html/axis-logo.png -------------------------------------------------------------------------------- /3.5/api/axptz/html/bc_s.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxisCommunications/acap-documentation/4aa04f185618e66f493453bcd62da1788c3059e4/3.5/api/axptz/html/bc_s.png -------------------------------------------------------------------------------- /3.5/api/axptz/html/bdwn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxisCommunications/acap-documentation/4aa04f185618e66f493453bcd62da1788c3059e4/3.5/api/axptz/html/bdwn.png -------------------------------------------------------------------------------- /3.5/api/axptz/html/closed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxisCommunications/acap-documentation/4aa04f185618e66f493453bcd62da1788c3059e4/3.5/api/axptz/html/closed.png -------------------------------------------------------------------------------- /3.5/api/axptz/html/doc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxisCommunications/acap-documentation/4aa04f185618e66f493453bcd62da1788c3059e4/3.5/api/axptz/html/doc.png -------------------------------------------------------------------------------- /3.5/api/axptz/html/doxygen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxisCommunications/acap-documentation/4aa04f185618e66f493453bcd62da1788c3059e4/3.5/api/axptz/html/doxygen.png -------------------------------------------------------------------------------- /3.5/api/axptz/html/examples.js: -------------------------------------------------------------------------------- 1 | var examples = 2 | [ 3 | [ "axptzexample.c", "axptzexample_8c-example.html", null ] 4 | ]; -------------------------------------------------------------------------------- /3.5/api/axptz/html/folderclosed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxisCommunications/acap-documentation/4aa04f185618e66f493453bcd62da1788c3059e4/3.5/api/axptz/html/folderclosed.png -------------------------------------------------------------------------------- /3.5/api/axptz/html/folderopen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxisCommunications/acap-documentation/4aa04f185618e66f493453bcd62da1788c3059e4/3.5/api/axptz/html/folderopen.png -------------------------------------------------------------------------------- /3.5/api/axptz/html/nav_f.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxisCommunications/acap-documentation/4aa04f185618e66f493453bcd62da1788c3059e4/3.5/api/axptz/html/nav_f.png -------------------------------------------------------------------------------- /3.5/api/axptz/html/nav_g.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxisCommunications/acap-documentation/4aa04f185618e66f493453bcd62da1788c3059e4/3.5/api/axptz/html/nav_g.png -------------------------------------------------------------------------------- /3.5/api/axptz/html/nav_h.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxisCommunications/acap-documentation/4aa04f185618e66f493453bcd62da1788c3059e4/3.5/api/axptz/html/nav_h.png -------------------------------------------------------------------------------- /3.5/api/axptz/html/open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxisCommunications/acap-documentation/4aa04f185618e66f493453bcd62da1788c3059e4/3.5/api/axptz/html/open.png -------------------------------------------------------------------------------- /3.5/api/axptz/html/splitbar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxisCommunications/acap-documentation/4aa04f185618e66f493453bcd62da1788c3059e4/3.5/api/axptz/html/splitbar.png -------------------------------------------------------------------------------- /3.5/api/axptz/html/struct__AXPTZ.js: -------------------------------------------------------------------------------- 1 | var struct__AXPTZ = 2 | [ 3 | [ "num_video_channels", "struct__AXPTZ.html#ad72f37ed1978cd6f920a30d4e69b94ad", null ] 4 | ]; -------------------------------------------------------------------------------- /3.5/api/axptz/html/struct__AXPTZPresetHandler.js: -------------------------------------------------------------------------------- 1 | var struct__AXPTZPresetHandler = 2 | [ 3 | [ "num_video_channels", "struct__AXPTZPresetHandler.html#a56081887adc13af51d8fa69be0a3bae0", null ] 4 | ]; -------------------------------------------------------------------------------- /3.5/api/axptz/html/sync_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxisCommunications/acap-documentation/4aa04f185618e66f493453bcd62da1788c3059e4/3.5/api/axptz/html/sync_off.png -------------------------------------------------------------------------------- /3.5/api/axptz/html/sync_on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxisCommunications/acap-documentation/4aa04f185618e66f493453bcd62da1788c3059e4/3.5/api/axptz/html/sync_on.png -------------------------------------------------------------------------------- /3.5/api/axptz/html/tab_a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxisCommunications/acap-documentation/4aa04f185618e66f493453bcd62da1788c3059e4/3.5/api/axptz/html/tab_a.png -------------------------------------------------------------------------------- /3.5/api/axptz/html/tab_b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxisCommunications/acap-documentation/4aa04f185618e66f493453bcd62da1788c3059e4/3.5/api/axptz/html/tab_b.png -------------------------------------------------------------------------------- /3.5/api/axptz/html/tab_h.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxisCommunications/acap-documentation/4aa04f185618e66f493453bcd62da1788c3059e4/3.5/api/axptz/html/tab_h.png -------------------------------------------------------------------------------- /3.5/api/axptz/html/tab_s.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxisCommunications/acap-documentation/4aa04f185618e66f493453bcd62da1788c3059e4/3.5/api/axptz/html/tab_s.png -------------------------------------------------------------------------------- /3.5/api/axserialport/example_pelco-D/LICENSE: -------------------------------------------------------------------------------- 1 | Third Party Software Licenses 2 | -------------------------------------------------------------------------------- /3.5/api/axserialport/examples/LICENSE: -------------------------------------------------------------------------------- 1 | Third Party Software Licenses 2 | -------------------------------------------------------------------------------- /3.5/api/axserialport/examples/README: -------------------------------------------------------------------------------- 1 | This code demonstrates the use of the serial port API (axserialport). 2 | Check the SDK documentation for more information. 3 | -------------------------------------------------------------------------------- /3.5/api/axserialport/examples_threads/LICENSE: -------------------------------------------------------------------------------- 1 | Third Party Software Licenses 2 | -------------------------------------------------------------------------------- /3.5/api/axserialport/examples_threads/README: -------------------------------------------------------------------------------- 1 | This code demonstrates the use of the serial port API (axserialport). 2 | Check the SDK documentation for more information. 3 | -------------------------------------------------------------------------------- /3.5/api/axserialport/html/axis-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxisCommunications/acap-documentation/4aa04f185618e66f493453bcd62da1788c3059e4/3.5/api/axserialport/html/axis-logo.png -------------------------------------------------------------------------------- /3.5/api/axserialport/html/bc_s.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxisCommunications/acap-documentation/4aa04f185618e66f493453bcd62da1788c3059e4/3.5/api/axserialport/html/bc_s.png -------------------------------------------------------------------------------- /3.5/api/axserialport/html/bdwn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxisCommunications/acap-documentation/4aa04f185618e66f493453bcd62da1788c3059e4/3.5/api/axserialport/html/bdwn.png -------------------------------------------------------------------------------- /3.5/api/axserialport/html/closed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxisCommunications/acap-documentation/4aa04f185618e66f493453bcd62da1788c3059e4/3.5/api/axserialport/html/closed.png -------------------------------------------------------------------------------- /3.5/api/axserialport/html/doc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxisCommunications/acap-documentation/4aa04f185618e66f493453bcd62da1788c3059e4/3.5/api/axserialport/html/doc.png -------------------------------------------------------------------------------- /3.5/api/axserialport/html/doxygen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxisCommunications/acap-documentation/4aa04f185618e66f493453bcd62da1788c3059e4/3.5/api/axserialport/html/doxygen.png -------------------------------------------------------------------------------- /3.5/api/axserialport/html/examples.js: -------------------------------------------------------------------------------- 1 | var examples = 2 | [ 3 | [ "axserialport_example.c", "axserialport_example_8c-example.html", null ] 4 | ]; -------------------------------------------------------------------------------- /3.5/api/axserialport/html/files.js: -------------------------------------------------------------------------------- 1 | var files = 2 | [ 3 | [ "axserialport.h", "axserialport_8h.html", "axserialport_8h" ] 4 | ]; -------------------------------------------------------------------------------- /3.5/api/axserialport/html/folderclosed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxisCommunications/acap-documentation/4aa04f185618e66f493453bcd62da1788c3059e4/3.5/api/axserialport/html/folderclosed.png -------------------------------------------------------------------------------- /3.5/api/axserialport/html/folderopen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxisCommunications/acap-documentation/4aa04f185618e66f493453bcd62da1788c3059e4/3.5/api/axserialport/html/folderopen.png -------------------------------------------------------------------------------- /3.5/api/axserialport/html/nav_f.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxisCommunications/acap-documentation/4aa04f185618e66f493453bcd62da1788c3059e4/3.5/api/axserialport/html/nav_f.png -------------------------------------------------------------------------------- /3.5/api/axserialport/html/nav_g.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxisCommunications/acap-documentation/4aa04f185618e66f493453bcd62da1788c3059e4/3.5/api/axserialport/html/nav_g.png -------------------------------------------------------------------------------- /3.5/api/axserialport/html/nav_h.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxisCommunications/acap-documentation/4aa04f185618e66f493453bcd62da1788c3059e4/3.5/api/axserialport/html/nav_h.png -------------------------------------------------------------------------------- /3.5/api/axserialport/html/open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxisCommunications/acap-documentation/4aa04f185618e66f493453bcd62da1788c3059e4/3.5/api/axserialport/html/open.png -------------------------------------------------------------------------------- /3.5/api/axserialport/html/splitbar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxisCommunications/acap-documentation/4aa04f185618e66f493453bcd62da1788c3059e4/3.5/api/axserialport/html/splitbar.png -------------------------------------------------------------------------------- /3.5/api/axserialport/html/sync_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxisCommunications/acap-documentation/4aa04f185618e66f493453bcd62da1788c3059e4/3.5/api/axserialport/html/sync_off.png -------------------------------------------------------------------------------- /3.5/api/axserialport/html/sync_on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxisCommunications/acap-documentation/4aa04f185618e66f493453bcd62da1788c3059e4/3.5/api/axserialport/html/sync_on.png -------------------------------------------------------------------------------- /3.5/api/axserialport/html/tab_a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxisCommunications/acap-documentation/4aa04f185618e66f493453bcd62da1788c3059e4/3.5/api/axserialport/html/tab_a.png -------------------------------------------------------------------------------- /3.5/api/axserialport/html/tab_b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxisCommunications/acap-documentation/4aa04f185618e66f493453bcd62da1788c3059e4/3.5/api/axserialport/html/tab_b.png -------------------------------------------------------------------------------- /3.5/api/axserialport/html/tab_h.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxisCommunications/acap-documentation/4aa04f185618e66f493453bcd62da1788c3059e4/3.5/api/axserialport/html/tab_h.png -------------------------------------------------------------------------------- /3.5/api/axserialport/html/tab_s.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxisCommunications/acap-documentation/4aa04f185618e66f493453bcd62da1788c3059e4/3.5/api/axserialport/html/tab_s.png -------------------------------------------------------------------------------- /3.5/api/axstorage/examples/LICENSE: -------------------------------------------------------------------------------- 1 | Third Party Software Licenses 2 | -------------------------------------------------------------------------------- /3.5/api/axstorage/examples/param.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxisCommunications/acap-documentation/4aa04f185618e66f493453bcd62da1788c3059e4/3.5/api/axstorage/examples/param.conf -------------------------------------------------------------------------------- /3.5/api/axstorage/html/axis-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxisCommunications/acap-documentation/4aa04f185618e66f493453bcd62da1788c3059e4/3.5/api/axstorage/html/axis-logo.png -------------------------------------------------------------------------------- /3.5/api/axstorage/html/bc_s.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxisCommunications/acap-documentation/4aa04f185618e66f493453bcd62da1788c3059e4/3.5/api/axstorage/html/bc_s.png -------------------------------------------------------------------------------- /3.5/api/axstorage/html/bdwn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxisCommunications/acap-documentation/4aa04f185618e66f493453bcd62da1788c3059e4/3.5/api/axstorage/html/bdwn.png -------------------------------------------------------------------------------- /3.5/api/axstorage/html/closed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxisCommunications/acap-documentation/4aa04f185618e66f493453bcd62da1788c3059e4/3.5/api/axstorage/html/closed.png -------------------------------------------------------------------------------- /3.5/api/axstorage/html/doc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxisCommunications/acap-documentation/4aa04f185618e66f493453bcd62da1788c3059e4/3.5/api/axstorage/html/doc.png -------------------------------------------------------------------------------- /3.5/api/axstorage/html/doxygen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxisCommunications/acap-documentation/4aa04f185618e66f493453bcd62da1788c3059e4/3.5/api/axstorage/html/doxygen.png -------------------------------------------------------------------------------- /3.5/api/axstorage/html/examples.js: -------------------------------------------------------------------------------- 1 | var examples = 2 | [ 3 | [ "ax_storage_example.c", "ax_storage_example_8c-example.html", null ] 4 | ]; -------------------------------------------------------------------------------- /3.5/api/axstorage/html/folderclosed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxisCommunications/acap-documentation/4aa04f185618e66f493453bcd62da1788c3059e4/3.5/api/axstorage/html/folderclosed.png -------------------------------------------------------------------------------- /3.5/api/axstorage/html/folderopen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxisCommunications/acap-documentation/4aa04f185618e66f493453bcd62da1788c3059e4/3.5/api/axstorage/html/folderopen.png -------------------------------------------------------------------------------- /3.5/api/axstorage/html/nav_f.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxisCommunications/acap-documentation/4aa04f185618e66f493453bcd62da1788c3059e4/3.5/api/axstorage/html/nav_f.png -------------------------------------------------------------------------------- /3.5/api/axstorage/html/nav_g.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxisCommunications/acap-documentation/4aa04f185618e66f493453bcd62da1788c3059e4/3.5/api/axstorage/html/nav_g.png -------------------------------------------------------------------------------- /3.5/api/axstorage/html/nav_h.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxisCommunications/acap-documentation/4aa04f185618e66f493453bcd62da1788c3059e4/3.5/api/axstorage/html/nav_h.png -------------------------------------------------------------------------------- /3.5/api/axstorage/html/open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxisCommunications/acap-documentation/4aa04f185618e66f493453bcd62da1788c3059e4/3.5/api/axstorage/html/open.png -------------------------------------------------------------------------------- /3.5/api/axstorage/html/splitbar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxisCommunications/acap-documentation/4aa04f185618e66f493453bcd62da1788c3059e4/3.5/api/axstorage/html/splitbar.png -------------------------------------------------------------------------------- /3.5/api/axstorage/html/sync_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxisCommunications/acap-documentation/4aa04f185618e66f493453bcd62da1788c3059e4/3.5/api/axstorage/html/sync_off.png -------------------------------------------------------------------------------- /3.5/api/axstorage/html/sync_on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxisCommunications/acap-documentation/4aa04f185618e66f493453bcd62da1788c3059e4/3.5/api/axstorage/html/sync_on.png -------------------------------------------------------------------------------- /3.5/api/axstorage/html/tab_a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxisCommunications/acap-documentation/4aa04f185618e66f493453bcd62da1788c3059e4/3.5/api/axstorage/html/tab_a.png -------------------------------------------------------------------------------- /3.5/api/axstorage/html/tab_b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxisCommunications/acap-documentation/4aa04f185618e66f493453bcd62da1788c3059e4/3.5/api/axstorage/html/tab_b.png -------------------------------------------------------------------------------- /3.5/api/axstorage/html/tab_h.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxisCommunications/acap-documentation/4aa04f185618e66f493453bcd62da1788c3059e4/3.5/api/axstorage/html/tab_h.png -------------------------------------------------------------------------------- /3.5/api/axstorage/html/tab_s.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxisCommunications/acap-documentation/4aa04f185618e66f493453bcd62da1788c3059e4/3.5/api/axstorage/html/tab_s.png -------------------------------------------------------------------------------- /3.5/api/capture/html/axis-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxisCommunications/acap-documentation/4aa04f185618e66f493453bcd62da1788c3059e4/3.5/api/capture/html/axis-logo.png -------------------------------------------------------------------------------- /3.5/api/capture/html/bc_s.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxisCommunications/acap-documentation/4aa04f185618e66f493453bcd62da1788c3059e4/3.5/api/capture/html/bc_s.png -------------------------------------------------------------------------------- /3.5/api/capture/html/bdwn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxisCommunications/acap-documentation/4aa04f185618e66f493453bcd62da1788c3059e4/3.5/api/capture/html/bdwn.png -------------------------------------------------------------------------------- /3.5/api/capture/html/closed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxisCommunications/acap-documentation/4aa04f185618e66f493453bcd62da1788c3059e4/3.5/api/capture/html/closed.png -------------------------------------------------------------------------------- /3.5/api/capture/html/doc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxisCommunications/acap-documentation/4aa04f185618e66f493453bcd62da1788c3059e4/3.5/api/capture/html/doc.png -------------------------------------------------------------------------------- /3.5/api/capture/html/doxygen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxisCommunications/acap-documentation/4aa04f185618e66f493453bcd62da1788c3059e4/3.5/api/capture/html/doxygen.png -------------------------------------------------------------------------------- /3.5/api/capture/html/files.js: -------------------------------------------------------------------------------- 1 | var files = 2 | [ 3 | [ "capture.h", "capture_8h.html", "capture_8h" ], 4 | [ "capture_native.h", "capture__native_8h.html", "capture__native_8h" ] 5 | ]; -------------------------------------------------------------------------------- /3.5/api/capture/html/folderclosed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxisCommunications/acap-documentation/4aa04f185618e66f493453bcd62da1788c3059e4/3.5/api/capture/html/folderclosed.png -------------------------------------------------------------------------------- /3.5/api/capture/html/folderopen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxisCommunications/acap-documentation/4aa04f185618e66f493453bcd62da1788c3059e4/3.5/api/capture/html/folderopen.png -------------------------------------------------------------------------------- /3.5/api/capture/html/nav_f.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxisCommunications/acap-documentation/4aa04f185618e66f493453bcd62da1788c3059e4/3.5/api/capture/html/nav_f.png -------------------------------------------------------------------------------- /3.5/api/capture/html/nav_g.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxisCommunications/acap-documentation/4aa04f185618e66f493453bcd62da1788c3059e4/3.5/api/capture/html/nav_g.png -------------------------------------------------------------------------------- /3.5/api/capture/html/nav_h.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxisCommunications/acap-documentation/4aa04f185618e66f493453bcd62da1788c3059e4/3.5/api/capture/html/nav_h.png -------------------------------------------------------------------------------- /3.5/api/capture/html/open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxisCommunications/acap-documentation/4aa04f185618e66f493453bcd62da1788c3059e4/3.5/api/capture/html/open.png -------------------------------------------------------------------------------- /3.5/api/capture/html/splitbar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxisCommunications/acap-documentation/4aa04f185618e66f493453bcd62da1788c3059e4/3.5/api/capture/html/splitbar.png -------------------------------------------------------------------------------- /3.5/api/capture/html/sync_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxisCommunications/acap-documentation/4aa04f185618e66f493453bcd62da1788c3059e4/3.5/api/capture/html/sync_off.png -------------------------------------------------------------------------------- /3.5/api/capture/html/sync_on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxisCommunications/acap-documentation/4aa04f185618e66f493453bcd62da1788c3059e4/3.5/api/capture/html/sync_on.png -------------------------------------------------------------------------------- /3.5/api/capture/html/tab_a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxisCommunications/acap-documentation/4aa04f185618e66f493453bcd62da1788c3059e4/3.5/api/capture/html/tab_a.png -------------------------------------------------------------------------------- /3.5/api/capture/html/tab_b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxisCommunications/acap-documentation/4aa04f185618e66f493453bcd62da1788c3059e4/3.5/api/capture/html/tab_b.png -------------------------------------------------------------------------------- /3.5/api/capture/html/tab_h.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxisCommunications/acap-documentation/4aa04f185618e66f493453bcd62da1788c3059e4/3.5/api/capture/html/tab_h.png -------------------------------------------------------------------------------- /3.5/api/capture/html/tab_s.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxisCommunications/acap-documentation/4aa04f185618e66f493453bcd62da1788c3059e4/3.5/api/capture/html/tab_s.png -------------------------------------------------------------------------------- /3.5/api/larod/html/axis-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxisCommunications/acap-documentation/4aa04f185618e66f493453bcd62da1788c3059e4/3.5/api/larod/html/axis-logo.png -------------------------------------------------------------------------------- /3.5/api/larod/html/bc_s.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxisCommunications/acap-documentation/4aa04f185618e66f493453bcd62da1788c3059e4/3.5/api/larod/html/bc_s.png -------------------------------------------------------------------------------- /3.5/api/larod/html/bdwn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxisCommunications/acap-documentation/4aa04f185618e66f493453bcd62da1788c3059e4/3.5/api/larod/html/bdwn.png -------------------------------------------------------------------------------- /3.5/api/larod/html/closed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxisCommunications/acap-documentation/4aa04f185618e66f493453bcd62da1788c3059e4/3.5/api/larod/html/closed.png -------------------------------------------------------------------------------- /3.5/api/larod/html/doc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxisCommunications/acap-documentation/4aa04f185618e66f493453bcd62da1788c3059e4/3.5/api/larod/html/doc.png -------------------------------------------------------------------------------- /3.5/api/larod/html/doxygen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxisCommunications/acap-documentation/4aa04f185618e66f493453bcd62da1788c3059e4/3.5/api/larod/html/doxygen.png -------------------------------------------------------------------------------- /3.5/api/larod/html/folderclosed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxisCommunications/acap-documentation/4aa04f185618e66f493453bcd62da1788c3059e4/3.5/api/larod/html/folderclosed.png -------------------------------------------------------------------------------- /3.5/api/larod/html/folderopen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxisCommunications/acap-documentation/4aa04f185618e66f493453bcd62da1788c3059e4/3.5/api/larod/html/folderopen.png -------------------------------------------------------------------------------- /3.5/api/larod/html/nav_f.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxisCommunications/acap-documentation/4aa04f185618e66f493453bcd62da1788c3059e4/3.5/api/larod/html/nav_f.png -------------------------------------------------------------------------------- /3.5/api/larod/html/nav_g.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxisCommunications/acap-documentation/4aa04f185618e66f493453bcd62da1788c3059e4/3.5/api/larod/html/nav_g.png -------------------------------------------------------------------------------- /3.5/api/larod/html/nav_h.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxisCommunications/acap-documentation/4aa04f185618e66f493453bcd62da1788c3059e4/3.5/api/larod/html/nav_h.png -------------------------------------------------------------------------------- /3.5/api/larod/html/open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxisCommunications/acap-documentation/4aa04f185618e66f493453bcd62da1788c3059e4/3.5/api/larod/html/open.png -------------------------------------------------------------------------------- /3.5/api/larod/html/search/all_0.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['architecture',['Architecture',['../md__opt_builder-doc_larod_doc_architecture.html',1,'']]] 4 | ]; 5 | -------------------------------------------------------------------------------- /3.5/api/larod/html/search/all_6.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['neural_20network_20inference',['Neural Network Inference',['../md__opt_builder-doc_larod_doc_nn-inference.html',1,'']]] 4 | ]; 5 | -------------------------------------------------------------------------------- /3.5/api/larod/html/search/all_7.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['overview',['Overview',['../index.html',1,'']]] 4 | ]; 5 | -------------------------------------------------------------------------------- /3.5/api/larod/html/search/all_8.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['preprocessing',['Preprocessing',['../md__opt_builder-doc_larod_doc_preprocessing.html',1,'']]] 4 | ]; 5 | -------------------------------------------------------------------------------- /3.5/api/larod/html/search/all_9.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['the_20larod_2dclient_20tool',['The larod-client tool',['../md__opt_builder-doc_larod_doc_larod-client.html',1,'']]] 4 | ]; 5 | -------------------------------------------------------------------------------- /3.5/api/larod/html/search/all_a.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['working_20with_20dma_2dbuf',['Working with dma-buf',['../md__opt_builder-doc_larod_doc_dma-buf.html',1,'']]] 4 | ]; 5 | -------------------------------------------------------------------------------- /3.5/api/larod/html/search/close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxisCommunications/acap-documentation/4aa04f185618e66f493453bcd62da1788c3059e4/3.5/api/larod/html/search/close.png -------------------------------------------------------------------------------- /3.5/api/larod/html/search/files_0.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['larod_2eh',['larod.h',['../larod_8h.html',1,'']]] 4 | ]; 5 | -------------------------------------------------------------------------------- /3.5/api/larod/html/search/mag_sel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxisCommunications/acap-documentation/4aa04f185618e66f493453bcd62da1788c3059e4/3.5/api/larod/html/search/mag_sel.png -------------------------------------------------------------------------------- /3.5/api/larod/html/search/pages_0.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['architecture',['Architecture',['../md__opt_builder-doc_larod_doc_architecture.html',1,'']]] 4 | ]; 5 | -------------------------------------------------------------------------------- /3.5/api/larod/html/search/pages_1.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['changes_20in_20the_20larod_20api',['Changes in the larod API',['../md__opt_builder-doc_larod_doc_api-changes.html',1,'']]] 4 | ]; 5 | -------------------------------------------------------------------------------- /3.5/api/larod/html/search/pages_5.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['neural_20network_20inference',['Neural Network Inference',['../md__opt_builder-doc_larod_doc_nn-inference.html',1,'']]] 4 | ]; 5 | -------------------------------------------------------------------------------- /3.5/api/larod/html/search/pages_6.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['overview',['Overview',['../index.html',1,'']]] 4 | ]; 5 | -------------------------------------------------------------------------------- /3.5/api/larod/html/search/pages_7.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['preprocessing',['Preprocessing',['../md__opt_builder-doc_larod_doc_preprocessing.html',1,'']]] 4 | ]; 5 | -------------------------------------------------------------------------------- /3.5/api/larod/html/search/pages_8.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['the_20larod_2dclient_20tool',['The larod-client tool',['../md__opt_builder-doc_larod_doc_larod-client.html',1,'']]] 4 | ]; 5 | -------------------------------------------------------------------------------- /3.5/api/larod/html/search/pages_9.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['working_20with_20dma_2dbuf',['Working with dma-buf',['../md__opt_builder-doc_larod_doc_dma-buf.html',1,'']]] 4 | ]; 5 | -------------------------------------------------------------------------------- /3.5/api/larod/html/search/search_l.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxisCommunications/acap-documentation/4aa04f185618e66f493453bcd62da1788c3059e4/3.5/api/larod/html/search/search_l.png -------------------------------------------------------------------------------- /3.5/api/larod/html/search/search_m.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxisCommunications/acap-documentation/4aa04f185618e66f493453bcd62da1788c3059e4/3.5/api/larod/html/search/search_m.png -------------------------------------------------------------------------------- /3.5/api/larod/html/search/search_r.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxisCommunications/acap-documentation/4aa04f185618e66f493453bcd62da1788c3059e4/3.5/api/larod/html/search/search_r.png -------------------------------------------------------------------------------- /3.5/api/larod/html/search/variables_0.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['code',['code',['../structlarodError.html#a059162c8307af42fcf322163a3dbdc54',1,'larodError']]] 4 | ]; 5 | -------------------------------------------------------------------------------- /3.5/api/larod/html/search/variables_2.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['msg',['msg',['../structlarodError.html#a07fcd04406359c804afc07ae50bd45ce',1,'larodError']]] 4 | ]; 5 | -------------------------------------------------------------------------------- /3.5/api/larod/html/splitbar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxisCommunications/acap-documentation/4aa04f185618e66f493453bcd62da1788c3059e4/3.5/api/larod/html/splitbar.png -------------------------------------------------------------------------------- /3.5/api/larod/html/sync_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxisCommunications/acap-documentation/4aa04f185618e66f493453bcd62da1788c3059e4/3.5/api/larod/html/sync_off.png -------------------------------------------------------------------------------- /3.5/api/larod/html/sync_on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxisCommunications/acap-documentation/4aa04f185618e66f493453bcd62da1788c3059e4/3.5/api/larod/html/sync_on.png -------------------------------------------------------------------------------- /3.5/api/larod/html/tab_a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxisCommunications/acap-documentation/4aa04f185618e66f493453bcd62da1788c3059e4/3.5/api/larod/html/tab_a.png -------------------------------------------------------------------------------- /3.5/api/larod/html/tab_b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxisCommunications/acap-documentation/4aa04f185618e66f493453bcd62da1788c3059e4/3.5/api/larod/html/tab_b.png -------------------------------------------------------------------------------- /3.5/api/larod/html/tab_h.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxisCommunications/acap-documentation/4aa04f185618e66f493453bcd62da1788c3059e4/3.5/api/larod/html/tab_h.png -------------------------------------------------------------------------------- /3.5/api/larod/html/tab_s.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxisCommunications/acap-documentation/4aa04f185618e66f493453bcd62da1788c3059e4/3.5/api/larod/html/tab_s.png -------------------------------------------------------------------------------- /3.5/api/licensekey/html/axis-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxisCommunications/acap-documentation/4aa04f185618e66f493453bcd62da1788c3059e4/3.5/api/licensekey/html/axis-logo.png -------------------------------------------------------------------------------- /3.5/api/licensekey/html/bc_s.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxisCommunications/acap-documentation/4aa04f185618e66f493453bcd62da1788c3059e4/3.5/api/licensekey/html/bc_s.png -------------------------------------------------------------------------------- /3.5/api/licensekey/html/bdwn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxisCommunications/acap-documentation/4aa04f185618e66f493453bcd62da1788c3059e4/3.5/api/licensekey/html/bdwn.png -------------------------------------------------------------------------------- /3.5/api/licensekey/html/closed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxisCommunications/acap-documentation/4aa04f185618e66f493453bcd62da1788c3059e4/3.5/api/licensekey/html/closed.png -------------------------------------------------------------------------------- /3.5/api/licensekey/html/doc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxisCommunications/acap-documentation/4aa04f185618e66f493453bcd62da1788c3059e4/3.5/api/licensekey/html/doc.png -------------------------------------------------------------------------------- /3.5/api/licensekey/html/doxygen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxisCommunications/acap-documentation/4aa04f185618e66f493453bcd62da1788c3059e4/3.5/api/licensekey/html/doxygen.png -------------------------------------------------------------------------------- /3.5/api/licensekey/html/folderclosed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxisCommunications/acap-documentation/4aa04f185618e66f493453bcd62da1788c3059e4/3.5/api/licensekey/html/folderclosed.png -------------------------------------------------------------------------------- /3.5/api/licensekey/html/folderopen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxisCommunications/acap-documentation/4aa04f185618e66f493453bcd62da1788c3059e4/3.5/api/licensekey/html/folderopen.png -------------------------------------------------------------------------------- /3.5/api/licensekey/html/nav_f.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxisCommunications/acap-documentation/4aa04f185618e66f493453bcd62da1788c3059e4/3.5/api/licensekey/html/nav_f.png -------------------------------------------------------------------------------- /3.5/api/licensekey/html/nav_g.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxisCommunications/acap-documentation/4aa04f185618e66f493453bcd62da1788c3059e4/3.5/api/licensekey/html/nav_g.png -------------------------------------------------------------------------------- /3.5/api/licensekey/html/nav_h.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxisCommunications/acap-documentation/4aa04f185618e66f493453bcd62da1788c3059e4/3.5/api/licensekey/html/nav_h.png -------------------------------------------------------------------------------- /3.5/api/licensekey/html/open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxisCommunications/acap-documentation/4aa04f185618e66f493453bcd62da1788c3059e4/3.5/api/licensekey/html/open.png -------------------------------------------------------------------------------- /3.5/api/licensekey/html/splitbar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxisCommunications/acap-documentation/4aa04f185618e66f493453bcd62da1788c3059e4/3.5/api/licensekey/html/splitbar.png -------------------------------------------------------------------------------- /3.5/api/licensekey/html/sync_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxisCommunications/acap-documentation/4aa04f185618e66f493453bcd62da1788c3059e4/3.5/api/licensekey/html/sync_off.png -------------------------------------------------------------------------------- /3.5/api/licensekey/html/sync_on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxisCommunications/acap-documentation/4aa04f185618e66f493453bcd62da1788c3059e4/3.5/api/licensekey/html/sync_on.png -------------------------------------------------------------------------------- /3.5/api/licensekey/html/tab_a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxisCommunications/acap-documentation/4aa04f185618e66f493453bcd62da1788c3059e4/3.5/api/licensekey/html/tab_a.png -------------------------------------------------------------------------------- /3.5/api/licensekey/html/tab_b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxisCommunications/acap-documentation/4aa04f185618e66f493453bcd62da1788c3059e4/3.5/api/licensekey/html/tab_b.png -------------------------------------------------------------------------------- /3.5/api/licensekey/html/tab_h.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxisCommunications/acap-documentation/4aa04f185618e66f493453bcd62da1788c3059e4/3.5/api/licensekey/html/tab_h.png -------------------------------------------------------------------------------- /3.5/api/licensekey/html/tab_s.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxisCommunications/acap-documentation/4aa04f185618e66f493453bcd62da1788c3059e4/3.5/api/licensekey/html/tab_s.png -------------------------------------------------------------------------------- /3.5/api/vdostream/html/bc_s.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxisCommunications/acap-documentation/4aa04f185618e66f493453bcd62da1788c3059e4/3.5/api/vdostream/html/bc_s.png -------------------------------------------------------------------------------- /3.5/api/vdostream/html/bdwn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxisCommunications/acap-documentation/4aa04f185618e66f493453bcd62da1788c3059e4/3.5/api/vdostream/html/bdwn.png -------------------------------------------------------------------------------- /3.5/api/vdostream/html/closed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxisCommunications/acap-documentation/4aa04f185618e66f493453bcd62da1788c3059e4/3.5/api/vdostream/html/closed.png -------------------------------------------------------------------------------- /3.5/api/vdostream/html/dir_97aefd0d527b934f1d99a682da8fe6a9_dep.md5: -------------------------------------------------------------------------------- 1 | 2be99119adb253a87537badc1f4f28eb -------------------------------------------------------------------------------- /3.5/api/vdostream/html/doc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxisCommunications/acap-documentation/4aa04f185618e66f493453bcd62da1788c3059e4/3.5/api/vdostream/html/doc.png -------------------------------------------------------------------------------- /3.5/api/vdostream/html/doxygen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxisCommunications/acap-documentation/4aa04f185618e66f493453bcd62da1788c3059e4/3.5/api/vdostream/html/doxygen.png -------------------------------------------------------------------------------- /3.5/api/vdostream/html/folderclosed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxisCommunications/acap-documentation/4aa04f185618e66f493453bcd62da1788c3059e4/3.5/api/vdostream/html/folderclosed.png -------------------------------------------------------------------------------- /3.5/api/vdostream/html/folderopen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxisCommunications/acap-documentation/4aa04f185618e66f493453bcd62da1788c3059e4/3.5/api/vdostream/html/folderopen.png -------------------------------------------------------------------------------- /3.5/api/vdostream/html/globals_dup.js: -------------------------------------------------------------------------------- 1 | var globals_dup = 2 | [ 3 | [ "v", "globals.html", null ] 4 | ]; -------------------------------------------------------------------------------- /3.5/api/vdostream/html/graph_legend.md5: -------------------------------------------------------------------------------- 1 | 387ff8eb65306fa251338d3c9bd7bfff -------------------------------------------------------------------------------- /3.5/api/vdostream/html/nav_f.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxisCommunications/acap-documentation/4aa04f185618e66f493453bcd62da1788c3059e4/3.5/api/vdostream/html/nav_f.png -------------------------------------------------------------------------------- /3.5/api/vdostream/html/nav_g.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxisCommunications/acap-documentation/4aa04f185618e66f493453bcd62da1788c3059e4/3.5/api/vdostream/html/nav_g.png -------------------------------------------------------------------------------- /3.5/api/vdostream/html/nav_h.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxisCommunications/acap-documentation/4aa04f185618e66f493453bcd62da1788c3059e4/3.5/api/vdostream/html/nav_h.png -------------------------------------------------------------------------------- /3.5/api/vdostream/html/open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxisCommunications/acap-documentation/4aa04f185618e66f493453bcd62da1788c3059e4/3.5/api/vdostream/html/open.png -------------------------------------------------------------------------------- /3.5/api/vdostream/html/search/all_0.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['deprecated_20list',['Deprecated List',['../deprecated.html',1,'']]] 4 | ]; 5 | -------------------------------------------------------------------------------- /3.5/api/vdostream/html/search/close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxisCommunications/acap-documentation/4aa04f185618e66f493453bcd62da1788c3059e4/3.5/api/vdostream/html/search/close.png -------------------------------------------------------------------------------- /3.5/api/vdostream/html/search/mag_sel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxisCommunications/acap-documentation/4aa04f185618e66f493453bcd62da1788c3059e4/3.5/api/vdostream/html/search/mag_sel.png -------------------------------------------------------------------------------- /3.5/api/vdostream/html/search/pages_0.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['deprecated_20list',['Deprecated List',['../deprecated.html',1,'']]] 4 | ]; 5 | -------------------------------------------------------------------------------- /3.5/api/vdostream/html/search/search_l.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxisCommunications/acap-documentation/4aa04f185618e66f493453bcd62da1788c3059e4/3.5/api/vdostream/html/search/search_l.png -------------------------------------------------------------------------------- /3.5/api/vdostream/html/search/search_m.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxisCommunications/acap-documentation/4aa04f185618e66f493453bcd62da1788c3059e4/3.5/api/vdostream/html/search/search_m.png -------------------------------------------------------------------------------- /3.5/api/vdostream/html/search/search_r.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxisCommunications/acap-documentation/4aa04f185618e66f493453bcd62da1788c3059e4/3.5/api/vdostream/html/search/search_r.png -------------------------------------------------------------------------------- /3.5/api/vdostream/html/splitbar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxisCommunications/acap-documentation/4aa04f185618e66f493453bcd62da1788c3059e4/3.5/api/vdostream/html/splitbar.png -------------------------------------------------------------------------------- /3.5/api/vdostream/html/structVdoResolutionSet__coll__graph.md5: -------------------------------------------------------------------------------- 1 | 941ec7f6c6ab381583a4de114802d056 -------------------------------------------------------------------------------- /3.5/api/vdostream/html/sync_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxisCommunications/acap-documentation/4aa04f185618e66f493453bcd62da1788c3059e4/3.5/api/vdostream/html/sync_off.png -------------------------------------------------------------------------------- /3.5/api/vdostream/html/sync_on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxisCommunications/acap-documentation/4aa04f185618e66f493453bcd62da1788c3059e4/3.5/api/vdostream/html/sync_on.png -------------------------------------------------------------------------------- /3.5/api/vdostream/html/tab_a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxisCommunications/acap-documentation/4aa04f185618e66f493453bcd62da1788c3059e4/3.5/api/vdostream/html/tab_a.png -------------------------------------------------------------------------------- /3.5/api/vdostream/html/tab_b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxisCommunications/acap-documentation/4aa04f185618e66f493453bcd62da1788c3059e4/3.5/api/vdostream/html/tab_b.png -------------------------------------------------------------------------------- /3.5/api/vdostream/html/tab_h.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxisCommunications/acap-documentation/4aa04f185618e66f493453bcd62da1788c3059e4/3.5/api/vdostream/html/tab_h.png -------------------------------------------------------------------------------- /3.5/api/vdostream/html/tab_s.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxisCommunications/acap-documentation/4aa04f185618e66f493453bcd62da1788c3059e4/3.5/api/vdostream/html/tab_s.png -------------------------------------------------------------------------------- /3.5/api/vdostream/html/vdo-buffer_8h__dep__incl.md5: -------------------------------------------------------------------------------- 1 | e98762770c1cb4bd7106da57f52e0e37 -------------------------------------------------------------------------------- /3.5/api/vdostream/html/vdo-buffer_8h__incl.md5: -------------------------------------------------------------------------------- 1 | 2a44876a8828e9155debe50c512c9d85 -------------------------------------------------------------------------------- /3.5/api/vdostream/html/vdo-channel_8h__incl.md5: -------------------------------------------------------------------------------- 1 | ac37c4c20c6ba9c1b2d998ee6ebf067d -------------------------------------------------------------------------------- /3.5/api/vdostream/html/vdo-error_8h__incl.md5: -------------------------------------------------------------------------------- 1 | ce0c8aeb3d504b00d901b039ca894998 -------------------------------------------------------------------------------- /3.5/api/vdostream/html/vdo-frame_8h__dep__incl.md5: -------------------------------------------------------------------------------- 1 | 39c078b21be1a01cde13eb55e4315254 -------------------------------------------------------------------------------- /3.5/api/vdostream/html/vdo-frame_8h__incl.md5: -------------------------------------------------------------------------------- 1 | b3b5b71f1446a7151c4035496e045799 -------------------------------------------------------------------------------- /3.5/api/vdostream/html/vdo-map_8h__dep__incl.md5: -------------------------------------------------------------------------------- 1 | 87654624b276a2caae77b660b469e85d -------------------------------------------------------------------------------- /3.5/api/vdostream/html/vdo-map_8h__incl.md5: -------------------------------------------------------------------------------- 1 | fdaab71c6ca1977e903e42e3fcd5984b -------------------------------------------------------------------------------- /3.5/api/vdostream/html/vdo-stream_8h__incl.md5: -------------------------------------------------------------------------------- 1 | b06ea53ffb67f40bbcbae2be9a9d7e42 -------------------------------------------------------------------------------- /3.5/api/vdostream/html/vdo-types_8h__dep__incl.md5: -------------------------------------------------------------------------------- 1 | 1f901563d03e62b8c5e2cf63a9c86ef6 -------------------------------------------------------------------------------- /3.5/api/vdostream/html/vdo-types_8h__incl.md5: -------------------------------------------------------------------------------- 1 | 8cb0fd841c22947398872b77f851a1f9 -------------------------------------------------------------------------------- /CODEOWNERS: -------------------------------------------------------------------------------- 1 | * @AxisCommunications/acap-documentation-owners 2 | -------------------------------------------------------------------------------- /_includes/footer_custom.html: -------------------------------------------------------------------------------- 1 | {%- if site.copyright_footer -%} 2 |
{{ site.copyright_footer }}
3 | {%- endif -%} 4 | -------------------------------------------------------------------------------- /assets/images/vs-code-manifest-validation1-500x500.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxisCommunications/acap-documentation/4aa04f185618e66f493453bcd62da1788c3059e4/assets/images/vs-code-manifest-validation1-500x500.png -------------------------------------------------------------------------------- /assets/images/vs-code-ms-cpp-extension-332x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxisCommunications/acap-documentation/4aa04f185618e66f493453bcd62da1788c3059e4/assets/images/vs-code-ms-cpp-extension-332x240.png -------------------------------------------------------------------------------- /assets/images/vs-code-ms-cpp-extension.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxisCommunications/acap-documentation/4aa04f185618e66f493453bcd62da1788c3059e4/assets/images/vs-code-ms-cpp-extension.png -------------------------------------------------------------------------------- /assets/logos/acap_312x200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxisCommunications/acap-documentation/4aa04f185618e66f493453bcd62da1788c3059e4/assets/logos/acap_312x200.png -------------------------------------------------------------------------------- /assets/logos/axis-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxisCommunications/acap-documentation/4aa04f185618e66f493453bcd62da1788c3059e4/assets/logos/axis-logo.png -------------------------------------------------------------------------------- /docs/acap-sdk-version-3/api/src/api/axaudio/examples/LICENSE: -------------------------------------------------------------------------------- 1 | Third Party Software Licenses 2 | -------------------------------------------------------------------------------- /docs/acap-sdk-version-3/api/src/api/axaudio/examples/README: -------------------------------------------------------------------------------- 1 | # Note that this example is only valid for devices with capability 2 | # for Audio output (enabled) -------------------------------------------------------------------------------- /docs/acap-sdk-version-3/api/src/api/axaudio/html/bc_s.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxisCommunications/acap-documentation/4aa04f185618e66f493453bcd62da1788c3059e4/docs/acap-sdk-version-3/api/src/api/axaudio/html/bc_s.png -------------------------------------------------------------------------------- /docs/acap-sdk-version-3/api/src/api/axaudio/html/bdwn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxisCommunications/acap-documentation/4aa04f185618e66f493453bcd62da1788c3059e4/docs/acap-sdk-version-3/api/src/api/axaudio/html/bdwn.png -------------------------------------------------------------------------------- /docs/acap-sdk-version-3/api/src/api/axaudio/html/doc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxisCommunications/acap-documentation/4aa04f185618e66f493453bcd62da1788c3059e4/docs/acap-sdk-version-3/api/src/api/axaudio/html/doc.png -------------------------------------------------------------------------------- /docs/acap-sdk-version-3/api/src/api/axaudio/html/examples.js: -------------------------------------------------------------------------------- 1 | var examples = 2 | [ 3 | [ "axaudioexample.c", "axaudioexample_8c-example.html", null ] 4 | ]; -------------------------------------------------------------------------------- /docs/acap-sdk-version-3/api/src/api/axaudio/html/open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxisCommunications/acap-documentation/4aa04f185618e66f493453bcd62da1788c3059e4/docs/acap-sdk-version-3/api/src/api/axaudio/html/open.png -------------------------------------------------------------------------------- /docs/acap-sdk-version-3/api/src/api/axevent/examples/element_item_example/LICENSE: -------------------------------------------------------------------------------- 1 | Third Party Software Licenses 2 | -------------------------------------------------------------------------------- /docs/acap-sdk-version-3/api/src/api/axevent/examples/key_value_set_example1/LICENSE: -------------------------------------------------------------------------------- 1 | Third Party Software Licenses 2 | -------------------------------------------------------------------------------- /docs/acap-sdk-version-3/api/src/api/axevent/examples/key_value_set_example2/LICENSE: -------------------------------------------------------------------------------- 1 | Third Party Software Licenses 2 | -------------------------------------------------------------------------------- /docs/acap-sdk-version-3/api/src/api/axevent/examples/property_state_declaration_example/LICENSE: -------------------------------------------------------------------------------- 1 | Third Party Software Licenses 2 | -------------------------------------------------------------------------------- /docs/acap-sdk-version-3/api/src/api/axevent/examples/property_state_declaration_from_template_example/LICENSE: -------------------------------------------------------------------------------- 1 | Third Party Software Licenses 2 | -------------------------------------------------------------------------------- /docs/acap-sdk-version-3/api/src/api/axevent/examples/send_event_example/LICENSE: -------------------------------------------------------------------------------- 1 | Third Party Software Licenses 2 | -------------------------------------------------------------------------------- /docs/acap-sdk-version-3/api/src/api/axevent/examples/stateless_declaration_example/LICENSE: -------------------------------------------------------------------------------- 1 | Third Party Software Licenses 2 | -------------------------------------------------------------------------------- /docs/acap-sdk-version-3/api/src/api/axevent/examples/stateless_declaration_from_template_example/LICENSE: -------------------------------------------------------------------------------- 1 | Third Party Software Licenses 2 | -------------------------------------------------------------------------------- /docs/acap-sdk-version-3/api/src/api/axevent/examples/subscription_example/LICENSE: -------------------------------------------------------------------------------- 1 | Third Party Software Licenses 2 | -------------------------------------------------------------------------------- /docs/acap-sdk-version-3/api/src/api/axevent/html/bc_s.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxisCommunications/acap-documentation/4aa04f185618e66f493453bcd62da1788c3059e4/docs/acap-sdk-version-3/api/src/api/axevent/html/bc_s.png -------------------------------------------------------------------------------- /docs/acap-sdk-version-3/api/src/api/axevent/html/bdwn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxisCommunications/acap-documentation/4aa04f185618e66f493453bcd62da1788c3059e4/docs/acap-sdk-version-3/api/src/api/axevent/html/bdwn.png -------------------------------------------------------------------------------- /docs/acap-sdk-version-3/api/src/api/axevent/html/doc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxisCommunications/acap-documentation/4aa04f185618e66f493453bcd62da1788c3059e4/docs/acap-sdk-version-3/api/src/api/axevent/html/doc.png -------------------------------------------------------------------------------- /docs/acap-sdk-version-3/api/src/api/axevent/html/open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxisCommunications/acap-documentation/4aa04f185618e66f493453bcd62da1788c3059e4/docs/acap-sdk-version-3/api/src/api/axevent/html/open.png -------------------------------------------------------------------------------- /docs/acap-sdk-version-3/api/src/api/axhttp/examples/LICENSE: -------------------------------------------------------------------------------- 1 | Third Party Software Licenses 2 | -------------------------------------------------------------------------------- /docs/acap-sdk-version-3/api/src/api/axhttp/examples/cgi.txt: -------------------------------------------------------------------------------- 1 | administrator /test.cgi 2 | -------------------------------------------------------------------------------- /docs/acap-sdk-version-3/api/src/api/axhttp/html/bc_s.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxisCommunications/acap-documentation/4aa04f185618e66f493453bcd62da1788c3059e4/docs/acap-sdk-version-3/api/src/api/axhttp/html/bc_s.png -------------------------------------------------------------------------------- /docs/acap-sdk-version-3/api/src/api/axhttp/html/bdwn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxisCommunications/acap-documentation/4aa04f185618e66f493453bcd62da1788c3059e4/docs/acap-sdk-version-3/api/src/api/axhttp/html/bdwn.png -------------------------------------------------------------------------------- /docs/acap-sdk-version-3/api/src/api/axhttp/html/doc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxisCommunications/acap-documentation/4aa04f185618e66f493453bcd62da1788c3059e4/docs/acap-sdk-version-3/api/src/api/axhttp/html/doc.png -------------------------------------------------------------------------------- /docs/acap-sdk-version-3/api/src/api/axhttp/html/examples.js: -------------------------------------------------------------------------------- 1 | var examples = 2 | [ 3 | [ "ax_http_serve_request.c", "ax_http_serve_request_8c-example.html", null ] 4 | ]; -------------------------------------------------------------------------------- /docs/acap-sdk-version-3/api/src/api/axhttp/html/nav_f.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxisCommunications/acap-documentation/4aa04f185618e66f493453bcd62da1788c3059e4/docs/acap-sdk-version-3/api/src/api/axhttp/html/nav_f.png -------------------------------------------------------------------------------- /docs/acap-sdk-version-3/api/src/api/axhttp/html/nav_g.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxisCommunications/acap-documentation/4aa04f185618e66f493453bcd62da1788c3059e4/docs/acap-sdk-version-3/api/src/api/axhttp/html/nav_g.png -------------------------------------------------------------------------------- /docs/acap-sdk-version-3/api/src/api/axhttp/html/nav_h.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxisCommunications/acap-documentation/4aa04f185618e66f493453bcd62da1788c3059e4/docs/acap-sdk-version-3/api/src/api/axhttp/html/nav_h.png -------------------------------------------------------------------------------- /docs/acap-sdk-version-3/api/src/api/axhttp/html/open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxisCommunications/acap-documentation/4aa04f185618e66f493453bcd62da1788c3059e4/docs/acap-sdk-version-3/api/src/api/axhttp/html/open.png -------------------------------------------------------------------------------- /docs/acap-sdk-version-3/api/src/api/axhttp/html/tab_a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxisCommunications/acap-documentation/4aa04f185618e66f493453bcd62da1788c3059e4/docs/acap-sdk-version-3/api/src/api/axhttp/html/tab_a.png -------------------------------------------------------------------------------- /docs/acap-sdk-version-3/api/src/api/axhttp/html/tab_b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxisCommunications/acap-documentation/4aa04f185618e66f493453bcd62da1788c3059e4/docs/acap-sdk-version-3/api/src/api/axhttp/html/tab_b.png -------------------------------------------------------------------------------- /docs/acap-sdk-version-3/api/src/api/axhttp/html/tab_h.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxisCommunications/acap-documentation/4aa04f185618e66f493453bcd62da1788c3059e4/docs/acap-sdk-version-3/api/src/api/axhttp/html/tab_h.png -------------------------------------------------------------------------------- /docs/acap-sdk-version-3/api/src/api/axhttp/html/tab_s.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxisCommunications/acap-documentation/4aa04f185618e66f493453bcd62da1788c3059e4/docs/acap-sdk-version-3/api/src/api/axhttp/html/tab_s.png -------------------------------------------------------------------------------- /docs/acap-sdk-version-3/api/src/api/axoverlay/html/axoverlay_8h__incl.md5: -------------------------------------------------------------------------------- 1 | 0c919c87ea3a0b3eb2b9909d8b26b08b -------------------------------------------------------------------------------- /docs/acap-sdk-version-3/api/src/api/axoverlay/html/dir_68267d1309a1af8e8297ef4c3efbcdba.js: -------------------------------------------------------------------------------- 1 | var dir_68267d1309a1af8e8297ef4c3efbcdba = 2 | [ 3 | [ "axoverlay.h", "axoverlay_8h.html", "axoverlay_8h" ] 4 | ]; -------------------------------------------------------------------------------- /docs/acap-sdk-version-3/api/src/api/axoverlay/html/files.js: -------------------------------------------------------------------------------- 1 | var files = 2 | [ 3 | [ "src", "dir_68267d1309a1af8e8297ef4c3efbcdba.html", "dir_68267d1309a1af8e8297ef4c3efbcdba" ] 4 | ]; -------------------------------------------------------------------------------- /docs/acap-sdk-version-3/api/src/api/axoverlay/html/graph_legend.md5: -------------------------------------------------------------------------------- 1 | 387ff8eb65306fa251338d3c9bd7bfff -------------------------------------------------------------------------------- /docs/acap-sdk-version-3/api/src/api/axoverlay/html/search/all_3.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['documentation',['Documentation',['../index.html',1,'']]] 4 | ]; 5 | -------------------------------------------------------------------------------- /docs/acap-sdk-version-3/api/src/api/axoverlay/html/search/all_b.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['x',['x',['../structaxoverlay__overlay__data.html#a22fa3d552594bb3849a18616d6ccfdcb',1,'axoverlay_overlay_data']]] 4 | ]; 5 | -------------------------------------------------------------------------------- /docs/acap-sdk-version-3/api/src/api/axoverlay/html/search/all_c.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['y',['y',['../structaxoverlay__overlay__data.html#a9b62dfea0dbb98102fdcc4544e5a6013',1,'axoverlay_overlay_data']]] 4 | ]; 5 | -------------------------------------------------------------------------------- /docs/acap-sdk-version-3/api/src/api/axoverlay/html/search/files_0.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['axoverlay_2eh',['axoverlay.h',['../axoverlay_8h.html',1,'']]] 4 | ]; 5 | -------------------------------------------------------------------------------- /docs/acap-sdk-version-3/api/src/api/axoverlay/html/search/pages_0.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['axoverlay_20c_20api',['Axoverlay C API',['../axoverlaypage.html',1,'']]] 4 | ]; 5 | -------------------------------------------------------------------------------- /docs/acap-sdk-version-3/api/src/api/axoverlay/html/search/pages_1.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['documentation',['Documentation',['../index.html',1,'']]] 4 | ]; 5 | -------------------------------------------------------------------------------- /docs/acap-sdk-version-3/api/src/api/axoverlay/html/structaxoverlay__settings__coll__graph.md5: -------------------------------------------------------------------------------- 1 | 0cf2b51d00effaea32f9a48537d332a0 -------------------------------------------------------------------------------- /docs/acap-sdk-version-3/api/src/api/axparameter/examples/LICENSE: -------------------------------------------------------------------------------- 1 | Third Party Software Licenses 2 | -------------------------------------------------------------------------------- /docs/acap-sdk-version-3/api/src/api/axparameter/examples/param.conf: -------------------------------------------------------------------------------- 1 | # Static parameters. File must end with empty line 2 | StaticParam1="oldvalue" 3 | HiddenParam1="secret" type="hidden:string" 4 | 5 | -------------------------------------------------------------------------------- /docs/acap-sdk-version-3/api/src/api/axparameter/html/examples.js: -------------------------------------------------------------------------------- 1 | var examples = 2 | [ 3 | [ "axparameterexample.c", "axparameterexample_8c-example.html", null ] 4 | ]; -------------------------------------------------------------------------------- /docs/acap-sdk-version-3/api/src/api/axptz/example/LICENSE: -------------------------------------------------------------------------------- 1 | Third Party Software Licenses 2 | -------------------------------------------------------------------------------- /docs/acap-sdk-version-3/api/src/api/axptz/example/README: -------------------------------------------------------------------------------- 1 | # Note that these tests require a PTZ enabled camera to run -------------------------------------------------------------------------------- /docs/acap-sdk-version-3/api/src/api/axptz/html/bc_s.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxisCommunications/acap-documentation/4aa04f185618e66f493453bcd62da1788c3059e4/docs/acap-sdk-version-3/api/src/api/axptz/html/bc_s.png -------------------------------------------------------------------------------- /docs/acap-sdk-version-3/api/src/api/axptz/html/bdwn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxisCommunications/acap-documentation/4aa04f185618e66f493453bcd62da1788c3059e4/docs/acap-sdk-version-3/api/src/api/axptz/html/bdwn.png -------------------------------------------------------------------------------- /docs/acap-sdk-version-3/api/src/api/axptz/html/closed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxisCommunications/acap-documentation/4aa04f185618e66f493453bcd62da1788c3059e4/docs/acap-sdk-version-3/api/src/api/axptz/html/closed.png -------------------------------------------------------------------------------- /docs/acap-sdk-version-3/api/src/api/axptz/html/doc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxisCommunications/acap-documentation/4aa04f185618e66f493453bcd62da1788c3059e4/docs/acap-sdk-version-3/api/src/api/axptz/html/doc.png -------------------------------------------------------------------------------- /docs/acap-sdk-version-3/api/src/api/axptz/html/examples.js: -------------------------------------------------------------------------------- 1 | var examples = 2 | [ 3 | [ "axptzexample.c", "axptzexample_8c-example.html", null ] 4 | ]; -------------------------------------------------------------------------------- /docs/acap-sdk-version-3/api/src/api/axptz/html/nav_f.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxisCommunications/acap-documentation/4aa04f185618e66f493453bcd62da1788c3059e4/docs/acap-sdk-version-3/api/src/api/axptz/html/nav_f.png -------------------------------------------------------------------------------- /docs/acap-sdk-version-3/api/src/api/axptz/html/nav_g.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxisCommunications/acap-documentation/4aa04f185618e66f493453bcd62da1788c3059e4/docs/acap-sdk-version-3/api/src/api/axptz/html/nav_g.png -------------------------------------------------------------------------------- /docs/acap-sdk-version-3/api/src/api/axptz/html/nav_h.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxisCommunications/acap-documentation/4aa04f185618e66f493453bcd62da1788c3059e4/docs/acap-sdk-version-3/api/src/api/axptz/html/nav_h.png -------------------------------------------------------------------------------- /docs/acap-sdk-version-3/api/src/api/axptz/html/open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxisCommunications/acap-documentation/4aa04f185618e66f493453bcd62da1788c3059e4/docs/acap-sdk-version-3/api/src/api/axptz/html/open.png -------------------------------------------------------------------------------- /docs/acap-sdk-version-3/api/src/api/axptz/html/struct__AXPTZ.js: -------------------------------------------------------------------------------- 1 | var struct__AXPTZ = 2 | [ 3 | [ "num_video_channels", "struct__AXPTZ.html#ad72f37ed1978cd6f920a30d4e69b94ad", null ] 4 | ]; -------------------------------------------------------------------------------- /docs/acap-sdk-version-3/api/src/api/axptz/html/tab_a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxisCommunications/acap-documentation/4aa04f185618e66f493453bcd62da1788c3059e4/docs/acap-sdk-version-3/api/src/api/axptz/html/tab_a.png -------------------------------------------------------------------------------- /docs/acap-sdk-version-3/api/src/api/axptz/html/tab_b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxisCommunications/acap-documentation/4aa04f185618e66f493453bcd62da1788c3059e4/docs/acap-sdk-version-3/api/src/api/axptz/html/tab_b.png -------------------------------------------------------------------------------- /docs/acap-sdk-version-3/api/src/api/axptz/html/tab_h.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxisCommunications/acap-documentation/4aa04f185618e66f493453bcd62da1788c3059e4/docs/acap-sdk-version-3/api/src/api/axptz/html/tab_h.png -------------------------------------------------------------------------------- /docs/acap-sdk-version-3/api/src/api/axptz/html/tab_s.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxisCommunications/acap-documentation/4aa04f185618e66f493453bcd62da1788c3059e4/docs/acap-sdk-version-3/api/src/api/axptz/html/tab_s.png -------------------------------------------------------------------------------- /docs/acap-sdk-version-3/api/src/api/axserialport/example_pelco-D/LICENSE: -------------------------------------------------------------------------------- 1 | Third Party Software Licenses 2 | -------------------------------------------------------------------------------- /docs/acap-sdk-version-3/api/src/api/axserialport/examples/LICENSE: -------------------------------------------------------------------------------- 1 | Third Party Software Licenses 2 | -------------------------------------------------------------------------------- /docs/acap-sdk-version-3/api/src/api/axserialport/examples/README: -------------------------------------------------------------------------------- 1 | This code demonstrates the use of the serial port API (axserialport). 2 | Check the SDK documentation for more information. 3 | -------------------------------------------------------------------------------- /docs/acap-sdk-version-3/api/src/api/axserialport/examples_threads/LICENSE: -------------------------------------------------------------------------------- 1 | Third Party Software Licenses 2 | -------------------------------------------------------------------------------- /docs/acap-sdk-version-3/api/src/api/axserialport/examples_threads/README: -------------------------------------------------------------------------------- 1 | This code demonstrates the use of the serial port API (axserialport). 2 | Check the SDK documentation for more information. 3 | -------------------------------------------------------------------------------- /docs/acap-sdk-version-3/api/src/api/axserialport/html/examples.js: -------------------------------------------------------------------------------- 1 | var examples = 2 | [ 3 | [ "axserialport_example.c", "axserialport_example_8c-example.html", null ] 4 | ]; -------------------------------------------------------------------------------- /docs/acap-sdk-version-3/api/src/api/axserialport/html/files.js: -------------------------------------------------------------------------------- 1 | var files = 2 | [ 3 | [ "axserialport.h", "axserialport_8h.html", "axserialport_8h" ] 4 | ]; -------------------------------------------------------------------------------- /docs/acap-sdk-version-3/api/src/api/axstorage/examples/LICENSE: -------------------------------------------------------------------------------- 1 | Third Party Software Licenses 2 | -------------------------------------------------------------------------------- /docs/acap-sdk-version-3/api/src/api/axstorage/html/examples.js: -------------------------------------------------------------------------------- 1 | var examples = 2 | [ 3 | [ "ax_storage_example.c", "ax_storage_example_8c-example.html", null ] 4 | ]; -------------------------------------------------------------------------------- /docs/acap-sdk-version-3/api/src/api/capture/html/bc_s.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxisCommunications/acap-documentation/4aa04f185618e66f493453bcd62da1788c3059e4/docs/acap-sdk-version-3/api/src/api/capture/html/bc_s.png -------------------------------------------------------------------------------- /docs/acap-sdk-version-3/api/src/api/capture/html/bdwn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxisCommunications/acap-documentation/4aa04f185618e66f493453bcd62da1788c3059e4/docs/acap-sdk-version-3/api/src/api/capture/html/bdwn.png -------------------------------------------------------------------------------- /docs/acap-sdk-version-3/api/src/api/capture/html/doc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxisCommunications/acap-documentation/4aa04f185618e66f493453bcd62da1788c3059e4/docs/acap-sdk-version-3/api/src/api/capture/html/doc.png -------------------------------------------------------------------------------- /docs/acap-sdk-version-3/api/src/api/capture/html/files.js: -------------------------------------------------------------------------------- 1 | var files = 2 | [ 3 | [ "capture.h", "capture_8h.html", "capture_8h" ], 4 | [ "capture_native.h", "capture__native_8h.html", "capture__native_8h" ] 5 | ]; -------------------------------------------------------------------------------- /docs/acap-sdk-version-3/api/src/api/capture/html/open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxisCommunications/acap-documentation/4aa04f185618e66f493453bcd62da1788c3059e4/docs/acap-sdk-version-3/api/src/api/capture/html/open.png -------------------------------------------------------------------------------- /docs/acap-sdk-version-3/api/src/api/larod/html/bc_s.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxisCommunications/acap-documentation/4aa04f185618e66f493453bcd62da1788c3059e4/docs/acap-sdk-version-3/api/src/api/larod/html/bc_s.png -------------------------------------------------------------------------------- /docs/acap-sdk-version-3/api/src/api/larod/html/bdwn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxisCommunications/acap-documentation/4aa04f185618e66f493453bcd62da1788c3059e4/docs/acap-sdk-version-3/api/src/api/larod/html/bdwn.png -------------------------------------------------------------------------------- /docs/acap-sdk-version-3/api/src/api/larod/html/closed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxisCommunications/acap-documentation/4aa04f185618e66f493453bcd62da1788c3059e4/docs/acap-sdk-version-3/api/src/api/larod/html/closed.png -------------------------------------------------------------------------------- /docs/acap-sdk-version-3/api/src/api/larod/html/doc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxisCommunications/acap-documentation/4aa04f185618e66f493453bcd62da1788c3059e4/docs/acap-sdk-version-3/api/src/api/larod/html/doc.png -------------------------------------------------------------------------------- /docs/acap-sdk-version-3/api/src/api/larod/html/search/all_0.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['architecture',['Architecture',['../md__opt_builder-doc_larod_doc_architecture.html',1,'']]] 4 | ]; 5 | -------------------------------------------------------------------------------- /docs/acap-sdk-version-3/api/src/api/larod/html/search/all_7.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['overview',['Overview',['../index.html',1,'']]] 4 | ]; 5 | -------------------------------------------------------------------------------- /docs/acap-sdk-version-3/api/src/api/larod/html/search/all_8.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['preprocessing',['Preprocessing',['../md__opt_builder-doc_larod_doc_preprocessing.html',1,'']]] 4 | ]; 5 | -------------------------------------------------------------------------------- /docs/acap-sdk-version-3/api/src/api/larod/html/search/all_a.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['working_20with_20dma_2dbuf',['Working with dma-buf',['../md__opt_builder-doc_larod_doc_dma-buf.html',1,'']]] 4 | ]; 5 | -------------------------------------------------------------------------------- /docs/acap-sdk-version-3/api/src/api/larod/html/search/files_0.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['larod_2eh',['larod.h',['../larod_8h.html',1,'']]] 4 | ]; 5 | -------------------------------------------------------------------------------- /docs/acap-sdk-version-3/api/src/api/larod/html/search/pages_0.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['architecture',['Architecture',['../md__opt_builder-doc_larod_doc_architecture.html',1,'']]] 4 | ]; 5 | -------------------------------------------------------------------------------- /docs/acap-sdk-version-3/api/src/api/larod/html/search/pages_6.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['overview',['Overview',['../index.html',1,'']]] 4 | ]; 5 | -------------------------------------------------------------------------------- /docs/acap-sdk-version-3/api/src/api/larod/html/search/pages_7.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['preprocessing',['Preprocessing',['../md__opt_builder-doc_larod_doc_preprocessing.html',1,'']]] 4 | ]; 5 | -------------------------------------------------------------------------------- /docs/acap-sdk-version-3/api/src/api/larod/html/search/pages_9.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['working_20with_20dma_2dbuf',['Working with dma-buf',['../md__opt_builder-doc_larod_doc_dma-buf.html',1,'']]] 4 | ]; 5 | -------------------------------------------------------------------------------- /docs/acap-sdk-version-3/api/src/api/larod/html/search/variables_0.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['code',['code',['../structlarodError.html#a059162c8307af42fcf322163a3dbdc54',1,'larodError']]] 4 | ]; 5 | -------------------------------------------------------------------------------- /docs/acap-sdk-version-3/api/src/api/larod/html/search/variables_2.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['msg',['msg',['../structlarodError.html#a07fcd04406359c804afc07ae50bd45ce',1,'larodError']]] 4 | ]; 5 | -------------------------------------------------------------------------------- /docs/acap-sdk-version-3/api/src/api/vdostream/html/dir_97aefd0d527b934f1d99a682da8fe6a9_dep.md5: -------------------------------------------------------------------------------- 1 | 2be99119adb253a87537badc1f4f28eb -------------------------------------------------------------------------------- /docs/acap-sdk-version-3/api/src/api/vdostream/html/globals_dup.js: -------------------------------------------------------------------------------- 1 | var globals_dup = 2 | [ 3 | [ "v", "globals.html", null ] 4 | ]; -------------------------------------------------------------------------------- /docs/acap-sdk-version-3/api/src/api/vdostream/html/graph_legend.md5: -------------------------------------------------------------------------------- 1 | 387ff8eb65306fa251338d3c9bd7bfff -------------------------------------------------------------------------------- /docs/acap-sdk-version-3/api/src/api/vdostream/html/search/all_0.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['deprecated_20list',['Deprecated List',['../deprecated.html',1,'']]] 4 | ]; 5 | -------------------------------------------------------------------------------- /docs/acap-sdk-version-3/api/src/api/vdostream/html/search/pages_0.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['deprecated_20list',['Deprecated List',['../deprecated.html',1,'']]] 4 | ]; 5 | -------------------------------------------------------------------------------- /docs/acap-sdk-version-3/api/src/api/vdostream/html/structVdoResolutionSet__coll__graph.md5: -------------------------------------------------------------------------------- 1 | 941ec7f6c6ab381583a4de114802d056 -------------------------------------------------------------------------------- /docs/acap-sdk-version-3/api/src/api/vdostream/html/vdo-buffer_8h__dep__incl.md5: -------------------------------------------------------------------------------- 1 | e98762770c1cb4bd7106da57f52e0e37 -------------------------------------------------------------------------------- /docs/acap-sdk-version-3/api/src/api/vdostream/html/vdo-buffer_8h__incl.md5: -------------------------------------------------------------------------------- 1 | 2a44876a8828e9155debe50c512c9d85 -------------------------------------------------------------------------------- /docs/acap-sdk-version-3/api/src/api/vdostream/html/vdo-channel_8h__incl.md5: -------------------------------------------------------------------------------- 1 | ac37c4c20c6ba9c1b2d998ee6ebf067d -------------------------------------------------------------------------------- /docs/acap-sdk-version-3/api/src/api/vdostream/html/vdo-error_8h__incl.md5: -------------------------------------------------------------------------------- 1 | ce0c8aeb3d504b00d901b039ca894998 -------------------------------------------------------------------------------- /docs/acap-sdk-version-3/api/src/api/vdostream/html/vdo-frame_8h__dep__incl.md5: -------------------------------------------------------------------------------- 1 | 39c078b21be1a01cde13eb55e4315254 -------------------------------------------------------------------------------- /docs/acap-sdk-version-3/api/src/api/vdostream/html/vdo-frame_8h__incl.md5: -------------------------------------------------------------------------------- 1 | b3b5b71f1446a7151c4035496e045799 -------------------------------------------------------------------------------- /docs/acap-sdk-version-3/api/src/api/vdostream/html/vdo-map_8h__dep__incl.md5: -------------------------------------------------------------------------------- 1 | 87654624b276a2caae77b660b469e85d -------------------------------------------------------------------------------- /docs/acap-sdk-version-3/api/src/api/vdostream/html/vdo-map_8h__incl.md5: -------------------------------------------------------------------------------- 1 | fdaab71c6ca1977e903e42e3fcd5984b -------------------------------------------------------------------------------- /docs/acap-sdk-version-3/api/src/api/vdostream/html/vdo-stream_8h__incl.md5: -------------------------------------------------------------------------------- 1 | b06ea53ffb67f40bbcbae2be9a9d7e42 -------------------------------------------------------------------------------- /docs/acap-sdk-version-3/api/src/api/vdostream/html/vdo-types_8h__dep__incl.md5: -------------------------------------------------------------------------------- 1 | 1f901563d03e62b8c5e2cf63a9c86ef6 -------------------------------------------------------------------------------- /docs/acap-sdk-version-3/api/src/api/vdostream/html/vdo-types_8h__incl.md5: -------------------------------------------------------------------------------- 1 | 8cb0fd841c22947398872b77f851a1f9 -------------------------------------------------------------------------------- /docs/api/index.md: -------------------------------------------------------------------------------- 1 | --- 2 | layout: default 3 | title: API 4 | nav_order: 7 5 | has_children: true 6 | permalink: docs/api 7 | redirect_to: https://developer.axis.com/acap/api/native-sdk-api 8 | --- 9 | -------------------------------------------------------------------------------- /docs/api/src/api/axevent/examples/element_item_example/LICENSE: -------------------------------------------------------------------------------- 1 | Third Party Software Licenses 2 | -------------------------------------------------------------------------------- /docs/api/src/api/axevent/examples/key_value_set_example1/LICENSE: -------------------------------------------------------------------------------- 1 | Third Party Software Licenses 2 | -------------------------------------------------------------------------------- /docs/api/src/api/axevent/examples/key_value_set_example2/LICENSE: -------------------------------------------------------------------------------- 1 | Third Party Software Licenses 2 | -------------------------------------------------------------------------------- /docs/api/src/api/axevent/examples/property_state_declaration_example/LICENSE: -------------------------------------------------------------------------------- 1 | Third Party Software Licenses 2 | -------------------------------------------------------------------------------- /docs/api/src/api/axevent/examples/property_state_declaration_from_template_example/LICENSE: -------------------------------------------------------------------------------- 1 | Third Party Software Licenses 2 | -------------------------------------------------------------------------------- /docs/api/src/api/axevent/examples/send_event_example/LICENSE: -------------------------------------------------------------------------------- 1 | Third Party Software Licenses 2 | -------------------------------------------------------------------------------- /docs/api/src/api/axevent/examples/stateless_declaration_example/LICENSE: -------------------------------------------------------------------------------- 1 | Third Party Software Licenses 2 | -------------------------------------------------------------------------------- /docs/api/src/api/axevent/examples/stateless_declaration_from_template_example/LICENSE: -------------------------------------------------------------------------------- 1 | Third Party Software Licenses 2 | -------------------------------------------------------------------------------- /docs/api/src/api/axevent/examples/subscription_example/LICENSE: -------------------------------------------------------------------------------- 1 | Third Party Software Licenses 2 | -------------------------------------------------------------------------------- /docs/api/src/api/axevent/html/axis-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxisCommunications/acap-documentation/4aa04f185618e66f493453bcd62da1788c3059e4/docs/api/src/api/axevent/html/axis-logo.png -------------------------------------------------------------------------------- /docs/api/src/api/axevent/html/bc_s.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxisCommunications/acap-documentation/4aa04f185618e66f493453bcd62da1788c3059e4/docs/api/src/api/axevent/html/bc_s.png -------------------------------------------------------------------------------- /docs/api/src/api/axevent/html/bdwn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxisCommunications/acap-documentation/4aa04f185618e66f493453bcd62da1788c3059e4/docs/api/src/api/axevent/html/bdwn.png -------------------------------------------------------------------------------- /docs/api/src/api/axevent/html/closed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxisCommunications/acap-documentation/4aa04f185618e66f493453bcd62da1788c3059e4/docs/api/src/api/axevent/html/closed.png -------------------------------------------------------------------------------- /docs/api/src/api/axevent/html/doc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxisCommunications/acap-documentation/4aa04f185618e66f493453bcd62da1788c3059e4/docs/api/src/api/axevent/html/doc.png -------------------------------------------------------------------------------- /docs/api/src/api/axevent/html/folderclosed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxisCommunications/acap-documentation/4aa04f185618e66f493453bcd62da1788c3059e4/docs/api/src/api/axevent/html/folderclosed.png -------------------------------------------------------------------------------- /docs/api/src/api/axevent/html/folderopen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxisCommunications/acap-documentation/4aa04f185618e66f493453bcd62da1788c3059e4/docs/api/src/api/axevent/html/folderopen.png -------------------------------------------------------------------------------- /docs/api/src/api/axevent/html/nav_f.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxisCommunications/acap-documentation/4aa04f185618e66f493453bcd62da1788c3059e4/docs/api/src/api/axevent/html/nav_f.png -------------------------------------------------------------------------------- /docs/api/src/api/axevent/html/nav_g.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxisCommunications/acap-documentation/4aa04f185618e66f493453bcd62da1788c3059e4/docs/api/src/api/axevent/html/nav_g.png -------------------------------------------------------------------------------- /docs/api/src/api/axevent/html/nav_h.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxisCommunications/acap-documentation/4aa04f185618e66f493453bcd62da1788c3059e4/docs/api/src/api/axevent/html/nav_h.png -------------------------------------------------------------------------------- /docs/api/src/api/axevent/html/open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxisCommunications/acap-documentation/4aa04f185618e66f493453bcd62da1788c3059e4/docs/api/src/api/axevent/html/open.png -------------------------------------------------------------------------------- /docs/api/src/api/axevent/html/splitbar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxisCommunications/acap-documentation/4aa04f185618e66f493453bcd62da1788c3059e4/docs/api/src/api/axevent/html/splitbar.png -------------------------------------------------------------------------------- /docs/api/src/api/axevent/html/sync_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxisCommunications/acap-documentation/4aa04f185618e66f493453bcd62da1788c3059e4/docs/api/src/api/axevent/html/sync_off.png -------------------------------------------------------------------------------- /docs/api/src/api/axevent/html/sync_on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxisCommunications/acap-documentation/4aa04f185618e66f493453bcd62da1788c3059e4/docs/api/src/api/axevent/html/sync_on.png -------------------------------------------------------------------------------- /docs/api/src/api/axevent/html/tab_a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxisCommunications/acap-documentation/4aa04f185618e66f493453bcd62da1788c3059e4/docs/api/src/api/axevent/html/tab_a.png -------------------------------------------------------------------------------- /docs/api/src/api/axevent/html/tab_b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxisCommunications/acap-documentation/4aa04f185618e66f493453bcd62da1788c3059e4/docs/api/src/api/axevent/html/tab_b.png -------------------------------------------------------------------------------- /docs/api/src/api/axevent/html/tab_h.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxisCommunications/acap-documentation/4aa04f185618e66f493453bcd62da1788c3059e4/docs/api/src/api/axevent/html/tab_h.png -------------------------------------------------------------------------------- /docs/api/src/api/axevent/html/tab_s.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxisCommunications/acap-documentation/4aa04f185618e66f493453bcd62da1788c3059e4/docs/api/src/api/axevent/html/tab_s.png -------------------------------------------------------------------------------- /docs/api/src/api/axoverlay/html/axis-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxisCommunications/acap-documentation/4aa04f185618e66f493453bcd62da1788c3059e4/docs/api/src/api/axoverlay/html/axis-logo.png -------------------------------------------------------------------------------- /docs/api/src/api/axoverlay/html/bc_s.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxisCommunications/acap-documentation/4aa04f185618e66f493453bcd62da1788c3059e4/docs/api/src/api/axoverlay/html/bc_s.png -------------------------------------------------------------------------------- /docs/api/src/api/axoverlay/html/bdwn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxisCommunications/acap-documentation/4aa04f185618e66f493453bcd62da1788c3059e4/docs/api/src/api/axoverlay/html/bdwn.png -------------------------------------------------------------------------------- /docs/api/src/api/axoverlay/html/closed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxisCommunications/acap-documentation/4aa04f185618e66f493453bcd62da1788c3059e4/docs/api/src/api/axoverlay/html/closed.png -------------------------------------------------------------------------------- /docs/api/src/api/axoverlay/html/doc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxisCommunications/acap-documentation/4aa04f185618e66f493453bcd62da1788c3059e4/docs/api/src/api/axoverlay/html/doc.png -------------------------------------------------------------------------------- /docs/api/src/api/axoverlay/html/files_dup.js: -------------------------------------------------------------------------------- 1 | var files_dup = 2 | [ 3 | [ "axoverlay.h", "axoverlay_8h.html", "axoverlay_8h" ] 4 | ]; -------------------------------------------------------------------------------- /docs/api/src/api/axoverlay/html/folderclosed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxisCommunications/acap-documentation/4aa04f185618e66f493453bcd62da1788c3059e4/docs/api/src/api/axoverlay/html/folderclosed.png -------------------------------------------------------------------------------- /docs/api/src/api/axoverlay/html/folderopen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxisCommunications/acap-documentation/4aa04f185618e66f493453bcd62da1788c3059e4/docs/api/src/api/axoverlay/html/folderopen.png -------------------------------------------------------------------------------- /docs/api/src/api/axoverlay/html/nav_f.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxisCommunications/acap-documentation/4aa04f185618e66f493453bcd62da1788c3059e4/docs/api/src/api/axoverlay/html/nav_f.png -------------------------------------------------------------------------------- /docs/api/src/api/axoverlay/html/nav_g.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxisCommunications/acap-documentation/4aa04f185618e66f493453bcd62da1788c3059e4/docs/api/src/api/axoverlay/html/nav_g.png -------------------------------------------------------------------------------- /docs/api/src/api/axoverlay/html/nav_h.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxisCommunications/acap-documentation/4aa04f185618e66f493453bcd62da1788c3059e4/docs/api/src/api/axoverlay/html/nav_h.png -------------------------------------------------------------------------------- /docs/api/src/api/axoverlay/html/open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxisCommunications/acap-documentation/4aa04f185618e66f493453bcd62da1788c3059e4/docs/api/src/api/axoverlay/html/open.png -------------------------------------------------------------------------------- /docs/api/src/api/axoverlay/html/search/all_3.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['green_72',['green',['../structaxoverlay__palette__color.html#a31adfa586bd42b64bc7b3e325cfcb577',1,'axoverlay_palette_color']]] 4 | ]; 5 | -------------------------------------------------------------------------------- /docs/api/src/api/axoverlay/html/search/all_a.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['x_84',['x',['../structaxoverlay__overlay__data.html#a22fa3d552594bb3849a18616d6ccfdcb',1,'axoverlay_overlay_data']]] 4 | ]; 5 | -------------------------------------------------------------------------------- /docs/api/src/api/axoverlay/html/search/all_b.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['y_85',['y',['../structaxoverlay__overlay__data.html#a9b62dfea0dbb98102fdcc4544e5a6013',1,'axoverlay_overlay_data']]] 4 | ]; 5 | -------------------------------------------------------------------------------- /docs/api/src/api/axoverlay/html/search/files_0.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['axoverlay_2eh_91',['axoverlay.h',['../axoverlay_8h.html',1,'']]] 4 | ]; 5 | -------------------------------------------------------------------------------- /docs/api/src/api/axoverlay/html/search/pages_0.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['axoverlay_20c_20api_20version_201_2e0_173',['Axoverlay C API version 1.0',['../axoverlaypage.html',1,'']]] 4 | ]; 5 | -------------------------------------------------------------------------------- /docs/api/src/api/axoverlay/html/search/search_l.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxisCommunications/acap-documentation/4aa04f185618e66f493453bcd62da1788c3059e4/docs/api/src/api/axoverlay/html/search/search_l.png -------------------------------------------------------------------------------- /docs/api/src/api/axoverlay/html/search/search_m.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxisCommunications/acap-documentation/4aa04f185618e66f493453bcd62da1788c3059e4/docs/api/src/api/axoverlay/html/search/search_m.png -------------------------------------------------------------------------------- /docs/api/src/api/axoverlay/html/search/search_r.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxisCommunications/acap-documentation/4aa04f185618e66f493453bcd62da1788c3059e4/docs/api/src/api/axoverlay/html/search/search_r.png -------------------------------------------------------------------------------- /docs/api/src/api/axoverlay/html/search/variables_a.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['x_133',['x',['../structaxoverlay__overlay__data.html#a22fa3d552594bb3849a18616d6ccfdcb',1,'axoverlay_overlay_data']]] 4 | ]; 5 | -------------------------------------------------------------------------------- /docs/api/src/api/axoverlay/html/search/variables_b.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['y_134',['y',['../structaxoverlay__overlay__data.html#a9b62dfea0dbb98102fdcc4544e5a6013',1,'axoverlay_overlay_data']]] 4 | ]; 5 | -------------------------------------------------------------------------------- /docs/api/src/api/axoverlay/html/splitbar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxisCommunications/acap-documentation/4aa04f185618e66f493453bcd62da1788c3059e4/docs/api/src/api/axoverlay/html/splitbar.png -------------------------------------------------------------------------------- /docs/api/src/api/axoverlay/html/sync_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxisCommunications/acap-documentation/4aa04f185618e66f493453bcd62da1788c3059e4/docs/api/src/api/axoverlay/html/sync_off.png -------------------------------------------------------------------------------- /docs/api/src/api/axoverlay/html/sync_on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxisCommunications/acap-documentation/4aa04f185618e66f493453bcd62da1788c3059e4/docs/api/src/api/axoverlay/html/sync_on.png -------------------------------------------------------------------------------- /docs/api/src/api/axoverlay/html/tab_a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxisCommunications/acap-documentation/4aa04f185618e66f493453bcd62da1788c3059e4/docs/api/src/api/axoverlay/html/tab_a.png -------------------------------------------------------------------------------- /docs/api/src/api/axoverlay/html/tab_b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxisCommunications/acap-documentation/4aa04f185618e66f493453bcd62da1788c3059e4/docs/api/src/api/axoverlay/html/tab_b.png -------------------------------------------------------------------------------- /docs/api/src/api/axoverlay/html/tab_h.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxisCommunications/acap-documentation/4aa04f185618e66f493453bcd62da1788c3059e4/docs/api/src/api/axoverlay/html/tab_h.png -------------------------------------------------------------------------------- /docs/api/src/api/axoverlay/html/tab_s.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxisCommunications/acap-documentation/4aa04f185618e66f493453bcd62da1788c3059e4/docs/api/src/api/axoverlay/html/tab_s.png -------------------------------------------------------------------------------- /docs/api/src/api/axparameter/examples/LICENSE: -------------------------------------------------------------------------------- 1 | Third Party Software Licenses 2 | -------------------------------------------------------------------------------- /docs/api/src/api/axparameter/examples/param.conf: -------------------------------------------------------------------------------- 1 | # Static parameters. File must end with empty line 2 | StaticParam1="oldvalue" 3 | HiddenParam1="secret" type="hidden:string" 4 | 5 | -------------------------------------------------------------------------------- /docs/api/src/api/axparameter/html/axis-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxisCommunications/acap-documentation/4aa04f185618e66f493453bcd62da1788c3059e4/docs/api/src/api/axparameter/html/axis-logo.png -------------------------------------------------------------------------------- /docs/api/src/api/axparameter/html/bc_s.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxisCommunications/acap-documentation/4aa04f185618e66f493453bcd62da1788c3059e4/docs/api/src/api/axparameter/html/bc_s.png -------------------------------------------------------------------------------- /docs/api/src/api/axparameter/html/bdwn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxisCommunications/acap-documentation/4aa04f185618e66f493453bcd62da1788c3059e4/docs/api/src/api/axparameter/html/bdwn.png -------------------------------------------------------------------------------- /docs/api/src/api/axparameter/html/closed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxisCommunications/acap-documentation/4aa04f185618e66f493453bcd62da1788c3059e4/docs/api/src/api/axparameter/html/closed.png -------------------------------------------------------------------------------- /docs/api/src/api/axparameter/html/doc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxisCommunications/acap-documentation/4aa04f185618e66f493453bcd62da1788c3059e4/docs/api/src/api/axparameter/html/doc.png -------------------------------------------------------------------------------- /docs/api/src/api/axparameter/html/folderclosed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxisCommunications/acap-documentation/4aa04f185618e66f493453bcd62da1788c3059e4/docs/api/src/api/axparameter/html/folderclosed.png -------------------------------------------------------------------------------- /docs/api/src/api/axparameter/html/folderopen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxisCommunications/acap-documentation/4aa04f185618e66f493453bcd62da1788c3059e4/docs/api/src/api/axparameter/html/folderopen.png -------------------------------------------------------------------------------- /docs/api/src/api/axparameter/html/nav_f.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxisCommunications/acap-documentation/4aa04f185618e66f493453bcd62da1788c3059e4/docs/api/src/api/axparameter/html/nav_f.png -------------------------------------------------------------------------------- /docs/api/src/api/axparameter/html/nav_g.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxisCommunications/acap-documentation/4aa04f185618e66f493453bcd62da1788c3059e4/docs/api/src/api/axparameter/html/nav_g.png -------------------------------------------------------------------------------- /docs/api/src/api/axparameter/html/nav_h.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxisCommunications/acap-documentation/4aa04f185618e66f493453bcd62da1788c3059e4/docs/api/src/api/axparameter/html/nav_h.png -------------------------------------------------------------------------------- /docs/api/src/api/axparameter/html/open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxisCommunications/acap-documentation/4aa04f185618e66f493453bcd62da1788c3059e4/docs/api/src/api/axparameter/html/open.png -------------------------------------------------------------------------------- /docs/api/src/api/axparameter/html/splitbar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxisCommunications/acap-documentation/4aa04f185618e66f493453bcd62da1788c3059e4/docs/api/src/api/axparameter/html/splitbar.png -------------------------------------------------------------------------------- /docs/api/src/api/axparameter/html/sync_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxisCommunications/acap-documentation/4aa04f185618e66f493453bcd62da1788c3059e4/docs/api/src/api/axparameter/html/sync_off.png -------------------------------------------------------------------------------- /docs/api/src/api/axparameter/html/sync_on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxisCommunications/acap-documentation/4aa04f185618e66f493453bcd62da1788c3059e4/docs/api/src/api/axparameter/html/sync_on.png -------------------------------------------------------------------------------- /docs/api/src/api/axparameter/html/tab_a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxisCommunications/acap-documentation/4aa04f185618e66f493453bcd62da1788c3059e4/docs/api/src/api/axparameter/html/tab_a.png -------------------------------------------------------------------------------- /docs/api/src/api/axparameter/html/tab_b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxisCommunications/acap-documentation/4aa04f185618e66f493453bcd62da1788c3059e4/docs/api/src/api/axparameter/html/tab_b.png -------------------------------------------------------------------------------- /docs/api/src/api/axparameter/html/tab_h.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxisCommunications/acap-documentation/4aa04f185618e66f493453bcd62da1788c3059e4/docs/api/src/api/axparameter/html/tab_h.png -------------------------------------------------------------------------------- /docs/api/src/api/axparameter/html/tab_s.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxisCommunications/acap-documentation/4aa04f185618e66f493453bcd62da1788c3059e4/docs/api/src/api/axparameter/html/tab_s.png -------------------------------------------------------------------------------- /docs/api/src/api/axserialport/example_pelco-D/LICENSE: -------------------------------------------------------------------------------- 1 | Third Party Software Licenses 2 | -------------------------------------------------------------------------------- /docs/api/src/api/axserialport/examples/LICENSE: -------------------------------------------------------------------------------- 1 | Third Party Software Licenses 2 | -------------------------------------------------------------------------------- /docs/api/src/api/axserialport/examples/README: -------------------------------------------------------------------------------- 1 | This code demonstrates the use of the serial port API (axserialport). 2 | Check the SDK documentation for more information. 3 | -------------------------------------------------------------------------------- /docs/api/src/api/axserialport/examples_threads/LICENSE: -------------------------------------------------------------------------------- 1 | Third Party Software Licenses 2 | -------------------------------------------------------------------------------- /docs/api/src/api/axserialport/examples_threads/README: -------------------------------------------------------------------------------- 1 | This code demonstrates the use of the serial port API (axserialport). 2 | Check the SDK documentation for more information. 3 | -------------------------------------------------------------------------------- /docs/api/src/api/axserialport/html/axis-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxisCommunications/acap-documentation/4aa04f185618e66f493453bcd62da1788c3059e4/docs/api/src/api/axserialport/html/axis-logo.png -------------------------------------------------------------------------------- /docs/api/src/api/axserialport/html/bc_s.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxisCommunications/acap-documentation/4aa04f185618e66f493453bcd62da1788c3059e4/docs/api/src/api/axserialport/html/bc_s.png -------------------------------------------------------------------------------- /docs/api/src/api/axserialport/html/bdwn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxisCommunications/acap-documentation/4aa04f185618e66f493453bcd62da1788c3059e4/docs/api/src/api/axserialport/html/bdwn.png -------------------------------------------------------------------------------- /docs/api/src/api/axserialport/html/closed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxisCommunications/acap-documentation/4aa04f185618e66f493453bcd62da1788c3059e4/docs/api/src/api/axserialport/html/closed.png -------------------------------------------------------------------------------- /docs/api/src/api/axserialport/html/doc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxisCommunications/acap-documentation/4aa04f185618e66f493453bcd62da1788c3059e4/docs/api/src/api/axserialport/html/doc.png -------------------------------------------------------------------------------- /docs/api/src/api/axserialport/html/examples.js: -------------------------------------------------------------------------------- 1 | var examples = 2 | [ 3 | [ "axserialport_example.c", "axserialport_example_8c-example.html", null ] 4 | ]; -------------------------------------------------------------------------------- /docs/api/src/api/axserialport/html/files_dup.js: -------------------------------------------------------------------------------- 1 | var files_dup = 2 | [ 3 | [ "axserialport.h", "axserialport_8h.html", "axserialport_8h" ] 4 | ]; -------------------------------------------------------------------------------- /docs/api/src/api/axserialport/html/folderclosed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxisCommunications/acap-documentation/4aa04f185618e66f493453bcd62da1788c3059e4/docs/api/src/api/axserialport/html/folderclosed.png -------------------------------------------------------------------------------- /docs/api/src/api/axserialport/html/folderopen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxisCommunications/acap-documentation/4aa04f185618e66f493453bcd62da1788c3059e4/docs/api/src/api/axserialport/html/folderopen.png -------------------------------------------------------------------------------- /docs/api/src/api/axserialport/html/nav_f.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxisCommunications/acap-documentation/4aa04f185618e66f493453bcd62da1788c3059e4/docs/api/src/api/axserialport/html/nav_f.png -------------------------------------------------------------------------------- /docs/api/src/api/axserialport/html/nav_g.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxisCommunications/acap-documentation/4aa04f185618e66f493453bcd62da1788c3059e4/docs/api/src/api/axserialport/html/nav_g.png -------------------------------------------------------------------------------- /docs/api/src/api/axserialport/html/nav_h.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxisCommunications/acap-documentation/4aa04f185618e66f493453bcd62da1788c3059e4/docs/api/src/api/axserialport/html/nav_h.png -------------------------------------------------------------------------------- /docs/api/src/api/axserialport/html/open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxisCommunications/acap-documentation/4aa04f185618e66f493453bcd62da1788c3059e4/docs/api/src/api/axserialport/html/open.png -------------------------------------------------------------------------------- /docs/api/src/api/axserialport/html/splitbar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxisCommunications/acap-documentation/4aa04f185618e66f493453bcd62da1788c3059e4/docs/api/src/api/axserialport/html/splitbar.png -------------------------------------------------------------------------------- /docs/api/src/api/axserialport/html/sync_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxisCommunications/acap-documentation/4aa04f185618e66f493453bcd62da1788c3059e4/docs/api/src/api/axserialport/html/sync_off.png -------------------------------------------------------------------------------- /docs/api/src/api/axserialport/html/sync_on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxisCommunications/acap-documentation/4aa04f185618e66f493453bcd62da1788c3059e4/docs/api/src/api/axserialport/html/sync_on.png -------------------------------------------------------------------------------- /docs/api/src/api/axserialport/html/tab_a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxisCommunications/acap-documentation/4aa04f185618e66f493453bcd62da1788c3059e4/docs/api/src/api/axserialport/html/tab_a.png -------------------------------------------------------------------------------- /docs/api/src/api/axserialport/html/tab_b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxisCommunications/acap-documentation/4aa04f185618e66f493453bcd62da1788c3059e4/docs/api/src/api/axserialport/html/tab_b.png -------------------------------------------------------------------------------- /docs/api/src/api/axserialport/html/tab_h.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxisCommunications/acap-documentation/4aa04f185618e66f493453bcd62da1788c3059e4/docs/api/src/api/axserialport/html/tab_h.png -------------------------------------------------------------------------------- /docs/api/src/api/axserialport/html/tab_s.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxisCommunications/acap-documentation/4aa04f185618e66f493453bcd62da1788c3059e4/docs/api/src/api/axserialport/html/tab_s.png -------------------------------------------------------------------------------- /docs/api/src/api/axstorage/examples/LICENSE: -------------------------------------------------------------------------------- 1 | Third Party Software Licenses 2 | -------------------------------------------------------------------------------- /docs/api/src/api/axstorage/examples/param.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxisCommunications/acap-documentation/4aa04f185618e66f493453bcd62da1788c3059e4/docs/api/src/api/axstorage/examples/param.conf -------------------------------------------------------------------------------- /docs/api/src/api/axstorage/html/axis-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxisCommunications/acap-documentation/4aa04f185618e66f493453bcd62da1788c3059e4/docs/api/src/api/axstorage/html/axis-logo.png -------------------------------------------------------------------------------- /docs/api/src/api/axstorage/html/bc_s.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxisCommunications/acap-documentation/4aa04f185618e66f493453bcd62da1788c3059e4/docs/api/src/api/axstorage/html/bc_s.png -------------------------------------------------------------------------------- /docs/api/src/api/axstorage/html/bdwn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxisCommunications/acap-documentation/4aa04f185618e66f493453bcd62da1788c3059e4/docs/api/src/api/axstorage/html/bdwn.png -------------------------------------------------------------------------------- /docs/api/src/api/axstorage/html/closed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxisCommunications/acap-documentation/4aa04f185618e66f493453bcd62da1788c3059e4/docs/api/src/api/axstorage/html/closed.png -------------------------------------------------------------------------------- /docs/api/src/api/axstorage/html/doc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxisCommunications/acap-documentation/4aa04f185618e66f493453bcd62da1788c3059e4/docs/api/src/api/axstorage/html/doc.png -------------------------------------------------------------------------------- /docs/api/src/api/axstorage/html/examples.js: -------------------------------------------------------------------------------- 1 | var examples = 2 | [ 3 | [ "ax_storage_example.c", "ax_storage_example_8c-example.html", null ] 4 | ]; -------------------------------------------------------------------------------- /docs/api/src/api/axstorage/html/folderclosed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxisCommunications/acap-documentation/4aa04f185618e66f493453bcd62da1788c3059e4/docs/api/src/api/axstorage/html/folderclosed.png -------------------------------------------------------------------------------- /docs/api/src/api/axstorage/html/folderopen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxisCommunications/acap-documentation/4aa04f185618e66f493453bcd62da1788c3059e4/docs/api/src/api/axstorage/html/folderopen.png -------------------------------------------------------------------------------- /docs/api/src/api/axstorage/html/nav_f.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxisCommunications/acap-documentation/4aa04f185618e66f493453bcd62da1788c3059e4/docs/api/src/api/axstorage/html/nav_f.png -------------------------------------------------------------------------------- /docs/api/src/api/axstorage/html/nav_g.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxisCommunications/acap-documentation/4aa04f185618e66f493453bcd62da1788c3059e4/docs/api/src/api/axstorage/html/nav_g.png -------------------------------------------------------------------------------- /docs/api/src/api/axstorage/html/nav_h.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxisCommunications/acap-documentation/4aa04f185618e66f493453bcd62da1788c3059e4/docs/api/src/api/axstorage/html/nav_h.png -------------------------------------------------------------------------------- /docs/api/src/api/axstorage/html/open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxisCommunications/acap-documentation/4aa04f185618e66f493453bcd62da1788c3059e4/docs/api/src/api/axstorage/html/open.png -------------------------------------------------------------------------------- /docs/api/src/api/axstorage/html/splitbar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxisCommunications/acap-documentation/4aa04f185618e66f493453bcd62da1788c3059e4/docs/api/src/api/axstorage/html/splitbar.png -------------------------------------------------------------------------------- /docs/api/src/api/axstorage/html/sync_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxisCommunications/acap-documentation/4aa04f185618e66f493453bcd62da1788c3059e4/docs/api/src/api/axstorage/html/sync_off.png -------------------------------------------------------------------------------- /docs/api/src/api/axstorage/html/sync_on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxisCommunications/acap-documentation/4aa04f185618e66f493453bcd62da1788c3059e4/docs/api/src/api/axstorage/html/sync_on.png -------------------------------------------------------------------------------- /docs/api/src/api/axstorage/html/tab_a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxisCommunications/acap-documentation/4aa04f185618e66f493453bcd62da1788c3059e4/docs/api/src/api/axstorage/html/tab_a.png -------------------------------------------------------------------------------- /docs/api/src/api/axstorage/html/tab_b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxisCommunications/acap-documentation/4aa04f185618e66f493453bcd62da1788c3059e4/docs/api/src/api/axstorage/html/tab_b.png -------------------------------------------------------------------------------- /docs/api/src/api/axstorage/html/tab_h.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxisCommunications/acap-documentation/4aa04f185618e66f493453bcd62da1788c3059e4/docs/api/src/api/axstorage/html/tab_h.png -------------------------------------------------------------------------------- /docs/api/src/api/axstorage/html/tab_s.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxisCommunications/acap-documentation/4aa04f185618e66f493453bcd62da1788c3059e4/docs/api/src/api/axstorage/html/tab_s.png -------------------------------------------------------------------------------- /docs/api/src/api/bbox/html/bc_s.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxisCommunications/acap-documentation/4aa04f185618e66f493453bcd62da1788c3059e4/docs/api/src/api/bbox/html/bc_s.png -------------------------------------------------------------------------------- /docs/api/src/api/bbox/html/bdwn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxisCommunications/acap-documentation/4aa04f185618e66f493453bcd62da1788c3059e4/docs/api/src/api/bbox/html/bdwn.png -------------------------------------------------------------------------------- /docs/api/src/api/bbox/html/closed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxisCommunications/acap-documentation/4aa04f185618e66f493453bcd62da1788c3059e4/docs/api/src/api/bbox/html/closed.png -------------------------------------------------------------------------------- /docs/api/src/api/bbox/html/doc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxisCommunications/acap-documentation/4aa04f185618e66f493453bcd62da1788c3059e4/docs/api/src/api/bbox/html/doc.png -------------------------------------------------------------------------------- /docs/api/src/api/bbox/html/files_dup.js: -------------------------------------------------------------------------------- 1 | var files_dup = 2 | [ 3 | [ "bbox.h", "bbox_8h.html", "bbox_8h" ] 4 | ]; -------------------------------------------------------------------------------- /docs/api/src/api/bbox/html/folderclosed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxisCommunications/acap-documentation/4aa04f185618e66f493453bcd62da1788c3059e4/docs/api/src/api/bbox/html/folderclosed.png -------------------------------------------------------------------------------- /docs/api/src/api/bbox/html/folderopen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxisCommunications/acap-documentation/4aa04f185618e66f493453bcd62da1788c3059e4/docs/api/src/api/bbox/html/folderopen.png -------------------------------------------------------------------------------- /docs/api/src/api/bbox/html/nav_f.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxisCommunications/acap-documentation/4aa04f185618e66f493453bcd62da1788c3059e4/docs/api/src/api/bbox/html/nav_f.png -------------------------------------------------------------------------------- /docs/api/src/api/bbox/html/nav_g.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxisCommunications/acap-documentation/4aa04f185618e66f493453bcd62da1788c3059e4/docs/api/src/api/bbox/html/nav_g.png -------------------------------------------------------------------------------- /docs/api/src/api/bbox/html/nav_h.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxisCommunications/acap-documentation/4aa04f185618e66f493453bcd62da1788c3059e4/docs/api/src/api/bbox/html/nav_h.png -------------------------------------------------------------------------------- /docs/api/src/api/bbox/html/open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxisCommunications/acap-documentation/4aa04f185618e66f493453bcd62da1788c3059e4/docs/api/src/api/bbox/html/open.png -------------------------------------------------------------------------------- /docs/api/src/api/bbox/html/search/files_0.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['bbox_2eh_23',['bbox.h',['../bbox_8h.html',1,'']]] 4 | ]; 5 | -------------------------------------------------------------------------------- /docs/api/src/api/bbox/html/search/search_l.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxisCommunications/acap-documentation/4aa04f185618e66f493453bcd62da1788c3059e4/docs/api/src/api/bbox/html/search/search_l.png -------------------------------------------------------------------------------- /docs/api/src/api/bbox/html/search/search_m.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxisCommunications/acap-documentation/4aa04f185618e66f493453bcd62da1788c3059e4/docs/api/src/api/bbox/html/search/search_m.png -------------------------------------------------------------------------------- /docs/api/src/api/bbox/html/search/search_r.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxisCommunications/acap-documentation/4aa04f185618e66f493453bcd62da1788c3059e4/docs/api/src/api/bbox/html/search/search_r.png -------------------------------------------------------------------------------- /docs/api/src/api/bbox/html/splitbar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxisCommunications/acap-documentation/4aa04f185618e66f493453bcd62da1788c3059e4/docs/api/src/api/bbox/html/splitbar.png -------------------------------------------------------------------------------- /docs/api/src/api/bbox/html/sync_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxisCommunications/acap-documentation/4aa04f185618e66f493453bcd62da1788c3059e4/docs/api/src/api/bbox/html/sync_off.png -------------------------------------------------------------------------------- /docs/api/src/api/bbox/html/sync_on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxisCommunications/acap-documentation/4aa04f185618e66f493453bcd62da1788c3059e4/docs/api/src/api/bbox/html/sync_on.png -------------------------------------------------------------------------------- /docs/api/src/api/bbox/html/tab_a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxisCommunications/acap-documentation/4aa04f185618e66f493453bcd62da1788c3059e4/docs/api/src/api/bbox/html/tab_a.png -------------------------------------------------------------------------------- /docs/api/src/api/bbox/html/tab_b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxisCommunications/acap-documentation/4aa04f185618e66f493453bcd62da1788c3059e4/docs/api/src/api/bbox/html/tab_b.png -------------------------------------------------------------------------------- /docs/api/src/api/bbox/html/tab_h.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxisCommunications/acap-documentation/4aa04f185618e66f493453bcd62da1788c3059e4/docs/api/src/api/bbox/html/tab_h.png -------------------------------------------------------------------------------- /docs/api/src/api/bbox/html/tab_s.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxisCommunications/acap-documentation/4aa04f185618e66f493453bcd62da1788c3059e4/docs/api/src/api/bbox/html/tab_s.png -------------------------------------------------------------------------------- /docs/api/src/api/larod/html/axis-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxisCommunications/acap-documentation/4aa04f185618e66f493453bcd62da1788c3059e4/docs/api/src/api/larod/html/axis-logo.png -------------------------------------------------------------------------------- /docs/api/src/api/larod/html/bc_s.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxisCommunications/acap-documentation/4aa04f185618e66f493453bcd62da1788c3059e4/docs/api/src/api/larod/html/bc_s.png -------------------------------------------------------------------------------- /docs/api/src/api/larod/html/bdwn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxisCommunications/acap-documentation/4aa04f185618e66f493453bcd62da1788c3059e4/docs/api/src/api/larod/html/bdwn.png -------------------------------------------------------------------------------- /docs/api/src/api/larod/html/closed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxisCommunications/acap-documentation/4aa04f185618e66f493453bcd62da1788c3059e4/docs/api/src/api/larod/html/closed.png -------------------------------------------------------------------------------- /docs/api/src/api/larod/html/doc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxisCommunications/acap-documentation/4aa04f185618e66f493453bcd62da1788c3059e4/docs/api/src/api/larod/html/doc.png -------------------------------------------------------------------------------- /docs/api/src/api/larod/html/doxygen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxisCommunications/acap-documentation/4aa04f185618e66f493453bcd62da1788c3059e4/docs/api/src/api/larod/html/doxygen.png -------------------------------------------------------------------------------- /docs/api/src/api/larod/html/folderclosed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxisCommunications/acap-documentation/4aa04f185618e66f493453bcd62da1788c3059e4/docs/api/src/api/larod/html/folderclosed.png -------------------------------------------------------------------------------- /docs/api/src/api/larod/html/folderopen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxisCommunications/acap-documentation/4aa04f185618e66f493453bcd62da1788c3059e4/docs/api/src/api/larod/html/folderopen.png -------------------------------------------------------------------------------- /docs/api/src/api/larod/html/nav_f.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxisCommunications/acap-documentation/4aa04f185618e66f493453bcd62da1788c3059e4/docs/api/src/api/larod/html/nav_f.png -------------------------------------------------------------------------------- /docs/api/src/api/larod/html/nav_g.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxisCommunications/acap-documentation/4aa04f185618e66f493453bcd62da1788c3059e4/docs/api/src/api/larod/html/nav_g.png -------------------------------------------------------------------------------- /docs/api/src/api/larod/html/nav_h.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxisCommunications/acap-documentation/4aa04f185618e66f493453bcd62da1788c3059e4/docs/api/src/api/larod/html/nav_h.png -------------------------------------------------------------------------------- /docs/api/src/api/larod/html/open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxisCommunications/acap-documentation/4aa04f185618e66f493453bcd62da1788c3059e4/docs/api/src/api/larod/html/open.png -------------------------------------------------------------------------------- /docs/api/src/api/larod/html/search/all_0.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['architecture',['Architecture',['../md__opt_builder-doc_larod_doc_architecture.html',1,'']]] 4 | ]; 5 | -------------------------------------------------------------------------------- /docs/api/src/api/larod/html/search/all_7.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['neural_20network_20inference',['Neural Network Inference',['../md__opt_builder-doc_larod_doc_nn-inference.html',1,'']]] 4 | ]; 5 | -------------------------------------------------------------------------------- /docs/api/src/api/larod/html/search/all_8.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['overview',['Overview',['../index.html',1,'']]] 4 | ]; 5 | -------------------------------------------------------------------------------- /docs/api/src/api/larod/html/search/all_9.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['preprocessing',['Preprocessing',['../md__opt_builder-doc_larod_doc_preprocessing.html',1,'']]] 4 | ]; 5 | -------------------------------------------------------------------------------- /docs/api/src/api/larod/html/search/all_a.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['the_20larod_2dclient_20tool',['The larod-client tool',['../md__opt_builder-doc_larod_doc_larod-client.html',1,'']]] 4 | ]; 5 | -------------------------------------------------------------------------------- /docs/api/src/api/larod/html/search/all_b.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['working_20with_20dma_2dbuf',['Working with dma-buf',['../md__opt_builder-doc_larod_doc_dma-buf.html',1,'']]] 4 | ]; 5 | -------------------------------------------------------------------------------- /docs/api/src/api/larod/html/search/close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxisCommunications/acap-documentation/4aa04f185618e66f493453bcd62da1788c3059e4/docs/api/src/api/larod/html/search/close.png -------------------------------------------------------------------------------- /docs/api/src/api/larod/html/search/files_0.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['larod_2eh',['larod.h',['../larod_8h.html',1,'']]] 4 | ]; 5 | -------------------------------------------------------------------------------- /docs/api/src/api/larod/html/search/mag_sel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxisCommunications/acap-documentation/4aa04f185618e66f493453bcd62da1788c3059e4/docs/api/src/api/larod/html/search/mag_sel.png -------------------------------------------------------------------------------- /docs/api/src/api/larod/html/search/pages_0.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['architecture',['Architecture',['../md__opt_builder-doc_larod_doc_architecture.html',1,'']]] 4 | ]; 5 | -------------------------------------------------------------------------------- /docs/api/src/api/larod/html/search/pages_1.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['changes_20in_20the_20larod_20api',['Changes in the larod API',['../md__opt_builder-doc_larod_doc_api-changes.html',1,'']]] 4 | ]; 5 | -------------------------------------------------------------------------------- /docs/api/src/api/larod/html/search/pages_6.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['neural_20network_20inference',['Neural Network Inference',['../md__opt_builder-doc_larod_doc_nn-inference.html',1,'']]] 4 | ]; 5 | -------------------------------------------------------------------------------- /docs/api/src/api/larod/html/search/pages_7.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['overview',['Overview',['../index.html',1,'']]] 4 | ]; 5 | -------------------------------------------------------------------------------- /docs/api/src/api/larod/html/search/pages_8.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['preprocessing',['Preprocessing',['../md__opt_builder-doc_larod_doc_preprocessing.html',1,'']]] 4 | ]; 5 | -------------------------------------------------------------------------------- /docs/api/src/api/larod/html/search/pages_9.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['the_20larod_2dclient_20tool',['The larod-client tool',['../md__opt_builder-doc_larod_doc_larod-client.html',1,'']]] 4 | ]; 5 | -------------------------------------------------------------------------------- /docs/api/src/api/larod/html/search/pages_a.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['working_20with_20dma_2dbuf',['Working with dma-buf',['../md__opt_builder-doc_larod_doc_dma-buf.html',1,'']]] 4 | ]; 5 | -------------------------------------------------------------------------------- /docs/api/src/api/larod/html/search/search_l.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxisCommunications/acap-documentation/4aa04f185618e66f493453bcd62da1788c3059e4/docs/api/src/api/larod/html/search/search_l.png -------------------------------------------------------------------------------- /docs/api/src/api/larod/html/search/search_m.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxisCommunications/acap-documentation/4aa04f185618e66f493453bcd62da1788c3059e4/docs/api/src/api/larod/html/search/search_m.png -------------------------------------------------------------------------------- /docs/api/src/api/larod/html/search/search_r.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxisCommunications/acap-documentation/4aa04f185618e66f493453bcd62da1788c3059e4/docs/api/src/api/larod/html/search/search_r.png -------------------------------------------------------------------------------- /docs/api/src/api/larod/html/search/variables_0.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['code',['code',['../structlarodError.html#a059162c8307af42fcf322163a3dbdc54',1,'larodError']]] 4 | ]; 5 | -------------------------------------------------------------------------------- /docs/api/src/api/larod/html/search/variables_2.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['msg',['msg',['../structlarodError.html#a07fcd04406359c804afc07ae50bd45ce',1,'larodError']]] 4 | ]; 5 | -------------------------------------------------------------------------------- /docs/api/src/api/larod/html/splitbar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxisCommunications/acap-documentation/4aa04f185618e66f493453bcd62da1788c3059e4/docs/api/src/api/larod/html/splitbar.png -------------------------------------------------------------------------------- /docs/api/src/api/larod/html/sync_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxisCommunications/acap-documentation/4aa04f185618e66f493453bcd62da1788c3059e4/docs/api/src/api/larod/html/sync_off.png -------------------------------------------------------------------------------- /docs/api/src/api/larod/html/sync_on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxisCommunications/acap-documentation/4aa04f185618e66f493453bcd62da1788c3059e4/docs/api/src/api/larod/html/sync_on.png -------------------------------------------------------------------------------- /docs/api/src/api/larod/html/tab_a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxisCommunications/acap-documentation/4aa04f185618e66f493453bcd62da1788c3059e4/docs/api/src/api/larod/html/tab_a.png -------------------------------------------------------------------------------- /docs/api/src/api/larod/html/tab_b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxisCommunications/acap-documentation/4aa04f185618e66f493453bcd62da1788c3059e4/docs/api/src/api/larod/html/tab_b.png -------------------------------------------------------------------------------- /docs/api/src/api/larod/html/tab_h.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxisCommunications/acap-documentation/4aa04f185618e66f493453bcd62da1788c3059e4/docs/api/src/api/larod/html/tab_h.png -------------------------------------------------------------------------------- /docs/api/src/api/larod/html/tab_s.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxisCommunications/acap-documentation/4aa04f185618e66f493453bcd62da1788c3059e4/docs/api/src/api/larod/html/tab_s.png -------------------------------------------------------------------------------- /docs/api/src/api/licensekey/html/axis-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxisCommunications/acap-documentation/4aa04f185618e66f493453bcd62da1788c3059e4/docs/api/src/api/licensekey/html/axis-logo.png -------------------------------------------------------------------------------- /docs/api/src/api/licensekey/html/bc_s.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxisCommunications/acap-documentation/4aa04f185618e66f493453bcd62da1788c3059e4/docs/api/src/api/licensekey/html/bc_s.png -------------------------------------------------------------------------------- /docs/api/src/api/licensekey/html/bdwn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxisCommunications/acap-documentation/4aa04f185618e66f493453bcd62da1788c3059e4/docs/api/src/api/licensekey/html/bdwn.png -------------------------------------------------------------------------------- /docs/api/src/api/licensekey/html/closed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxisCommunications/acap-documentation/4aa04f185618e66f493453bcd62da1788c3059e4/docs/api/src/api/licensekey/html/closed.png -------------------------------------------------------------------------------- /docs/api/src/api/licensekey/html/doc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxisCommunications/acap-documentation/4aa04f185618e66f493453bcd62da1788c3059e4/docs/api/src/api/licensekey/html/doc.png -------------------------------------------------------------------------------- /docs/api/src/api/licensekey/html/folderclosed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxisCommunications/acap-documentation/4aa04f185618e66f493453bcd62da1788c3059e4/docs/api/src/api/licensekey/html/folderclosed.png -------------------------------------------------------------------------------- /docs/api/src/api/licensekey/html/folderopen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxisCommunications/acap-documentation/4aa04f185618e66f493453bcd62da1788c3059e4/docs/api/src/api/licensekey/html/folderopen.png -------------------------------------------------------------------------------- /docs/api/src/api/licensekey/html/nav_f.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxisCommunications/acap-documentation/4aa04f185618e66f493453bcd62da1788c3059e4/docs/api/src/api/licensekey/html/nav_f.png -------------------------------------------------------------------------------- /docs/api/src/api/licensekey/html/nav_g.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxisCommunications/acap-documentation/4aa04f185618e66f493453bcd62da1788c3059e4/docs/api/src/api/licensekey/html/nav_g.png -------------------------------------------------------------------------------- /docs/api/src/api/licensekey/html/nav_h.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxisCommunications/acap-documentation/4aa04f185618e66f493453bcd62da1788c3059e4/docs/api/src/api/licensekey/html/nav_h.png -------------------------------------------------------------------------------- /docs/api/src/api/licensekey/html/open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxisCommunications/acap-documentation/4aa04f185618e66f493453bcd62da1788c3059e4/docs/api/src/api/licensekey/html/open.png -------------------------------------------------------------------------------- /docs/api/src/api/licensekey/html/splitbar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxisCommunications/acap-documentation/4aa04f185618e66f493453bcd62da1788c3059e4/docs/api/src/api/licensekey/html/splitbar.png -------------------------------------------------------------------------------- /docs/api/src/api/licensekey/html/sync_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxisCommunications/acap-documentation/4aa04f185618e66f493453bcd62da1788c3059e4/docs/api/src/api/licensekey/html/sync_off.png -------------------------------------------------------------------------------- /docs/api/src/api/licensekey/html/sync_on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxisCommunications/acap-documentation/4aa04f185618e66f493453bcd62da1788c3059e4/docs/api/src/api/licensekey/html/sync_on.png -------------------------------------------------------------------------------- /docs/api/src/api/licensekey/html/tab_a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxisCommunications/acap-documentation/4aa04f185618e66f493453bcd62da1788c3059e4/docs/api/src/api/licensekey/html/tab_a.png -------------------------------------------------------------------------------- /docs/api/src/api/licensekey/html/tab_b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxisCommunications/acap-documentation/4aa04f185618e66f493453bcd62da1788c3059e4/docs/api/src/api/licensekey/html/tab_b.png -------------------------------------------------------------------------------- /docs/api/src/api/licensekey/html/tab_h.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxisCommunications/acap-documentation/4aa04f185618e66f493453bcd62da1788c3059e4/docs/api/src/api/licensekey/html/tab_h.png -------------------------------------------------------------------------------- /docs/api/src/api/licensekey/html/tab_s.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxisCommunications/acap-documentation/4aa04f185618e66f493453bcd62da1788c3059e4/docs/api/src/api/licensekey/html/tab_s.png -------------------------------------------------------------------------------- /docs/api/src/api/message-broker/html/axis-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxisCommunications/acap-documentation/4aa04f185618e66f493453bcd62da1788c3059e4/docs/api/src/api/message-broker/html/axis-logo.png -------------------------------------------------------------------------------- /docs/api/src/api/message-broker/html/bc_s.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxisCommunications/acap-documentation/4aa04f185618e66f493453bcd62da1788c3059e4/docs/api/src/api/message-broker/html/bc_s.png -------------------------------------------------------------------------------- /docs/api/src/api/message-broker/html/bdwn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxisCommunications/acap-documentation/4aa04f185618e66f493453bcd62da1788c3059e4/docs/api/src/api/message-broker/html/bdwn.png -------------------------------------------------------------------------------- /docs/api/src/api/message-broker/html/closed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxisCommunications/acap-documentation/4aa04f185618e66f493453bcd62da1788c3059e4/docs/api/src/api/message-broker/html/closed.png -------------------------------------------------------------------------------- /docs/api/src/api/message-broker/html/doc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxisCommunications/acap-documentation/4aa04f185618e66f493453bcd62da1788c3059e4/docs/api/src/api/message-broker/html/doc.png -------------------------------------------------------------------------------- /docs/api/src/api/message-broker/html/folderclosed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxisCommunications/acap-documentation/4aa04f185618e66f493453bcd62da1788c3059e4/docs/api/src/api/message-broker/html/folderclosed.png -------------------------------------------------------------------------------- /docs/api/src/api/message-broker/html/folderopen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxisCommunications/acap-documentation/4aa04f185618e66f493453bcd62da1788c3059e4/docs/api/src/api/message-broker/html/folderopen.png -------------------------------------------------------------------------------- /docs/api/src/api/message-broker/html/nav_f.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxisCommunications/acap-documentation/4aa04f185618e66f493453bcd62da1788c3059e4/docs/api/src/api/message-broker/html/nav_f.png -------------------------------------------------------------------------------- /docs/api/src/api/message-broker/html/nav_g.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxisCommunications/acap-documentation/4aa04f185618e66f493453bcd62da1788c3059e4/docs/api/src/api/message-broker/html/nav_g.png -------------------------------------------------------------------------------- /docs/api/src/api/message-broker/html/nav_h.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxisCommunications/acap-documentation/4aa04f185618e66f493453bcd62da1788c3059e4/docs/api/src/api/message-broker/html/nav_h.png -------------------------------------------------------------------------------- /docs/api/src/api/message-broker/html/open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxisCommunications/acap-documentation/4aa04f185618e66f493453bcd62da1788c3059e4/docs/api/src/api/message-broker/html/open.png -------------------------------------------------------------------------------- /docs/api/src/api/message-broker/html/search/all_1.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['data_2',['data',['../structmdb__message__payload.html#a032a38f30c1ec5e31eb661560cf87573',1,'mdb_message_payload']]] 4 | ]; 5 | -------------------------------------------------------------------------------- /docs/api/src/api/message-broker/html/search/all_3.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['overview_6',['Overview',['../index.html',1,'']]] 4 | ]; 5 | -------------------------------------------------------------------------------- /docs/api/src/api/message-broker/html/search/all_5.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['terminology_9',['Terminology',['../terminology.html',1,'']]] 4 | ]; 5 | -------------------------------------------------------------------------------- /docs/api/src/api/message-broker/html/search/pages_0.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['changelog_16',['Changelog',['../release_notes.html',1,'']]] 4 | ]; 5 | -------------------------------------------------------------------------------- /docs/api/src/api/message-broker/html/search/pages_1.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['overview_17',['Overview',['../index.html',1,'']]] 4 | ]; 5 | -------------------------------------------------------------------------------- /docs/api/src/api/message-broker/html/search/pages_2.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['standard_20topics_18',['Standard Topics',['../standard_topics.html',1,'']]] 4 | ]; 5 | -------------------------------------------------------------------------------- /docs/api/src/api/message-broker/html/search/pages_3.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['terminology_19',['Terminology',['../terminology.html',1,'']]] 4 | ]; 5 | -------------------------------------------------------------------------------- /docs/api/src/api/message-broker/html/search/variables_0.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['code_12',['code',['../structmdb__error__t.html#aa386a1947f4df28b2651937eca7cf2a7',1,'mdb_error_t']]] 4 | ]; 5 | -------------------------------------------------------------------------------- /docs/api/src/api/message-broker/html/search/variables_1.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['data_13',['data',['../structmdb__message__payload.html#a032a38f30c1ec5e31eb661560cf87573',1,'mdb_message_payload']]] 4 | ]; 5 | -------------------------------------------------------------------------------- /docs/api/src/api/message-broker/html/search/variables_2.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['message_14',['message',['../structmdb__error__t.html#a034a9fa42de41229b57965cc50d53bec',1,'mdb_error_t']]] 4 | ]; 5 | -------------------------------------------------------------------------------- /docs/api/src/api/message-broker/html/search/variables_3.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['size_15',['size',['../structmdb__message__payload.html#ad7617124f3feedd6c426a40f2f1c42d7',1,'mdb_message_payload']]] 4 | ]; 5 | -------------------------------------------------------------------------------- /docs/api/src/api/message-broker/html/splitbar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxisCommunications/acap-documentation/4aa04f185618e66f493453bcd62da1788c3059e4/docs/api/src/api/message-broker/html/splitbar.png -------------------------------------------------------------------------------- /docs/api/src/api/message-broker/html/sync_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxisCommunications/acap-documentation/4aa04f185618e66f493453bcd62da1788c3059e4/docs/api/src/api/message-broker/html/sync_off.png -------------------------------------------------------------------------------- /docs/api/src/api/message-broker/html/sync_on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxisCommunications/acap-documentation/4aa04f185618e66f493453bcd62da1788c3059e4/docs/api/src/api/message-broker/html/sync_on.png -------------------------------------------------------------------------------- /docs/api/src/api/message-broker/html/tab_a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxisCommunications/acap-documentation/4aa04f185618e66f493453bcd62da1788c3059e4/docs/api/src/api/message-broker/html/tab_a.png -------------------------------------------------------------------------------- /docs/api/src/api/message-broker/html/tab_b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxisCommunications/acap-documentation/4aa04f185618e66f493453bcd62da1788c3059e4/docs/api/src/api/message-broker/html/tab_b.png -------------------------------------------------------------------------------- /docs/api/src/api/message-broker/html/tab_h.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxisCommunications/acap-documentation/4aa04f185618e66f493453bcd62da1788c3059e4/docs/api/src/api/message-broker/html/tab_h.png -------------------------------------------------------------------------------- /docs/api/src/api/message-broker/html/tab_s.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxisCommunications/acap-documentation/4aa04f185618e66f493453bcd62da1788c3059e4/docs/api/src/api/message-broker/html/tab_s.png -------------------------------------------------------------------------------- /docs/api/src/api/vdostream/html/bc_s.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxisCommunications/acap-documentation/4aa04f185618e66f493453bcd62da1788c3059e4/docs/api/src/api/vdostream/html/bc_s.png -------------------------------------------------------------------------------- /docs/api/src/api/vdostream/html/bdwn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxisCommunications/acap-documentation/4aa04f185618e66f493453bcd62da1788c3059e4/docs/api/src/api/vdostream/html/bdwn.png -------------------------------------------------------------------------------- /docs/api/src/api/vdostream/html/closed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxisCommunications/acap-documentation/4aa04f185618e66f493453bcd62da1788c3059e4/docs/api/src/api/vdostream/html/closed.png -------------------------------------------------------------------------------- /docs/api/src/api/vdostream/html/doc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxisCommunications/acap-documentation/4aa04f185618e66f493453bcd62da1788c3059e4/docs/api/src/api/vdostream/html/doc.png -------------------------------------------------------------------------------- /docs/api/src/api/vdostream/html/folderclosed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxisCommunications/acap-documentation/4aa04f185618e66f493453bcd62da1788c3059e4/docs/api/src/api/vdostream/html/folderclosed.png -------------------------------------------------------------------------------- /docs/api/src/api/vdostream/html/folderopen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxisCommunications/acap-documentation/4aa04f185618e66f493453bcd62da1788c3059e4/docs/api/src/api/vdostream/html/folderopen.png -------------------------------------------------------------------------------- /docs/api/src/api/vdostream/html/globals_dup.js: -------------------------------------------------------------------------------- 1 | var globals_dup = 2 | [ 3 | [ "v", "globals.html", null ] 4 | ]; -------------------------------------------------------------------------------- /docs/api/src/api/vdostream/html/nav_f.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxisCommunications/acap-documentation/4aa04f185618e66f493453bcd62da1788c3059e4/docs/api/src/api/vdostream/html/nav_f.png -------------------------------------------------------------------------------- /docs/api/src/api/vdostream/html/nav_g.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxisCommunications/acap-documentation/4aa04f185618e66f493453bcd62da1788c3059e4/docs/api/src/api/vdostream/html/nav_g.png -------------------------------------------------------------------------------- /docs/api/src/api/vdostream/html/nav_h.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxisCommunications/acap-documentation/4aa04f185618e66f493453bcd62da1788c3059e4/docs/api/src/api/vdostream/html/nav_h.png -------------------------------------------------------------------------------- /docs/api/src/api/vdostream/html/open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxisCommunications/acap-documentation/4aa04f185618e66f493453bcd62da1788c3059e4/docs/api/src/api/vdostream/html/open.png -------------------------------------------------------------------------------- /docs/api/src/api/vdostream/html/search/all_0.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['deprecated_20list_0',['Deprecated List',['../deprecated.html',1,'']]] 4 | ]; 5 | -------------------------------------------------------------------------------- /docs/api/src/api/vdostream/html/search/pages_0.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['deprecated_20list_561',['Deprecated List',['../deprecated.html',1,'']]] 4 | ]; 5 | -------------------------------------------------------------------------------- /docs/api/src/api/vdostream/html/search/search_l.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxisCommunications/acap-documentation/4aa04f185618e66f493453bcd62da1788c3059e4/docs/api/src/api/vdostream/html/search/search_l.png -------------------------------------------------------------------------------- /docs/api/src/api/vdostream/html/search/search_m.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxisCommunications/acap-documentation/4aa04f185618e66f493453bcd62da1788c3059e4/docs/api/src/api/vdostream/html/search/search_m.png -------------------------------------------------------------------------------- /docs/api/src/api/vdostream/html/search/search_r.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxisCommunications/acap-documentation/4aa04f185618e66f493453bcd62da1788c3059e4/docs/api/src/api/vdostream/html/search/search_r.png -------------------------------------------------------------------------------- /docs/api/src/api/vdostream/html/splitbar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxisCommunications/acap-documentation/4aa04f185618e66f493453bcd62da1788c3059e4/docs/api/src/api/vdostream/html/splitbar.png -------------------------------------------------------------------------------- /docs/api/src/api/vdostream/html/sync_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxisCommunications/acap-documentation/4aa04f185618e66f493453bcd62da1788c3059e4/docs/api/src/api/vdostream/html/sync_off.png -------------------------------------------------------------------------------- /docs/api/src/api/vdostream/html/sync_on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxisCommunications/acap-documentation/4aa04f185618e66f493453bcd62da1788c3059e4/docs/api/src/api/vdostream/html/sync_on.png -------------------------------------------------------------------------------- /docs/api/src/api/vdostream/html/tab_a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxisCommunications/acap-documentation/4aa04f185618e66f493453bcd62da1788c3059e4/docs/api/src/api/vdostream/html/tab_a.png -------------------------------------------------------------------------------- /docs/api/src/api/vdostream/html/tab_b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxisCommunications/acap-documentation/4aa04f185618e66f493453bcd62da1788c3059e4/docs/api/src/api/vdostream/html/tab_b.png -------------------------------------------------------------------------------- /docs/api/src/api/vdostream/html/tab_h.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxisCommunications/acap-documentation/4aa04f185618e66f493453bcd62da1788c3059e4/docs/api/src/api/vdostream/html/tab_h.png -------------------------------------------------------------------------------- /docs/api/src/api/vdostream/html/tab_s.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxisCommunications/acap-documentation/4aa04f185618e66f493453bcd62da1788c3059e4/docs/api/src/api/vdostream/html/tab_s.png -------------------------------------------------------------------------------- /favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxisCommunications/acap-documentation/4aa04f185618e66f493453bcd62da1788c3059e4/favicon.ico --------------------------------------------------------------------------------