Skip to content

Commit 0bba07c

Browse files
committed
video switcher: rebased includes
- do not use confg*h (not needed) - include sys hdrs first
1 parent 9a2d984 commit 0bba07c

File tree

1 file changed

+10
-14
lines changed

1 file changed

+10
-14
lines changed

src/video_capture/switcher.c

+10-14
Original file line numberDiff line numberDiff line change
@@ -34,29 +34,25 @@
3434
* OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,
3535
* EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
3636
*/
37-
#include "config.h"
38-
#include "config_unix.h"
39-
#include "config_win32.h"
4037

38+
#include <assert.h>
39+
#include <errno.h>
40+
#include <inttypes.h>
41+
#include <limits.h>
42+
#include <stdio.h>
43+
#include <stdlib.h>
44+
#include <string.h>
45+
46+
#include "audio/types.h"
4147
#include "debug.h"
42-
#include "host.h"
4348
#include "lib_common.h"
49+
#include "module.h"
4450
#include "utils/color_out.h"
4551
#include "utils/macros.h"
4652
#include "utils/text.h"
4753
#include "video.h"
4854
#include "video_capture.h"
4955

50-
#include "tv.h"
51-
52-
#include "audio/types.h"
53-
#include "module.h"
54-
55-
#include <inttypes.h>
56-
#include <limits.h>
57-
#include <stdio.h>
58-
#include <stdlib.h>
59-
6056
#define MOD_NAME "[switcher] "
6157

6258
/* prototypes of functions defined in this module */

0 commit comments

Comments
 (0)