Skip to content

Commit

Permalink
video switcher: rebased includes
Browse files Browse the repository at this point in the history
- do not use confg*h (not needed)
- include sys hdrs first
  • Loading branch information
MartinPulec committed Jan 3, 2024
1 parent 9a2d984 commit 0bba07c
Showing 1 changed file with 10 additions and 14 deletions.
24 changes: 10 additions & 14 deletions src/video_capture/switcher.c
Original file line number Diff line number Diff line change
Expand Up @@ -34,29 +34,25 @@
* OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,
* EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
#include "config.h"
#include "config_unix.h"
#include "config_win32.h"

#include <assert.h>
#include <errno.h>
#include <inttypes.h>
#include <limits.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>

#include "audio/types.h"
#include "debug.h"
#include "host.h"
#include "lib_common.h"
#include "module.h"
#include "utils/color_out.h"
#include "utils/macros.h"
#include "utils/text.h"
#include "video.h"
#include "video_capture.h"

#include "tv.h"

#include "audio/types.h"
#include "module.h"

#include <inttypes.h>
#include <limits.h>
#include <stdio.h>
#include <stdlib.h>

#define MOD_NAME "[switcher] "

/* prototypes of functions defined in this module */
Expand Down

0 comments on commit 0bba07c

Please sign in to comment.