Skip to content

Commit 258414b

Browse files
committed
vcomp/cineform: IWYU
1 parent a2c94dc commit 258414b

File tree

1 file changed

+25
-20
lines changed

1 file changed

+25
-20
lines changed

src/video_compress/cineform.cpp

Lines changed: 25 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -40,35 +40,40 @@
4040
*
4141
*/
4242

43-
#ifdef HAVE_CONFIG_H
44-
#include "config.h"
45-
#include "config_unix.h"
46-
#include "config_win32.h"
47-
#endif // HAVE_CONFIG_H
48-
49-
#include "debug.h"
50-
#include "host.h"
51-
#include "lib_common.h"
52-
#include "tv.h"
53-
#include "video_compress.h"
54-
55-
#include <CFHDTypes.h>
43+
#include <cstddef> // CFHD hdrs use size_t w/o include
5644
#include <CFHDEncoder.h>
45+
#include <CFHDError.h> // for CFHD_Error
46+
#include <CFHDTypes.h>
5747

58-
#include "video.h"
59-
#include "video_codec.h"
48+
#include <cassert> // for assert
49+
#include <condition_variable>
50+
#include <cstdint> // for uint32_t
51+
#include <cstdio> // for printf
52+
#include <cstdlib> // for atoi, free
53+
#include <cstring> // for strlen, NULL, memset, size_t, strdup
6054
#include <memory>
61-
#include <map>
6255
#include <mutex>
63-
#include <thread>
64-
#include <vector>
6556
#include <queue>
66-
#include <condition_variable>
57+
#include <string> // for char_traits, basic_string
58+
#include <tuple> // for get, tuple
59+
#include <utility> // for move
60+
#include <vector>
6761

6862
#ifdef MEASUREMENT
6963
#include <time.h>
7064
#endif
71-
#include "utils/misc.h" // to_fourcc
65+
66+
#include "compat/strings.h" // for strncasecmp
67+
#include "debug.h" // for log_msg, LOG_LEVEL_ERROR, LOG, LOG_LEV...
68+
#include "host.h" // for INIT_NOERR
69+
#include "lib_common.h" // for REGISTER_MODULE, library_class
70+
#include "pixfmt_conv.h" // for get_best_decoder_from, decoder_t
71+
#include "tv.h" // for get_time_in_ns
72+
#include "types.h" // for video_desc, tile, video_frame, UYVY, RGB
73+
#include "utils/macros.h" // for TOSTRING, to_fourcc
74+
#include "video_codec.h" // for vc_get_linesize, get_codec_name
75+
#include "video_compress.h" // for codec, module_option, encoder, compres...
76+
#include "video_frame.h" // for vf_free, vf_alloc_desc_data, vf_copy_m...
7277

7378
#define DEFAULT_POOL_SIZE 16
7479
#define DEFAULT_THREAD_COUNT 8

0 commit comments

Comments
 (0)