Skip to content

Commit eb98cc5

Browse files
committed
Add missing license headers
1 parent f2682b9 commit eb98cc5

File tree

4 files changed

+33
-4
lines changed

4 files changed

+33
-4
lines changed

Build.mk

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -165,10 +165,14 @@ check-tests:
165165
test -z "$$ret"
166166

167167
check-licenses:
168-
@for file in $$(find $(top_srcdir) \
169-
-path $(top_srcdir)/lib/upipe-blackmagic/include -prune -o \
170-
-path $(top_srcdir)/lib/upipe-modules/http-parser -prune -o \
171-
-path $(top_srcdir)/tests/checkasm -prune -o \
168+
@cd $(top_srcdir) && for file in $$(find \
169+
-path './lib/upipe-blackmagic/include' -prune -o \
170+
-path './lib/upipe-filters/zoneplate/videotestsrc.[ch]' -prune -o \
171+
-path './lib/upipe-modules/http-parser' -prune -o \
172+
-path './lib/upipe-ts/rsa_asn1.[ch]' -prune -o \
173+
-path './lib/upipe-dveo/asi_ioctl.h' -prune -o \
174+
-path './tests/checkasm' -prune -o \
175+
-path './tests/upipe_h264_framer_test.h' -prune -o \
172176
\( -name '*.c' -o -name '*.h' -o -name '*.cpp' \) -print); do \
173177
if ! grep -q SPDX-License-Identifier: "$$file"; then \
174178
echo "$${file#./}: missing SPDX-License-Identifier"; \

luajit/ffi-stdarg.c

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
1+
/*
2+
* Copyright (C) 2016-2018 OpenHeadend S.A.R.L.
3+
*
4+
* Authors: Clément Vasseur
5+
*
6+
* SPDX-License-Identifier: MIT
7+
*/
8+
19
#include <stdarg.h>
210
#include <string.h>
311
#include <stdint.h>

luajit/upipe-helper.c

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,12 @@
1+
/*
2+
* Copyright (C) 2016-2019 OpenHeadend S.A.R.L.
3+
* Copyright (C) 2021-2025 EasyTools S.A.S.
4+
*
5+
* Authors: Clément Vasseur
6+
*
7+
* SPDX-License-Identifier: MIT
8+
*/
9+
110
#include "upipe/upipe_helper_upipe.h"
211
#include "upipe/upipe_helper_urefcount.h"
312
#include "upipe/upipe_helper_output.h"

tests/upipe_worker_stress_test.c

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
1+
/*
2+
* Copyright (C) 2021 EasyTools S.A.S.
3+
*
4+
* Authors: Clément Vasseur
5+
*
6+
* SPDX-License-Identifier: MIT
7+
*/
8+
19
#undef NDEBUG
210

311
#include "upipe/upump.h"

0 commit comments

Comments
 (0)