-
Notifications
You must be signed in to change notification settings - Fork 57
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Showing
1 changed file
with
12 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,7 +3,7 @@ | |
* @author Martin Pulec <[email protected]> | ||
*/ | ||
/* | ||
* Copyright (c) 2013-2022 CESNET z.s.p.o. | ||
* Copyright (c) 2013-2024 CESNET | ||
* All rights reserved. | ||
* | ||
* Redistribution and use in source and binary forms, with or without | ||
|
@@ -35,20 +35,25 @@ | |
* EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | ||
*/ | ||
|
||
#ifdef HAVE_CONFIG_H | ||
#include "config.h" | ||
#include "config_unix.h" | ||
#include "config_win32.h" | ||
#endif /* HAVE_CONFIG_H */ | ||
|
||
#include <assert.h> // for assert | ||
#include <stdbool.h> // for false, bool, true | ||
#include <stdio.h> // for printf, fprintf, stderr | ||
#include <stdlib.h> // for free, NULL, malloc, atoi, calloc | ||
#include <string.h> // for strlen, strtok_r, strdup | ||
|
||
#include "capture_filter.h" | ||
#include "compat/strings.h" // for strcasecmp | ||
#include "debug.h" | ||
#include "lib_common.h" | ||
#include "pixfmt_conv.h" // for get_decoder_from_to, decoder_t, vc_copyl... | ||
#include "types.h" // for video_frame, tile, RGB | ||
#include "utils/macros.h" | ||
#include "utils/pam.h" | ||
#include "video.h" | ||
#include "video_codec.h" | ||
|
||
struct module; | ||
|
||
#define MOD_NAME "[logo] " | ||
|
||
struct state_capture_filter_logo { | ||
|