* [FFmpeg-devel] [PATCH 1/2] doc/mips: Update list of files with MIPS copyright notice
@ 2024-05-22 11:03 Andreas Rheinhardt
2024-05-22 11:04 ` [FFmpeg-devel] [RFC PATCH 2/2] tests/fate/source-check: Relax BSD licence check Andreas Rheinhardt
0 siblings, 1 reply; 4+ messages in thread
From: Andreas Rheinhardt @ 2024-05-22 11:03 UTC (permalink / raw)
To: ffmpeg-devel; +Cc: Andreas Rheinhardt
E.g. the AAC stuff has been removed in
03cf10164578aed33f4d0cb5b69d63669c01a538.
Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
---
Alternatively, we could just nuke this file.
doc/mips.txt | 6 ------
1 file changed, 6 deletions(-)
diff --git a/doc/mips.txt b/doc/mips.txt
index d66ce3b447..a42546f0cd 100644
--- a/doc/mips.txt
+++ b/doc/mips.txt
@@ -49,11 +49,6 @@ Files that have MIPS copyright notice in them:
libm_mips.h
softfloat_tables.h
* libavcodec/mips/
- aacdec_fixed.c
- aacsbr_fixed.c
- aacsbr_template.c
- aaccoder_mips.c
- aacpsy_mips.h
ac3dsp_mips.c
acelp_filters_mips.c
acelp_vectors_mips.c
@@ -64,7 +59,6 @@ Files that have MIPS copyright notice in them:
compute_antialias_fixed.h
compute_antialias_float.h
lsp_mips.h
- dsputil_mips.c
fmtconvert_mips.c
iirfilter_mips.c
mpegaudiodsp_mips_fixed.c
--
2.40.1
_______________________________________________
ffmpeg-devel mailing list
ffmpeg-devel@ffmpeg.org
https://ffmpeg.org/mailman/listinfo/ffmpeg-devel
To unsubscribe, visit link above, or email
ffmpeg-devel-request@ffmpeg.org with subject "unsubscribe".
^ permalink raw reply [flat|nested] 4+ messages in thread
* [FFmpeg-devel] [RFC PATCH 2/2] tests/fate/source-check: Relax BSD licence check
2024-05-22 11:03 [FFmpeg-devel] [PATCH 1/2] doc/mips: Update list of files with MIPS copyright notice Andreas Rheinhardt
@ 2024-05-22 11:04 ` Andreas Rheinhardt
2024-05-22 12:40 ` Rémi Denis-Courmont
2024-05-25 20:43 ` Pierre-Anthony Lemieux
0 siblings, 2 replies; 4+ messages in thread
From: Andreas Rheinhardt @ 2024-05-22 11:04 UTC (permalink / raw)
To: ffmpeg-devel; +Cc: Andreas Rheinhardt
Several files already had standard license header (namely
2-clause BSD files), yet due to the 80 char line length limit,
they were not treated as such by source-check.sh (which
fate-source uses). Therefore relax the BSD check.
Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
---
This is the first variant. The second variant follows shortly.
tests/fate/source-check.sh | 2 +-
tests/ref/fate/source | 5 -----
2 files changed, 1 insertion(+), 6 deletions(-)
diff --git a/tests/fate/source-check.sh b/tests/fate/source-check.sh
index 658823fc0b..4d7e175784 100755
--- a/tests/fate/source-check.sh
+++ b/tests/fate/source-check.sh
@@ -11,7 +11,7 @@ git grep -L -E "This file is part of FFmpeg|This file is part of libswresample|"
"Permission is hereby granted to use, copy, modify, and distribute this|"\
"Permission is granted to anyone to use this software for any purpose|"\
"This work is licensed under the terms of the GNU GPL|"\
-"Redistribution and use in source and binary forms, with or without modification|"\
+"Redistribution and use in source and binary forms, with or without|"\
"This library is free software; you can redistribute it and/or|"\
"This program is free software; you can redistribute it and/or modify|"\
"Licensed under the Apache License|"\
diff --git a/tests/ref/fate/source b/tests/ref/fate/source
index 723e2e06c7..a3beb35093 100644
--- a/tests/ref/fate/source
+++ b/tests/ref/fate/source
@@ -1,15 +1,10 @@
Files without standard license headers:
libavcodec/file_open.c
-libavcodec/ilbcdata.h
-libavcodec/ilbcdec.c
libavcodec/interplayacm.c
libavcodec/log2_tab.c
libavcodec/reverse.c
-libavcodec/riscv/startcode_rvb.S
-libavcodec/riscv/startcode_rvv.S
libavdevice/file_open.c
libavdevice/reverse.c
-libavfilter/af_arnndn.c
libavfilter/file_open.c
libavfilter/log2_tab.c
libavformat/bitstream.c
--
2.40.1
_______________________________________________
ffmpeg-devel mailing list
ffmpeg-devel@ffmpeg.org
https://ffmpeg.org/mailman/listinfo/ffmpeg-devel
To unsubscribe, visit link above, or email
ffmpeg-devel-request@ffmpeg.org with subject "unsubscribe".
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [FFmpeg-devel] [RFC PATCH 2/2] tests/fate/source-check: Relax BSD licence check
2024-05-22 11:04 ` [FFmpeg-devel] [RFC PATCH 2/2] tests/fate/source-check: Relax BSD licence check Andreas Rheinhardt
@ 2024-05-22 12:40 ` Rémi Denis-Courmont
2024-05-25 20:43 ` Pierre-Anthony Lemieux
1 sibling, 0 replies; 4+ messages in thread
From: Rémi Denis-Courmont @ 2024-05-22 12:40 UTC (permalink / raw)
To: FFmpeg development discussions and patches
Le 22 mai 2024 14:04:50 GMT+03:00, Andreas Rheinhardt <andreas.rheinhardt@outlook.com> a écrit :
>Several files already had standard license header (namely
>2-clause BSD files), yet due to the 80 char line length limit,
>they were not treated as such by source-check.sh (which
>fate-source uses). Therefore relax the BSD check.
LGTM.
_______________________________________________
ffmpeg-devel mailing list
ffmpeg-devel@ffmpeg.org
https://ffmpeg.org/mailman/listinfo/ffmpeg-devel
To unsubscribe, visit link above, or email
ffmpeg-devel-request@ffmpeg.org with subject "unsubscribe".
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [FFmpeg-devel] [RFC PATCH 2/2] tests/fate/source-check: Relax BSD licence check
2024-05-22 11:04 ` [FFmpeg-devel] [RFC PATCH 2/2] tests/fate/source-check: Relax BSD licence check Andreas Rheinhardt
2024-05-22 12:40 ` Rémi Denis-Courmont
@ 2024-05-25 20:43 ` Pierre-Anthony Lemieux
1 sibling, 0 replies; 4+ messages in thread
From: Pierre-Anthony Lemieux @ 2024-05-25 20:43 UTC (permalink / raw)
To: FFmpeg development discussions and patches; +Cc: Andreas Rheinhardt
On Wed, May 22, 2024 at 4:38 AM Andreas Rheinhardt
<andreas.rheinhardt@outlook.com> wrote:
>
> Several files already had standard license header (namely
> 2-clause BSD files), yet due to the 80 char line length limit,
> they were not treated as such by source-check.sh (which
> fate-source uses). Therefore relax the BSD check.
LGTM
>
> Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
> ---
> This is the first variant. The second variant follows shortly.
>
> tests/fate/source-check.sh | 2 +-
> tests/ref/fate/source | 5 -----
> 2 files changed, 1 insertion(+), 6 deletions(-)
>
> diff --git a/tests/fate/source-check.sh b/tests/fate/source-check.sh
> index 658823fc0b..4d7e175784 100755
> --- a/tests/fate/source-check.sh
> +++ b/tests/fate/source-check.sh
> @@ -11,7 +11,7 @@ git grep -L -E "This file is part of FFmpeg|This file is part of libswresample|"
> "Permission is hereby granted to use, copy, modify, and distribute this|"\
> "Permission is granted to anyone to use this software for any purpose|"\
> "This work is licensed under the terms of the GNU GPL|"\
> -"Redistribution and use in source and binary forms, with or without modification|"\
> +"Redistribution and use in source and binary forms, with or without|"\
> "This library is free software; you can redistribute it and/or|"\
> "This program is free software; you can redistribute it and/or modify|"\
> "Licensed under the Apache License|"\
> diff --git a/tests/ref/fate/source b/tests/ref/fate/source
> index 723e2e06c7..a3beb35093 100644
> --- a/tests/ref/fate/source
> +++ b/tests/ref/fate/source
> @@ -1,15 +1,10 @@
> Files without standard license headers:
> libavcodec/file_open.c
> -libavcodec/ilbcdata.h
> -libavcodec/ilbcdec.c
> libavcodec/interplayacm.c
> libavcodec/log2_tab.c
> libavcodec/reverse.c
> -libavcodec/riscv/startcode_rvb.S
> -libavcodec/riscv/startcode_rvv.S
> libavdevice/file_open.c
> libavdevice/reverse.c
> -libavfilter/af_arnndn.c
> libavfilter/file_open.c
> libavfilter/log2_tab.c
> libavformat/bitstream.c
> --
> 2.40.1
>
> _______________________________________________
> ffmpeg-devel mailing list
> ffmpeg-devel@ffmpeg.org
> https://ffmpeg.org/mailman/listinfo/ffmpeg-devel
>
> To unsubscribe, visit link above, or email
> ffmpeg-devel-request@ffmpeg.org with subject "unsubscribe".
_______________________________________________
ffmpeg-devel mailing list
ffmpeg-devel@ffmpeg.org
https://ffmpeg.org/mailman/listinfo/ffmpeg-devel
To unsubscribe, visit link above, or email
ffmpeg-devel-request@ffmpeg.org with subject "unsubscribe".
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2024-05-25 20:44 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2024-05-22 11:03 [FFmpeg-devel] [PATCH 1/2] doc/mips: Update list of files with MIPS copyright notice Andreas Rheinhardt
2024-05-22 11:04 ` [FFmpeg-devel] [RFC PATCH 2/2] tests/fate/source-check: Relax BSD licence check Andreas Rheinhardt
2024-05-22 12:40 ` Rémi Denis-Courmont
2024-05-25 20:43 ` Pierre-Anthony Lemieux
Git Inbox Mirror of the ffmpeg-devel mailing list - see https://ffmpeg.org/mailman/listinfo/ffmpeg-devel
This inbox may be cloned and mirrored by anyone:
git clone --mirror https://master.gitmailbox.com/ffmpegdev/0 ffmpegdev/git/0.git
# If you have public-inbox 1.1+ installed, you may
# initialize and index your mirror using the following commands:
public-inbox-init -V2 ffmpegdev ffmpegdev/ https://master.gitmailbox.com/ffmpegdev \
ffmpegdev@gitmailbox.com
public-inbox-index ffmpegdev
Example config snippet for mirrors.
AGPL code for this site: git clone https://public-inbox.org/public-inbox.git