|
3 | 3 | * @author Martin Pulec <[email protected]> |
4 | 4 | */ |
5 | 5 | /* |
6 | | - * Copyright (c) 2014-2021 CESNET, z. s. p. o. |
| 6 | + * Copyright (c) 2014-2025 CESNET |
7 | 7 | * All rights reserved. |
8 | 8 | * |
9 | 9 | * Redistribution and use in source and binary forms, with or without |
|
35 | 35 | * EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
36 | 36 | */ |
37 | 37 |
|
38 | | -#ifdef HAVE_CONFIG_H |
39 | | -#include "config.h" |
40 | | -#include "config_unix.h" |
41 | | -#include "config_win32.h" |
42 | | -#endif /* HAVE_CONFIG_H */ |
43 | | - |
44 | 38 | #include "capture_filter.h" |
45 | | -#include "debug.h" |
46 | | -#include "lib_common.h" |
47 | | -#include "module.h" |
48 | | -#include "utils/color_out.h" |
49 | | -#include "utils/list.h" |
50 | | -#include "video.h" |
| 39 | + |
| 40 | +#include <cassert> // for assert |
| 41 | +#include <cstdio> // for printf, fprintf, stderr |
| 42 | +#include <cstdlib> // for free, NULL, atoi, calloc, malloc |
| 43 | +#include <cstring> // for strchr, strcmp, strdup, strlen, strncmp |
| 44 | + |
| 45 | +#include "compat/strings.h" // for strcasecmp |
| 46 | +#include "lib_common.h" // for get_libraries_for_class, library_class |
| 47 | +#include "messaging.h" // for msg_universal, new_response, RESPONSE_I... |
| 48 | +#include "module.h" // for module, module_done, module_init_default |
| 49 | +#include "utils/color_out.h" // for color_printf, TERM_BOLD, TERM_RESET |
| 50 | +#include "utils/list.h" // for simple_linked_list_pop, simple_linked_l... |
51 | 51 |
|
52 | 52 | using namespace std; |
53 | 53 |
|
|
0 commit comments