|
35 | 35 | * EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
36 | 36 | */ |
37 | 37 |
|
| 38 | +#include "video_rxtx/ultragrid_rtp.hpp" |
38 | 39 |
|
39 | | -#ifdef HAVE_CONFIG_H |
40 | | -#include "config.h" |
41 | | -#include "config_unix.h" |
42 | | -#include "config_win32.h" |
43 | | -#endif // HAVE_CONFIG_H |
44 | | - |
45 | | -#include "debug.h" |
46 | | - |
47 | | -#include <sstream> |
48 | | -#include <string> |
49 | | -#include <stdexcept> |
| 40 | +#include <cassert> // for assert |
| 41 | +#include <cstdio> // for fprintf, stderr |
| 42 | +#include <cstdlib> // for free, calloc |
| 43 | +#include <string> // for basic_string, operator<, operator== |
| 44 | +#include <utility> // for pair |
| 45 | +// IWYU pragma: no_include <sys/time.h> # via tv.h |
| 46 | +// IWYU pragma: no_include <iterator> # std::pair is rather in utility |
50 | 47 |
|
51 | 48 | #include "control_socket.h" |
52 | | -#include "export.h" |
| 49 | +#include "debug.h" |
| 50 | +#include "rtp/fec.h" // for fec |
53 | 51 | #include "host.h" |
54 | 52 | #include "lib_common.h" |
55 | 53 | #include "messaging.h" |
56 | | -#include "module.h" |
57 | 54 | #include "pdb.h" |
58 | | -#include "rtp/ldgm.h" |
59 | 55 | #include "rtp/rtp.h" |
60 | | -#include "rtp/rtp_callback.h" |
61 | 56 | #include "rtp/video_decoders.h" |
62 | 57 | #include "rtp/pbuf.h" |
63 | 58 | #include "tfrc.h" |
64 | 59 | #include "transmit.h" |
65 | 60 | #include "tv.h" |
66 | 61 | #include "utils/thread.h" |
67 | | -#include "utils/vf_split.h" |
68 | | -#include "video.h" |
69 | | -#include "video_compress.h" |
70 | | -#include "video_decompress.h" |
71 | 62 | #include "video_display.h" |
72 | 63 | #include "video_rxtx.hpp" |
73 | | -#include "video_rxtx/ultragrid_rtp.hpp" |
74 | 64 | #include "ug_runtime_error.hpp" |
75 | 65 | #include "utils/worker.h" |
76 | 66 |
|
77 | | -#include <chrono> |
78 | | -#include <sstream> |
79 | | -#include <utility> |
80 | | - |
81 | 67 | using namespace std; |
82 | 68 |
|
83 | 69 | ultragrid_rtp_video_rxtx::ultragrid_rtp_video_rxtx(const map<string, param_u> ¶ms) : |
|
0 commit comments