Skip to content

Commit ef9035b

Browse files
committed
cuda_dxt: ditto
1 parent 8652394 commit ef9035b

File tree

1 file changed

+9
-8
lines changed

1 file changed

+9
-8
lines changed

src/video_compress/cuda_dxt.cpp

Lines changed: 9 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -35,22 +35,23 @@
3535
* EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
3636
*/
3737

38-
#ifdef HAVE_CONFIG_H
39-
#include "config.h"
40-
#include "config_unix.h"
41-
#include "config_win32.h"
42-
#endif // HAVE_CONFIG_H
38+
#include <cstdio> // for printf, fprintf, stderr
39+
#include <cstdlib> // for free, malloc
40+
#include <memory> // for shared_ptr
4341

44-
#include "cuda_dxt/cuda_dxt.h"
42+
#include "../cuda_dxt/cuda_dxt.h"
43+
#include "compat/strings.h" // for strcasecmp
4544
#include "cuda_wrapper.h"
4645
#include "debug.h"
47-
4846
#include "host.h"
4947
#include "lib_common.h"
5048
#include "module.h"
49+
#include "pixfmt_conv.h" // for get_decoder_from_to, decoder_t
50+
#include "types.h" // for tile, video_frame, video_desc
5151
#include "utils/video_frame_pool.h"
52-
#include "video.h"
52+
#include "video_codec.h" // for codec_is_a_rgb, get_bits_per_c...
5353
#include "video_compress.h"
54+
#include "video_frame.h" // for vf_get_tile, video_desc_from_f...
5455

5556
using namespace std;
5657

0 commit comments

Comments
 (0)