From d31995b3074bb19aa4da66ce5c4774ca9ed101a1 Mon Sep 17 00:00:00 2001 From: Andre Noll Date: Sun, 10 Sep 2017 14:15:50 +0200 Subject: [PATCH] Shorten copyright notice. The GPLv2 line does not add any additional information, so drop it. This leaves a single line of legalese text for most files, which is about the amount of screen real estate it deserves. This patch was created with the following script (plus some manual fixups): awk '{ if (NR <= 5) { gs = gensub(/.*Copyright.* ([0-9]+).*Andre Noll.*/, "\\1", "g") if (gs != $0) year = gs next } if (NR == 6 && year != "") printf("/* Copyright (C) %s Andre Noll , see file COPYING. */\n", year) print }' --- aac_afh.c | 6 +----- aacdec_filter.c | 6 +----- acl.c | 6 +----- acl.h | 6 +----- afh.c | 6 +----- afh.h | 6 +----- afh_common.c | 6 +----- afh_recv.c | 6 +----- afs.c | 6 +----- afs.h | 6 +----- aft.c | 6 +----- alsa_mix.c | 6 +----- alsa_write.c | 6 +----- amp_filter.c | 6 +----- ao_write.c | 6 +----- attribute.c | 6 +----- audioc.c | 6 +----- audiod.c | 6 +----- audiod.h | 6 +----- audiod_command.c | 6 +----- bash_completion | 7 ++----- bitstream.c | 4 ++-- bitstream.h | 3 +-- blob.c | 6 +----- buffer_tree.c | 6 +----- buffer_tree.h | 6 +----- check_wav.c | 6 +----- check_wav.h | 6 +----- chunk_queue.c | 6 +----- chunk_queue.h | 6 +----- client.c | 6 +----- client.h | 6 +----- client_common.c | 6 +----- close_on_fork.c | 6 +----- command.c | 6 +----- compress_filter.c | 6 +----- crypt.c | 6 +----- crypt.h | 6 +----- crypt_backend.h | 6 +----- crypt_common.c | 6 +----- daemon.c | 6 +----- dccp_recv.c | 6 +----- dccp_send.c | 6 +----- error.h | 6 +----- exec.c | 6 +----- fd.c | 6 +----- fd.h | 6 +----- fecdec_filter.c | 6 +----- file_write.c | 6 +----- filter.c | 6 +----- filter.h | 6 +----- filter_common.c | 6 +----- flac_afh.c | 6 +----- flacdec_filter.c | 6 +----- gcrypt.c | 6 +----- grab_client.c | 6 +----- grab_client.h | 6 +----- gui.c | 6 +----- gui.h | 6 +----- gui_theme.c | 6 +----- http_recv.c | 6 +----- http_send.c | 6 +----- imdct.c | 3 +-- interactive.c | 6 +----- interactive.h | 6 +----- ipc.c | 6 +----- mix.h | 6 +----- mixer.c | 6 +----- mm.c | 6 +----- mm.h | 6 +----- mood.c | 6 +----- mood.h | 6 +----- mp.c | 6 +----- mp.h | 6 +----- mp3_afh.c | 6 +----- mp3dec_filter.c | 6 +----- net.c | 6 +----- net.h | 6 +----- ogg_afh.c | 6 +----- ogg_afh_common.c | 6 +----- ogg_afh_common.h | 6 +----- oggdec_filter.c | 6 +----- opus_afh.c | 6 +----- opus_common.h | 6 +----- opusdec_filter.c | 2 +- oss_mix.c | 6 +----- oss_write.c | 6 +----- para.h | 6 +----- play.c | 6 +----- playlist.c | 6 +----- portable_io.h | 6 +----- prebuffer_filter.c | 6 +----- recv.c | 6 +----- recv.h | 6 +----- recv_common.c | 6 +----- resample_filter.c | 6 +----- ringbuffer.c | 6 +----- ringbuffer.h | 6 +----- sched.c | 6 +----- sched.h | 6 +----- score.c | 6 +----- send.h | 6 +----- send_common.c | 6 +----- server.c | 6 +----- server.h | 6 +----- sideband.c | 6 +----- sideband.h | 6 +----- signal.c | 6 +----- signal.h | 6 +----- spx.h | 6 +----- spx_afh.c | 6 +----- spx_common.c | 2 +- spxdec_filter.c | 2 +- stat.c | 6 +----- stdin.c | 6 +----- stdin.h | 6 +----- stdout.c | 6 +----- stdout.h | 6 +----- string.c | 6 +----- string.h | 6 +----- sync_filter.c | 6 +----- t/test-lib.sh | 7 +++---- time.c | 6 +----- udp_recv.c | 6 +----- udp_send.c | 6 +----- user_list.c | 6 +----- user_list.h | 6 +----- version.c | 6 +----- vss.c | 6 +----- vss.h | 6 +----- wav_filter.c | 6 +----- wma_afh.c | 6 +----- wma_common.c | 6 +----- wmadec_filter.c | 3 +-- write.c | 6 +----- write.h | 6 +----- write_common.c | 6 +----- yy/mp.lex | 6 +----- yy/mp.y | 6 +----- 139 files changed, 143 insertions(+), 670 deletions(-) diff --git a/aac_afh.c b/aac_afh.c index 8550a8ac..3315a42d 100644 --- a/aac_afh.c +++ b/aac_afh.c @@ -1,8 +1,4 @@ -/* - * Copyright (C) 2006 Andre Noll - * - * Licensed under the GPL v2. For licencing details see COPYING. - */ +/* Copyright (C) 2006 Andre Noll , see file COPYING. */ /* * based in parts on libfaad, Copyright (C) 2003-2005 M. Bakker, * Ahead Software AG diff --git a/aacdec_filter.c b/aacdec_filter.c index ce3eb3bd..a2459d82 100644 --- a/aacdec_filter.c +++ b/aacdec_filter.c @@ -1,8 +1,4 @@ -/* - * Copyright (C) 2006 Andre Noll - * - * Licensed under the GPL v2. For licencing details see COPYING. - */ +/* Copyright (C) 2006 Andre Noll , see file COPYING. */ /* * based in parts on libfaad, Copyright (C) 2003-2005 M. Bakker, * Ahead Software AG diff --git a/acl.c b/acl.c index 62677711..10f56bf1 100644 --- a/acl.c +++ b/acl.c @@ -1,8 +1,4 @@ -/* - * Copyright (C) 2005 Andre Noll - * - * Licensed under the GPL v2. For licencing details see COPYING. - */ +/* Copyright (C) 2005 Andre Noll , see file COPYING. */ /** \file acl.c Access control lists for paraslash senders. */ diff --git a/acl.h b/acl.h index 91efa600..02002e57 100644 --- a/acl.h +++ b/acl.h @@ -1,8 +1,4 @@ -/* - * Copyright (C) 2008 Andre Noll - * - * Licensed under the GPL v2. For licencing details see COPYING. - */ +/* Copyright (C) 2008 Andre Noll , see file COPYING. */ /** \file acl.h Exported functions of acl.c. */ diff --git a/afh.c b/afh.c index 9d40caeb..aa6570e1 100644 --- a/afh.c +++ b/afh.c @@ -1,8 +1,4 @@ -/* - * Copyright (C) 2008 Andre Noll - * - * Licensed under the GPL v2. For licencing details see COPYING. - */ +/* Copyright (C) 2008 Andre Noll , see file COPYING. */ /** \file afh.c Paraslash's standalone audio format handler tool. */ diff --git a/afh.h b/afh.h index 20c61dba..d2ac93ae 100644 --- a/afh.h +++ b/afh.h @@ -1,8 +1,4 @@ -/* - * Copyright (C) 2005 Andre Noll - * - * Licensed under the GPL v2. For licencing details see COPYING. - */ +/* Copyright (C) 2005 Andre Noll , see file COPYING. */ /** \file afh.h Structures for audio format handling (para_server). */ diff --git a/afh_common.c b/afh_common.c index dd9b3192..bab4d415 100644 --- a/afh_common.c +++ b/afh_common.c @@ -1,8 +1,4 @@ -/* - * Copyright (C) 1997 Andre Noll - * - * Licensed under the GPL v2. For licencing details see COPYING. - */ +/* Copyright (C) 1997 Andre Noll , see file COPYING. */ /** \file afh_common.c Common audio format handler functions. */ diff --git a/afh_recv.c b/afh_recv.c index 36bc9882..c3e6ddbd 100644 --- a/afh_recv.c +++ b/afh_recv.c @@ -1,8 +1,4 @@ -/* - * Copyright (C) 2011 Andre Noll - * - * Licensed under the GPL v2. For licencing details see COPYING. - */ +/* Copyright (C) 2011 Andre Noll , see file COPYING. */ /** \file afh_recv.c Receiver for streaming local files. */ diff --git a/afs.c b/afs.c index 5623d7e9..a8c504f4 100644 --- a/afs.c +++ b/afs.c @@ -1,8 +1,4 @@ -/* - * Copyright (C) 2007 Andre Noll - * - * Licensed under the GPL v2. For licencing details see COPYING. - */ +/* Copyright (C) 2007 Andre Noll , see file COPYING. */ /** \file afs.c Paraslash's audio file selector. */ diff --git a/afs.h b/afs.h index ea4b497e..544a498d 100644 --- a/afs.h +++ b/afs.h @@ -1,8 +1,4 @@ -/* - * Copyright (C) 2007 Andre Noll - * - * Licensed under the GPL v2. For licencing details see COPYING. - */ +/* Copyright (C) 2007 Andre Noll , see file COPYING. */ /** \file afs.h Exported symbols of the audio file selector. */ diff --git a/aft.c b/aft.c index 1679a549..44337306 100644 --- a/aft.c +++ b/aft.c @@ -1,8 +1,4 @@ -/* - * Copyright (C) 2007 Andre Noll - * - * Licensed under the GPL v2. For licencing details see COPYING. - */ +/* Copyright (C) 2007 Andre Noll , see file COPYING. */ /** \file aft.c Audio file table functions. */ diff --git a/alsa_mix.c b/alsa_mix.c index 6520416f..1d81e5d9 100644 --- a/alsa_mix.c +++ b/alsa_mix.c @@ -1,8 +1,4 @@ -/* - * Copyright (C) 2012 Andre Noll - * - * Licensed under the GPL v2. For licencing details see COPYING. - */ +/* Copyright (C) 2012 Andre Noll , see file COPYING. */ /** \file alsa_mix.c The ALSA mixer plugin. */ diff --git a/alsa_write.c b/alsa_write.c index 3935c8c6..363e3930 100644 --- a/alsa_write.c +++ b/alsa_write.c @@ -1,8 +1,4 @@ -/* - * Copyright (C) 2005 Andre Noll - * - * Licensed under the GPL v2. For licencing details see COPYING. - */ +/* Copyright (C) 2005 Andre Noll , see file COPYING. */ /** \file alsa_write.c paraslash's alsa output plugin */ diff --git a/amp_filter.c b/amp_filter.c index 4f8e0490..61b1653e 100644 --- a/amp_filter.c +++ b/amp_filter.c @@ -1,8 +1,4 @@ -/* - * Copyright (C) 2009 Andre Noll - * - * Licensed under the GPL v2. For licencing details see COPYING. - */ +/* Copyright (C) 2009 Andre Noll , see file COPYING. */ /** \file amp_filter.c Paraslash's amplify filter. */ diff --git a/ao_write.c b/ao_write.c index e469a394..4258803f 100644 --- a/ao_write.c +++ b/ao_write.c @@ -1,8 +1,4 @@ -/* - * Copyright (C) 2011 Andre Noll - * - * Licensed under the GPL v2. For licencing details see COPYING. - */ +/* Copyright (C) 2011 Andre Noll , see file COPYING. */ /** \file ao_write.c Paraslash's libao output plugin. */ diff --git a/attribute.c b/attribute.c index 2ea73a6a..f7091727 100644 --- a/attribute.c +++ b/attribute.c @@ -1,8 +1,4 @@ -/* - * Copyright (C) 1997 Andre Noll - * - * Licensed under the GPL v2. For licencing details see COPYING. - */ +/* Copyright (C) 1997 Andre Noll , see file COPYING. */ /** \file attribute.c Attribute handling functions. */ diff --git a/audioc.c b/audioc.c index ed39ce6e..38151a53 100644 --- a/audioc.c +++ b/audioc.c @@ -1,8 +1,4 @@ -/* - * Copyright (C) 2005 Andre Noll - * - * Licensed under the GPL v2. For licencing details see COPYING. - */ +/* Copyright (C) 2005 Andre Noll , see file COPYING. */ /** \file audioc.c The client program used to connect to para_audiod. */ diff --git a/audiod.c b/audiod.c index 42f4c0a3..8d152fa6 100644 --- a/audiod.c +++ b/audiod.c @@ -1,8 +1,4 @@ -/* - * Copyright (C) 2005 Andre Noll - * - * Licensed under the GPL v2. For licencing details see COPYING. - */ +/* Copyright (C) 2005 Andre Noll , see file COPYING. */ /** \file audiod.c The paraslash's audio daemon. */ diff --git a/audiod.h b/audiod.h index 295a02bc..b40fdd67 100644 --- a/audiod.h +++ b/audiod.h @@ -1,8 +1,4 @@ -/* - * Copyright (C) 2006 Andre Noll - * - * Licensed under the GPL v2. For licencing details see COPYING. - */ +/* Copyright (C) 2006 Andre Noll , see file COPYING. */ /** \file audiod.h Symbols exported from audiod.c. */ diff --git a/audiod_command.c b/audiod_command.c index a6a49b74..cb4363b1 100644 --- a/audiod_command.c +++ b/audiod_command.c @@ -1,8 +1,4 @@ -/* - * Copyright (C) 2005 Andre Noll - * - * Licensed under the GPL v2. For licencing details see COPYING. - */ +/* Copyright (C) 2005 Andre Noll , see file COPYING. */ /** \file audiod_command.c Commands for para_audiod. */ diff --git a/bash_completion b/bash_completion index 0eb7074c..c8236f80 100644 --- a/bash_completion +++ b/bash_completion @@ -1,8 +1,5 @@ -# Copyright (C) 2007 Andre Noll -# -# Licensed under the GPL v2. For licencing details see COPYING. - -_para_complete() +# Copyright (C) 2007 Andre Noll , see file COPYING. +para_complete() { local prg="$1" # the program to execute local cur=${COMP_WORDS[$COMP_CWORD]} diff --git a/bitstream.c b/bitstream.c index c2018b56..dfc1e55e 100644 --- a/bitstream.c +++ b/bitstream.c @@ -6,9 +6,9 @@ * Copyright (c) 2000, 2001 Fabrice Bellard * Copyright (c) 2002-2004 Michael Niedermayer * alternative bitstream reader & writer by Michael Niedermayer + * Copyright (C) 2009 Andre Noll * - * Licensed under the GNU Lesser General Public License. - * For licencing details see COPYING.LIB. + * Licensed under the GNU Lesser General Public License. see file COPYING.LIB. */ /** \file bitstream.c Bitstream API for the wma decoder. */ diff --git a/bitstream.h b/bitstream.h index 4d81fa3b..98937e89 100644 --- a/bitstream.h +++ b/bitstream.h @@ -3,8 +3,7 @@ * * copyright (c) 2004 Michael Niedermayer * - * Licensed under the GNU Lesser General Public License. - * For licencing details see COPYING.LIB. + * Licensed under the GNU Lesser General Public License, see file COPYING.LIB. */ /** \file bitstream.h Bitstream structures and inline functions. */ diff --git a/blob.c b/blob.c index 7798a493..890b9226 100644 --- a/blob.c +++ b/blob.c @@ -1,8 +1,4 @@ -/* - * Copyright (C) 2007 Andre Noll - * - * Licensed under the GPL v2. For licencing details see COPYING. - */ +/* Copyright (C) 2007 Andre Noll , see file COPYING. */ /** \file blob.c Macros and functions for blob handling. */ diff --git a/buffer_tree.c b/buffer_tree.c index 9b5bcda1..8a317513 100644 --- a/buffer_tree.c +++ b/buffer_tree.c @@ -1,8 +1,4 @@ -/* - * Copyright (C) 2009 Andre Noll - * - * Licensed under the GPL v2. For licencing details see COPYING. - */ +/* Copyright (C) 2009 Andre Noll , see file COPYING. */ /** \file buffer_tree.c Buffer tree and buffer pool implementations. */ #include diff --git a/buffer_tree.h b/buffer_tree.h index 3ee469c9..34535219 100644 --- a/buffer_tree.h +++ b/buffer_tree.h @@ -1,8 +1,4 @@ -/* - * Copyright (C) 2009 Andre Noll - * - * Licensed under the GPL v2. For licencing details see COPYING. - */ +/* Copyright (C) 2009 Andre Noll , see file COPYING. */ /** * \file buffer_tree.h Buffer tree management. diff --git a/check_wav.c b/check_wav.c index 1a47f946..f0990bf8 100644 --- a/check_wav.c +++ b/check_wav.c @@ -1,8 +1,4 @@ -/* - * Copyright (C) 2005 Andre Noll - * - * Licensed under the GPL v2. For licencing details see COPYING. - */ +/* Copyright (C) 2005 Andre Noll , see file COPYING. */ /** \file check_wav.c Detect and delete a wav header. */ diff --git a/check_wav.h b/check_wav.h index 045158ab..79b11962 100644 --- a/check_wav.h +++ b/check_wav.h @@ -1,8 +1,4 @@ -/* - * Copyright (C) 2012 Andre Noll - * - * Licensed under the GPL v2. For licencing details see COPYING. - */ +/* Copyright (C) 2012 Andre Noll , see file COPYING. */ /** \file check_wav.h Detect, process and cut a wav header. */ diff --git a/chunk_queue.c b/chunk_queue.c index c9f47b2b..08f57e9d 100644 --- a/chunk_queue.c +++ b/chunk_queue.c @@ -1,8 +1,4 @@ -/* - * Copyright (C) 2007 Andre Noll - * - * Licensed under the GPL v2. For licencing details see COPYING. - */ +/* Copyright (C) 2007 Andre Noll , see file COPYING. */ /** \file chunk_queue.c Queuing functions for paraslash senders. */ diff --git a/chunk_queue.h b/chunk_queue.h index 1e7fed2d..bc92ab05 100644 --- a/chunk_queue.h +++ b/chunk_queue.h @@ -1,8 +1,4 @@ -/* - * Copyright (C) 2007 Andre Noll - * - * Licensed under the GPL v2. For licencing details see COPYING. - */ +/* Copyright (C) 2007 Andre Noll , see file COPYING. */ /** \file chunk_queue.h Exported symbols from chunk_queue.c. */ diff --git a/client.c b/client.c index 2607ee20..3e9219fd 100644 --- a/client.c +++ b/client.c @@ -1,8 +1,4 @@ -/* - * Copyright (C) 1997 Andre Noll - * - * Licensed under the GPL v2. For licencing details see COPYING. - */ +/* Copyright (C) 1997 Andre Noll , see file COPYING. */ /** \file client.c The client program used to connect to para_server. */ diff --git a/client.h b/client.h index 87cfc618..f8cc5d64 100644 --- a/client.h +++ b/client.h @@ -1,8 +1,4 @@ -/* - * Copyright (C) 1997 Andre Noll - * - * Licensed under the GPL v2. For licencing details see COPYING. - */ +/* Copyright (C) 1997 Andre Noll , see file COPYING. */ /** \file client.h Common client functions and exported symbols from client_common.c. */ diff --git a/client_common.c b/client_common.c index 39eb8b4c..97d29f8f 100644 --- a/client_common.c +++ b/client_common.c @@ -1,8 +1,4 @@ -/* - * Copyright (C) 1997 Andre Noll - * - * Licensed under the GPL v2. For licencing details see COPYING. - */ +/* Copyright (C) 1997 Andre Noll , see file COPYING. */ /** \file client_common.c Common functions of para_client and para_audiod. */ diff --git a/close_on_fork.c b/close_on_fork.c index 655dbc56..7e0c8e64 100644 --- a/close_on_fork.c +++ b/close_on_fork.c @@ -1,8 +1,4 @@ -/* - * Copyright (C) 2005 Andre Noll - * - * Licensed under the GPL v2. For licencing details see COPYING. - */ +/* Copyright (C) 2005 Andre Noll , see file COPYING. */ /** \file close_on_fork.c Manage a list of fds that should be closed on fork. */ diff --git a/command.c b/command.c index 69564336..07add425 100644 --- a/command.c +++ b/command.c @@ -1,8 +1,4 @@ -/* - * Copyright (C) 1997 Andre Noll - * - * Licensed under the GPL v2. For licencing details see COPYING. - */ +/* Copyright (C) 1997 Andre Noll , see file COPYING. */ /** \file command.c Client authentication and server commands. */ diff --git a/compress_filter.c b/compress_filter.c index 65897642..d26fe233 100644 --- a/compress_filter.c +++ b/compress_filter.c @@ -1,8 +1,4 @@ -/* - * Copyright (C) 2005 Andre Noll - * - * Licensed under the GPL v2. For licencing details see COPYING. - */ +/* Copyright (C) 2005 Andre Noll , see file COPYING. */ /** \file compress_filter.c Paraslash's dynamic audio range compressor. */ diff --git a/crypt.c b/crypt.c index d4ffdf86..39fcd7ed 100644 --- a/crypt.c +++ b/crypt.c @@ -1,8 +1,4 @@ -/* - * Copyright (C) 2005 Andre Noll - * - * Licensed under the GPL v2. For licencing details see COPYING. - */ +/* Copyright (C) 2005 Andre Noll , see file COPYING. */ /** \file crypt.c Openssl-based encryption/decryption routines. */ diff --git a/crypt.h b/crypt.h index 5e25748c..85623fba 100644 --- a/crypt.h +++ b/crypt.h @@ -1,8 +1,4 @@ -/* - * Copyright (C) 2005 Andre Noll - * - * Licensed under the GPL v2. For licencing details see COPYING. - */ +/* Copyright (C) 2005 Andre Noll , see file COPYING. */ /** \file crypt.h Public crypto interface. */ diff --git a/crypt_backend.h b/crypt_backend.h index 85008979..ff956ce3 100644 --- a/crypt_backend.h +++ b/crypt_backend.h @@ -1,8 +1,4 @@ -/* - * Copyright (C) 2011 Andre Noll - * - * Licensed under the GPL v2. For licencing details see COPYING. - */ +/* Copyright (C) 2011 Andre Noll , see file COPYING. */ /** \file crypt_backend.h Non-public crypto interface. */ diff --git a/crypt_common.c b/crypt_common.c index ac8564eb..08361b27 100644 --- a/crypt_common.c +++ b/crypt_common.c @@ -1,8 +1,4 @@ -/* - * Copyright (C) 2005 Andre Noll - * - * Licensed under the GPL v2. For licencing details see COPYING. - */ +/* Copyright (C) 2005 Andre Noll , see file COPYING. */ /** \file crypt_common.c Crypto functions independent of openssl/libgcrypt. */ diff --git a/daemon.c b/daemon.c index 4e15824f..e47639bc 100644 --- a/daemon.c +++ b/daemon.c @@ -1,8 +1,4 @@ -/* - * Copyright (C) 1997 Andre Noll - * - * Licensed under the GPL v2. For licencing details see COPYING. - */ +/* Copyright (C) 1997 Andre Noll , see file COPYING. */ /** \file daemon.c Some helpers for programs that detach from the console. */ diff --git a/dccp_recv.c b/dccp_recv.c index 3385d66c..8a08504a 100644 --- a/dccp_recv.c +++ b/dccp_recv.c @@ -1,8 +1,4 @@ -/* - * Copyright (C) 2006 Andre Noll - * - * Licensed under the GPL v2. For licencing details see COPYING. - */ +/* Copyright (C) 2006 Andre Noll , see file COPYING. */ /** \file dccp_recv.c paraslash's dccp receiver */ diff --git a/dccp_send.c b/dccp_send.c index 4ad25e73..6f989541 100644 --- a/dccp_send.c +++ b/dccp_send.c @@ -1,8 +1,4 @@ -/* - * Copyright (C) 2006 Andre Noll - * - * Licensed under the GPL v2. For licencing details see COPYING. - */ +/* Copyright (C) 2006 Andre Noll , see file COPYING. */ /** \file dccp_send.c Paraslash's dccp sender. */ diff --git a/error.h b/error.h index 7afd772b..1904a6d6 100644 --- a/error.h +++ b/error.h @@ -1,8 +1,4 @@ -/* - * Copyright (C) 2006 Andre Noll - * - * Licensed under the GPL v2. For licencing details see COPYING. - */ +/* Copyright (C) 2006 Andre Noll , see file COPYING. */ /** \file error.h List of error codes and messages. */ diff --git a/exec.c b/exec.c index a2348ba3..85dbaf94 100644 --- a/exec.c +++ b/exec.c @@ -1,8 +1,4 @@ -/* - * Copyright (C) 2003 Andre Noll - * - * Licensed under the GPL v2. For licencing details see COPYING. - */ +/* Copyright (C) 2003 Andre Noll , see file COPYING. */ /** \file exec.c Helper functions for spawning new processes. */ diff --git a/fd.c b/fd.c index 49736448..f1c3792c 100644 --- a/fd.c +++ b/fd.c @@ -1,8 +1,4 @@ -/* - * Copyright (C) 2006 Andre Noll - * - * Licensed under the GPL v2. For licencing details see COPYING. - */ +/* Copyright (C) 2006 Andre Noll , see file COPYING. */ /** \file fd.c Helper functions for file descriptor handling. */ diff --git a/fd.h b/fd.h index 29f38798..b8b81bbe 100644 --- a/fd.h +++ b/fd.h @@ -1,8 +1,4 @@ -/* - * Copyright (C) 2006 Andre Noll - * - * Licensed under the GPL v2. For licencing details see COPYING. - */ +/* Copyright (C) 2006 Andre Noll , see file COPYING. */ /** \file fd.h exported symbols from fd.c */ diff --git a/fecdec_filter.c b/fecdec_filter.c index 1b95ea4c..13d4f7b2 100644 --- a/fecdec_filter.c +++ b/fecdec_filter.c @@ -1,8 +1,4 @@ -/* - * Copyright (C) 2009 Andre Noll - * - * Licensed under the GPL v2. For licencing details see COPYING. - */ +/* Copyright (C) 2009 Andre Noll , see file COPYING. */ /** \file fecdec_filter.c A filter that fec-decodes an audio stream. */ diff --git a/file_write.c b/file_write.c index 9837e810..9a5ed5d7 100644 --- a/file_write.c +++ b/file_write.c @@ -1,8 +1,4 @@ -/* - * Copyright (C) 2006 Andre Noll - * - * Licensed under the GPL v2. For licencing details see COPYING. - */ +/* Copyright (C) 2006 Andre Noll , see file COPYING. */ /** \file file_write.c simple output plugin for testing purposes */ diff --git a/filter.c b/filter.c index 156e049b..dfdadab2 100644 --- a/filter.c +++ b/filter.c @@ -1,8 +1,4 @@ -/* - * Copyright (C) 2005 Andre Noll - * - * Licensed under the GPL v2. For licencing details see COPYING. - */ +/* Copyright (C) 2005 Andre Noll , see file COPYING. */ /** \file filter.c The stand-alone filter program. */ diff --git a/filter.h b/filter.h index ab98c244..69d4dfee 100644 --- a/filter.h +++ b/filter.h @@ -1,8 +1,4 @@ -/* - * Copyright (C) 2005 Andre Noll - * - * Licensed under the GPL v2. For licencing details see COPYING. - */ +/* Copyright (C) 2005 Andre Noll , see file COPYING. */ /** \file filter.h Filter-related structures and exported symbols from filter_common.c. */ diff --git a/filter_common.c b/filter_common.c index 5533d4dc..add788a8 100644 --- a/filter_common.c +++ b/filter_common.c @@ -1,8 +1,4 @@ -/* - * Copyright (C) 2005 Andre Noll - * - * Licensed under the GPL v2. For licencing details see COPYING. - */ +/* Copyright (C) 2005 Andre Noll , see file COPYING. */ /** \file filter_common.c Common helper functions for filter input/output. */ diff --git a/flac_afh.c b/flac_afh.c index e2d53802..45373ea1 100644 --- a/flac_afh.c +++ b/flac_afh.c @@ -1,8 +1,4 @@ -/* - * Copyright (C) 2011 Andre Noll - * - * Licensed under the GPL v2. For licencing details see COPYING. - */ +/* Copyright (C) 2011 Andre Noll , see file COPYING. */ /** \file flac_afh.c Audio format handler for flac files. */ diff --git a/flacdec_filter.c b/flacdec_filter.c index 16237acb..6a3a8eff 100644 --- a/flacdec_filter.c +++ b/flacdec_filter.c @@ -1,8 +1,4 @@ -/* - * Copyright (C) 2011 Andre Noll - * - * Licensed under the GPL v2. For licencing details see COPYING. - */ +/* Copyright (C) 2011 Andre Noll , see file COPYING. */ /** \file flacdec_filter.c The flac decoder. */ diff --git a/gcrypt.c b/gcrypt.c index 1fde479e..d5cb49a4 100644 --- a/gcrypt.c +++ b/gcrypt.c @@ -1,8 +1,4 @@ -/* - * Copyright (C) 2011 Andre Noll - * - * Licensed under the GPL v2. For licencing details see COPYING. - */ +/* Copyright (C) 2011 Andre Noll , see file COPYING. */ /** \file gcrypt.c Libgrcypt-based encryption/decryption routines. */ diff --git a/grab_client.c b/grab_client.c index 382b0470..83706493 100644 --- a/grab_client.c +++ b/grab_client.c @@ -1,8 +1,4 @@ -/* - * Copyright (C) 2006 Andre Noll - * - * Licensed under the GPL v2. For licencing details see COPYING. - */ +/* Copyright (C) 2006 Andre Noll , see file COPYING. */ /** \file grab_client.c Functions for grabbing the audio stream. */ diff --git a/grab_client.h b/grab_client.h index 3f3a0c03..9bc01864 100644 --- a/grab_client.h +++ b/grab_client.h @@ -1,8 +1,4 @@ -/* - * Copyright (C) 2006 Andre Noll - * - * Licensed under the GPL v2. For licencing details see COPYING. - */ +/* Copyright (C) 2006 Andre Noll , see file COPYING. */ /** \file grab_client.h exported symbols from grab_client.c */ diff --git a/gui.c b/gui.c index 493bc3c9..6882a31c 100644 --- a/gui.c +++ b/gui.c @@ -1,8 +1,4 @@ -/* - * Copyright (C) 1998 Andre Noll - * - * Licensed under the GPL v2. For licencing details see COPYING. - */ +/* Copyright (C) 1998 Andre Noll , see file COPYING. */ /** \file gui.c Curses-based interface for paraslash. */ diff --git a/gui.h b/gui.h index 1cfd39c4..d8685818 100644 --- a/gui.h +++ b/gui.h @@ -1,8 +1,4 @@ -/* - * Copyright (C) 2007 Andre Noll - * - * Licensed under the GPL v2. For licencing details see COPYING. - */ +/* Copyright (C) 2007 Andre Noll , see file COPYING. */ /** \file gui.h symbols used by gui and gui_theme */ diff --git a/gui_theme.c b/gui_theme.c index 78527efe..745abe28 100644 --- a/gui_theme.c +++ b/gui_theme.c @@ -1,8 +1,4 @@ -/* - * Copyright (C) 2005 Andre Noll - * - * Licensed under the GPL v2. For licencing details see COPYING. - */ +/* Copyright (C) 2005 Andre Noll , see file COPYING. */ /** \file gui_theme.c Theme definitions. */ diff --git a/http_recv.c b/http_recv.c index 67691a34..c581ebdd 100644 --- a/http_recv.c +++ b/http_recv.c @@ -1,8 +1,4 @@ -/* - * Copyright (C) 2005 Andre Noll - * - * Licensed under the GPL v2. For licencing details see COPYING. - */ +/* Copyright (C) 2005 Andre Noll , see file COPYING. */ /** \file http_recv.c paraslash's http receiver */ diff --git a/http_send.c b/http_send.c index 26536d07..dace5c23 100644 --- a/http_send.c +++ b/http_send.c @@ -1,8 +1,4 @@ -/* - * Copyright (C) 2005 Andre Noll - * - * Licensed under the GPL v2. For licencing details see COPYING. - */ +/* Copyright (C) 2005 Andre Noll , see file COPYING. */ /** \file http_send.c paraslash's http sender */ diff --git a/imdct.c b/imdct.c index 5791353b..93577b54 100644 --- a/imdct.c +++ b/imdct.c @@ -7,8 +7,7 @@ * Copyright (c) 2002 Fabrice Bellard * Partly based on libdjbfft by D. J. Bernstein * - * Licensed under the GNU Lesser General Public License. - * For licencing details see COPYING.LIB. + * Licensed under the GNU Lesser General Public License, see file COPYING.LIB. */ /** diff --git a/interactive.c b/interactive.c index 91ab1559..190cdf29 100644 --- a/interactive.c +++ b/interactive.c @@ -1,8 +1,4 @@ -/* - * Copyright (C) 2011 Andre Noll - * - * Licensed under the GPL v2. For licencing details see COPYING. - */ +/* Copyright (C) 2011 Andre Noll , see file COPYING. */ /** \file interactive.c Readline abstraction for interactive sessions. */ diff --git a/interactive.h b/interactive.h index 82d3cd71..40ff2940 100644 --- a/interactive.h +++ b/interactive.h @@ -1,8 +1,4 @@ -/* - * Copyright (C) 2011 Andre Noll - * - * Licensed under the GPL v2. For licencing details see COPYING. - */ +/* Copyright (C) 2011 Andre Noll , see file COPYING. */ /** \file interactive.h Public API for interactive sessions. */ diff --git a/ipc.c b/ipc.c index 3cc5c156..85013a63 100644 --- a/ipc.c +++ b/ipc.c @@ -1,8 +1,4 @@ -/* - * Copyright (C) 2006 Andre Noll - * - * Licensed under the GPL v2. For licencing details see COPYING. - */ +/* Copyright (C) 2006 Andre Noll , see file COPYING. */ /** \file ipc.c Inter-process communication and shared memory helpers. */ diff --git a/mix.h b/mix.h index 5d68b2bb..cad435e8 100644 --- a/mix.h +++ b/mix.h @@ -1,8 +1,4 @@ -/* - * Copyright (C) 2012 Andre Noll - * - * Licensed under the GPL v2. For licencing details see COPYING. - */ +/* Copyright (C) 2012 Andre Noll , see file COPYING. */ /** \file mix.h Mixer API for para_mixer. */ diff --git a/mixer.c b/mixer.c index 0c08e2f6..00af08a4 100644 --- a/mixer.c +++ b/mixer.c @@ -1,8 +1,4 @@ -/* - * Copyright (C) 1998 Andre Noll - * - * Licensed under the GPL v2. For licencing details see COPYING. - */ +/* Copyright (C) 1998 Andre Noll , see file COPYING. */ /** \file mixer.c A volume fader and alarm clock for OSS. */ diff --git a/mm.c b/mm.c index 47e88864..358783a1 100644 --- a/mm.c +++ b/mm.c @@ -1,8 +1,4 @@ -/* - * Copyright (C) 2007 Andre Noll - * - * Licensed under the GPL v2. For licencing details see COPYING. - */ +/* Copyright (C) 2007 Andre Noll , see file COPYING. */ /** \file mm.c Paraslash's mood methods. */ diff --git a/mm.h b/mm.h index e6c0d125..28038e72 100644 --- a/mm.h +++ b/mm.h @@ -1,8 +1,4 @@ -/* - * Copyright (C) 2007 Andre Noll - * - * Licensed under the GPL v2. For licencing details see COPYING. - */ +/* Copyright (C) 2007 Andre Noll , see file COPYING. */ /** \file mm.h Symbols and declarations for mood methods. */ diff --git a/mood.c b/mood.c index c06f695c..ae8364a2 100644 --- a/mood.c +++ b/mood.c @@ -1,8 +1,4 @@ -/* - * Copyright (C) 2007 Andre Noll - * - * Licensed under the GPL v2. For licencing details see COPYING. - */ +/* Copyright (C) 2007 Andre Noll , see file COPYING. */ /** \file mood.c Paraslash's mood handling functions. */ diff --git a/mood.h b/mood.h index 87050142..fcfe1efc 100644 --- a/mood.h +++ b/mood.h @@ -1,8 +1,4 @@ -/* - * Copyright (C) 2007 Andre Noll - * - * Licensed under the GPL v2. For licencing details see COPYING. - */ +/* Copyright (C) 2007 Andre Noll , see file COPYING. */ /** \file mood.h Public functions of mood.c. */ diff --git a/mp.c b/mp.c index 12fe336e..3c84a054 100644 --- a/mp.c +++ b/mp.c @@ -1,8 +1,4 @@ -/* - * Copyright (C) 2017 Andre Noll - * - * Licensed under the GPL v2. For licencing details see COPYING. - */ +/* Copyright (C) 2017 Andre Noll , see file COPYING. */ /** * \file mp.c Mood parser helper functions. diff --git a/mp.h b/mp.h index 93bbab3e..febbe324 100644 --- a/mp.h +++ b/mp.h @@ -1,8 +1,4 @@ -/* - * Copyright (C) 2017 Andre Noll - * - * Licensed under the GPL v2. For licencing details see COPYING. - */ +/* Copyright (C) 2017 Andre Noll , see file COPYING. */ /** * \file mp.h Internal mood parser API (backend). diff --git a/mp3_afh.c b/mp3_afh.c index 08837bec..42dd7539 100644 --- a/mp3_afh.c +++ b/mp3_afh.c @@ -1,8 +1,4 @@ -/* - * Copyright (C) 2003 Andre Noll - * - * Licensed under the GPL v2. For licencing details see COPYING. - */ +/* Copyright (C) 2003 Andre Noll , see file COPYING. */ /** \file mp3_afh.c para_server's mp3 audio format handler */ diff --git a/mp3dec_filter.c b/mp3dec_filter.c index b053aaa8..ccb1553b 100644 --- a/mp3dec_filter.c +++ b/mp3dec_filter.c @@ -1,8 +1,4 @@ -/* - * Copyright (C) 2005 Andre Noll - * - * Licensed under the GPL v2. For licencing details see COPYING. - */ +/* Copyright (C) 2005 Andre Noll , see file COPYING. */ /** \file mp3dec_filter.c Paraslash's mp3 decoder. */ diff --git a/net.c b/net.c index a58d84ef..3f76d21c 100644 --- a/net.c +++ b/net.c @@ -1,8 +1,4 @@ -/* - * Copyright (C) 2005 Andre Noll - * - * Licensed under the GPL v2. For licencing details see COPYING. - */ +/* Copyright (C) 2005 Andre Noll , see file COPYING. */ /** \file net.c Networking-related helper functions. */ diff --git a/net.h b/net.h index a8dd650b..f172131e 100644 --- a/net.h +++ b/net.h @@ -1,8 +1,4 @@ -/* - * Copyright (C) 2006 Andre Noll - * - * Licensed under the GPL v2. For licencing details see COPYING. - */ +/* Copyright (C) 2006 Andre Noll , see file COPYING. */ /** \file net.h exported symbols from net.c */ /** diff --git a/ogg_afh.c b/ogg_afh.c index 8d8cadc7..93ad14bb 100644 --- a/ogg_afh.c +++ b/ogg_afh.c @@ -1,8 +1,4 @@ -/* - * Copyright (C) 2004 Andre Noll - * - * Licensed under the GPL v2. For licencing details see COPYING. - */ +/* Copyright (C) 2004 Andre Noll , see file COPYING. */ /** \file ogg_afh.c Audio format handler for ogg/vorbis files. */ diff --git a/ogg_afh_common.c b/ogg_afh_common.c index eb90c5f7..46465de1 100644 --- a/ogg_afh_common.c +++ b/ogg_afh_common.c @@ -1,8 +1,4 @@ -/* - * Copyright (C) 2004 Andre Noll - * - * Licensed under the GPL v2. For licencing details see COPYING. - */ +/* Copyright (C) 2004 Andre Noll , see file COPYING. */ /** \file ogg_afh_common.c Functions common to all ogg/ codecs. */ diff --git a/ogg_afh_common.h b/ogg_afh_common.h index 8f3494a6..e0cf2d40 100644 --- a/ogg_afh_common.h +++ b/ogg_afh_common.h @@ -1,8 +1,4 @@ -/* - * Copyright (C) 2010 Andre Noll - * - * Licensed under the GPL v2. For licencing details see COPYING. - */ +/* Copyright (C) 2010 Andre Noll , see file COPYING. */ /** * \file ogg_afh_common.h Structures and prototypes common to audio format diff --git a/oggdec_filter.c b/oggdec_filter.c index 9fa80c55..708a27e5 100644 --- a/oggdec_filter.c +++ b/oggdec_filter.c @@ -1,8 +1,4 @@ -/* - * Copyright (C) 2005 Andre Noll - * - * Licensed under the GPL v2. For licencing details see COPYING. - */ +/* Copyright (C) 2005 Andre Noll , see file COPYING. */ /** \file oggdec_filter.c Paraslash's ogg vorbis decoder. */ diff --git a/opus_afh.c b/opus_afh.c index 53419243..ed6fe5c8 100644 --- a/opus_afh.c +++ b/opus_afh.c @@ -1,8 +1,4 @@ -/* - * Copyright (C) 2012 Andre Noll - * - * Licensed under the GPL v2. For licencing details see COPYING. - */ +/* Copyright (C) 2012 Andre Noll , see file COPYING. */ /** \file opus_afh.c Audio format handler for ogg/opus files. */ diff --git a/opus_common.h b/opus_common.h index 2160f151..f8cf459c 100644 --- a/opus_common.h +++ b/opus_common.h @@ -1,8 +1,4 @@ -/* - * Copyright (C) 2013 Andre Noll - * - * Licensed under the GPL v2. For licencing details see COPYING. - */ +/* Copyright (C) 2013 Andre Noll , see file COPYING. */ /** * \file opus_common.h diff --git a/opusdec_filter.c b/opusdec_filter.c index 6f9d526c..10ed394d 100644 --- a/opusdec_filter.c +++ b/opusdec_filter.c @@ -4,7 +4,7 @@ * Copyright (c) 2007-2012 Xiph.Org Foundation * Copyright (C) 2012 Andre Noll * - * Licensed under the GPL v2. For licencing details see COPYING. + * Licensed under the GPL v2, see file COPYING. */ /** \file opusdec_filter.c The ogg/opus decoder. */ diff --git a/oss_mix.c b/oss_mix.c index 7fbdba5b..f80301e9 100644 --- a/oss_mix.c +++ b/oss_mix.c @@ -1,8 +1,4 @@ -/* - * Copyright (C) 1998 Andre Noll - * - * Licensed under the GPL v2. For licencing details see COPYING. - */ +/* Copyright (C) 1998 Andre Noll , see file COPYING. */ /** \file oss_mix.c The OSS mixer plugin. */ diff --git a/oss_write.c b/oss_write.c index 6f646c90..d4b76585 100644 --- a/oss_write.c +++ b/oss_write.c @@ -1,8 +1,4 @@ -/* - * Copyright (C) 2009 Andre Noll - * - * Licensed under the GPL v2. For licencing details see COPYING. - */ +/* Copyright (C) 2009 Andre Noll , see file COPYING. */ /** \file oss_write.c Paraslash's oss output plugin. */ diff --git a/para.h b/para.h index 323a4fb5..b406818b 100644 --- a/para.h +++ b/para.h @@ -1,8 +1,4 @@ -/* - * Copyright (C) 1997 Andre Noll - * - * Licensed under the GPL v2. For licencing details see COPYING. - */ +/* Copyright (C) 1997 Andre Noll , see file COPYING. */ /** \file para.h global paraslash definitions */ diff --git a/play.c b/play.c index 2155ebf8..b304e427 100644 --- a/play.c +++ b/play.c @@ -1,8 +1,4 @@ -/* - * Copyright (C) 2012 Andre Noll - * - * Licensed under the GPL v2. For licencing details see COPYING. - */ +/* Copyright (C) 2012 Andre Noll , see file COPYING. */ /** \file play.c Paraslash's standalone player. */ diff --git a/playlist.c b/playlist.c index 55a83436..5f83b0fe 100644 --- a/playlist.c +++ b/playlist.c @@ -1,8 +1,4 @@ -/* - * Copyright (C) 2007 Andre Noll - * - * Licensed under the GPL v2. For licencing details see COPYING. - */ +/* Copyright (C) 2007 Andre Noll , see file COPYING. */ #include #include diff --git a/portable_io.h b/portable_io.h index 00704b29..fdd4165d 100644 --- a/portable_io.h +++ b/portable_io.h @@ -1,8 +1,4 @@ -/* - * Copyright (C) 2007 Andre Noll - * - * Licensed under the GPL v2. For licencing details see COPYING. - */ +/* Copyright (C) 2007 Andre Noll , see file COPYING. */ /** \file portable_io.h Inline functions for binary IO. */ diff --git a/prebuffer_filter.c b/prebuffer_filter.c index 8ca1630d..ad237376 100644 --- a/prebuffer_filter.c +++ b/prebuffer_filter.c @@ -1,8 +1,4 @@ -/* - * Copyright (C) 2009 Andre Noll - * - * Licensed under the GPL v2. For licencing details see COPYING. - */ +/* Copyright (C) 2009 Andre Noll , see file COPYING. */ /** \file prebuffer_filter.c Paraslash's prebuffering filter. */ diff --git a/recv.c b/recv.c index 26aa7fd7..7b46d78c 100644 --- a/recv.c +++ b/recv.c @@ -1,8 +1,4 @@ -/* - * Copyright (C) 2005 Andre Noll - * - * Licensed under the GPL v2. For licencing details see COPYING. - */ +/* Copyright (C) 2005 Andre Noll , see file COPYING. */ /** \file recv.c the stand-alone audio stream receiver */ diff --git a/recv.h b/recv.h index 6fb70b9a..f88ebd84 100644 --- a/recv.h +++ b/recv.h @@ -1,8 +1,4 @@ -/* - * Copyright (C) 2005 Andre Noll - * - * Licensed under the GPL v2. For licencing details see COPYING. - */ +/* Copyright (C) 2005 Andre Noll , see file COPYING. */ /** \file recv.h Receiver-related structures and exported symbols of recv_common.c. */ diff --git a/recv_common.c b/recv_common.c index 1ad84438..948de474 100644 --- a/recv_common.c +++ b/recv_common.c @@ -1,8 +1,4 @@ -/* - * Copyright (C) 2006 Andre Noll - * - * Licensed under the GPL v2. For licencing details see COPYING. - */ +/* Copyright (C) 2006 Andre Noll , see file COPYING. */ /** \file recv_common.c common functions of para_recv and para_audiod */ diff --git a/resample_filter.c b/resample_filter.c index 72a1864e..8a87b1f3 100644 --- a/resample_filter.c +++ b/resample_filter.c @@ -1,8 +1,4 @@ -/* - * Copyright (C) 2012 Andre Noll - * - * Licensed under the GPL v2. For licencing details see COPYING. - */ +/* Copyright (C) 2012 Andre Noll , see file COPYING. */ /** \file resample_filter.c A sample rate converter based on libsamplerate. */ diff --git a/ringbuffer.c b/ringbuffer.c index e6f03ee8..76e2d7af 100644 --- a/ringbuffer.c +++ b/ringbuffer.c @@ -1,8 +1,4 @@ -/* - * Copyright (C) 2006 Andre Noll - * - * Licensed under the GPL v2. For licencing details see COPYING. - */ +/* Copyright (C) 2006 Andre Noll , see file COPYING. */ /** \file ringbuffer.c Simple ringbuffer implementation */ diff --git a/ringbuffer.h b/ringbuffer.h index b422d576..7a5635ca 100644 --- a/ringbuffer.h +++ b/ringbuffer.h @@ -1,8 +1,4 @@ -/* - * Copyright (C) 2006 Andre Noll - * - * Licensed under the GPL v2. For licencing details see COPYING. - */ +/* Copyright (C) 2006 Andre Noll , see file COPYING. */ /** \file ringbuffer.h Exported symbols from ringbuffer.c. */ diff --git a/sched.c b/sched.c index 297348a1..4fc65b4b 100644 --- a/sched.c +++ b/sched.c @@ -1,8 +1,4 @@ -/* - * Copyright (C) 2006 Andre Noll - * - * Licensed under the GPL v2. For licencing details see COPYING. - */ +/* Copyright (C) 2006 Andre Noll , see file COPYING. */ /** \file sched.c Paraslash's scheduling functions. */ diff --git a/sched.h b/sched.h index ada1cc10..35e2503e 100644 --- a/sched.h +++ b/sched.h @@ -1,8 +1,4 @@ -/* - * Copyright (C) 2006 Andre Noll - * - * Licensed under the GPL v2. For licencing details see COPYING. - */ +/* Copyright (C) 2006 Andre Noll , see file COPYING. */ /** \file sched.h Sched and task structures and exported symbols from sched.c. */ diff --git a/score.c b/score.c index 30761e75..98358933 100644 --- a/score.c +++ b/score.c @@ -1,8 +1,4 @@ -/* - * Copyright (C) 2007 Andre Noll - * - * Licensed under the GPL v2. For licencing details see COPYING. - */ +/* Copyright (C) 2007 Andre Noll , see file COPYING. */ /** \file score.c Scoring functions to determine the audio file streaming order. */ #include diff --git a/send.h b/send.h index b70ba094..9a6e5f74 100644 --- a/send.h +++ b/send.h @@ -1,8 +1,4 @@ -/* - * Copyright (C) 2005 Andre Noll - * - * Licensed under the GPL v2. For licencing details see COPYING. - */ +/* Copyright (C) 2005 Andre Noll , see file COPYING. */ /** \file send.h Sender-related defines and structures. */ diff --git a/send_common.c b/send_common.c index b03be877..acb7aa6d 100644 --- a/send_common.c +++ b/send_common.c @@ -1,8 +1,4 @@ -/* - * Copyright (C) 2005 Andre Noll - * - * Licensed under the GPL v2. For licencing details see COPYING. - */ +/* Copyright (C) 2005 Andre Noll , see file COPYING. */ /** \file send_common.c Functions used by more than one paraslash sender. */ diff --git a/server.c b/server.c index c5f9ede6..b86137f9 100644 --- a/server.c +++ b/server.c @@ -1,8 +1,4 @@ -/* - * Copyright (C) 1997 Andre Noll - * - * Licensed under the GPL v2. For licencing details see COPYING. - */ +/* Copyright (C) 1997 Andre Noll , see file COPYING. */ /** \file server.c Paraslash's main server. */ diff --git a/server.h b/server.h index 0bfca305..079ff5a0 100644 --- a/server.h +++ b/server.h @@ -1,8 +1,4 @@ -/* - * Copyright (C) 1997 Andre Noll - * - * Licensed under the GPL v2. For licencing details see COPYING. - */ +/* Copyright (C) 1997 Andre Noll , see file COPYING. */ /** \file server.h Common server data structures. */ diff --git a/sideband.c b/sideband.c index 9b64341a..ed7867a1 100644 --- a/sideband.c +++ b/sideband.c @@ -1,8 +1,4 @@ -/* - * Copyright (C) 2012 Andre Noll - * - * Licensed under the GPL v2. For licencing details see COPYING. - */ +/* Copyright (C) 2012 Andre Noll , see file COPYING. */ /** \file sideband.c Implementation of the sideband API. */ diff --git a/sideband.h b/sideband.h index c9b698f9..3023c7b6 100644 --- a/sideband.h +++ b/sideband.h @@ -1,8 +1,4 @@ -/* - * Copyright (C) 2012 Andre Noll - * - * Licensed under the GPL v2. For licencing details see COPYING. - */ +/* Copyright (C) 2012 Andre Noll , see file COPYING. */ /** \file sideband.h exported symbols from sideband.c */ diff --git a/signal.c b/signal.c index 9153349f..32d6ab66 100644 --- a/signal.c +++ b/signal.c @@ -1,8 +1,4 @@ -/* - * Copyright (C) 2004 Andre Noll - * - * Licensed under the GPL v2. For licencing details see COPYING. - */ +/* Copyright (C) 2004 Andre Noll , see file COPYING. */ /** \file signal.c Signal handling functions. */ #include diff --git a/signal.h b/signal.h index 742f677a..e5532ded 100644 --- a/signal.h +++ b/signal.h @@ -1,8 +1,4 @@ -/* - * Copyright (C) 2007 Andre Noll - * - * Licensed under the GPL v2. For licencing details see COPYING. - */ +/* Copyright (C) 2007 Andre Noll , see file COPYING. */ /** \file signal.h exported symbols from signal.c */ diff --git a/spx.h b/spx.h index 1567ce87..4f46f03b 100644 --- a/spx.h +++ b/spx.h @@ -1,8 +1,4 @@ -/* - * Copyright (C) 2010 Andre Noll - * - * Licensed under the GPL v2. For licencing details see COPYING. - */ +/* Copyright (C) 2010 Andre Noll , see file COPYING. */ /** * \file spx.h Structures and prototypes common to the speex audio format diff --git a/spx_afh.c b/spx_afh.c index cd65ac51..e2323647 100644 --- a/spx_afh.c +++ b/spx_afh.c @@ -1,8 +1,4 @@ -/* - * Copyright (C) 2010 Andre Noll - * - * Licensed under the GPL v2. For licencing details see COPYING. - */ +/* Copyright (C) 2010 Andre Noll , see file COPYING. */ /* This file is based on speexdec.c, by Jean-Marc Valin, see below. */ diff --git a/spx_common.c b/spx_common.c index c850cd19..b8eb9912 100644 --- a/spx_common.c +++ b/spx_common.c @@ -2,7 +2,7 @@ * Copyright (C) 2002-2006 Jean-Marc Valin * Copyright (C) 2010 Andre Noll * - * Licensed under the GPL v2. For licencing details see COPYING. + * Licensed under the GPL v2, see file COPYING. */ /** diff --git a/spxdec_filter.c b/spxdec_filter.c index 3266d090..5aa78b44 100644 --- a/spxdec_filter.c +++ b/spxdec_filter.c @@ -2,7 +2,7 @@ * Copyright (C) 2002-2006 Jean-Marc Valin * Copyright (C) 2010 Andre Noll * - * Licensed under the GPL v2. For licencing details see COPYING. + * Licensed under the GPL v2, see file COPYING. */ /** \file spxdec_filter.c Paraslash's ogg/speex decoder. */ diff --git a/stat.c b/stat.c index ac18363d..43e7998a 100644 --- a/stat.c +++ b/stat.c @@ -1,8 +1,4 @@ -/* - * Copyright (C) 2005 Andre Noll - * - * Licensed under the GPL v2. For licencing details see COPYING. - */ +/* Copyright (C) 2005 Andre Noll , see file COPYING. */ /** * \file stat.c Functions used for sending/receiving the status of para_server diff --git a/stdin.c b/stdin.c index 7b70690b..9408235a 100644 --- a/stdin.c +++ b/stdin.c @@ -1,8 +1,4 @@ -/* - * Copyright (C) 2006 Andre Noll - * - * Licensed under the GPL v2. For licencing details see COPYING. - */ +/* Copyright (C) 2006 Andre Noll , see file COPYING. */ /** \file stdin.c Functions that deal with reading from stdin. */ diff --git a/stdin.h b/stdin.h index ca33b08a..8caee4cb 100644 --- a/stdin.h +++ b/stdin.h @@ -1,8 +1,4 @@ -/* - * Copyright (C) 2006 Andre Noll - * - * Licensed under the GPL v2. For licencing details see COPYING. - */ +/* Copyright (C) 2006 Andre Noll , see file COPYING. */ /** \file stdin.h The standard in task structure. */ diff --git a/stdout.c b/stdout.c index 9fc20ed0..1f779109 100644 --- a/stdout.c +++ b/stdout.c @@ -1,8 +1,4 @@ -/* - * Copyright (C) 2006 Andre Noll - * - * Licensed under the GPL v2. For licencing details see COPYING. - */ +/* Copyright (C) 2006 Andre Noll , see file COPYING. */ /** \file stdout.c Functions that deal with writing to stdout. */ diff --git a/stdout.h b/stdout.h index 0559fb5c..114c44f4 100644 --- a/stdout.h +++ b/stdout.h @@ -1,8 +1,4 @@ -/* - * Copyright (C) 2006 Andre Noll - * - * Licensed under the GPL v2. For licencing details see COPYING. - */ +/* Copyright (C) 2006 Andre Noll , see file COPYING. */ /** \file stdout.h Writing to stdout via buffer trees. */ diff --git a/string.c b/string.c index e675502c..742eafdf 100644 --- a/string.c +++ b/string.c @@ -1,8 +1,4 @@ -/* - * Copyright (C) 2004 Andre Noll - * - * Licensed under the GPL v2. For licencing details see COPYING. - */ +/* Copyright (C) 2004 Andre Noll , see file COPYING. */ /** \file string.c Memory allocation and string handling functions. */ diff --git a/string.h b/string.h index a4093003..10251ae7 100644 --- a/string.h +++ b/string.h @@ -1,8 +1,4 @@ -/* - * Copyright (C) 2006 Andre Noll - * - * Licensed under the GPL v2. For licencing details see COPYING. - */ +/* Copyright (C) 2006 Andre Noll , see file COPYING. */ /** \file string.h exported symbols from string.c */ diff --git a/sync_filter.c b/sync_filter.c index efc10116..2ca2a657 100644 --- a/sync_filter.c +++ b/sync_filter.c @@ -1,8 +1,4 @@ -/* - * Copyright (C) 2013 Andre Noll - * - * Licensed under the GPL v2. For licencing details see COPYING. - */ +/* Copyright (C) 2013 Andre Noll , see file COPYING. */ /** \file sync_filter.c Playback synchronization filter. */ diff --git a/t/test-lib.sh b/t/test-lib.sh index 9c6516e2..75249fe3 100644 --- a/t/test-lib.sh +++ b/t/test-lib.sh @@ -1,9 +1,8 @@ #!/bin/bash -# paraslash test suite helper functions -# Licensed under the GPL v2. For licencing details see COPYING. -# uses ideas and code from git's test-lib.sh, Copyright (c) 2005 Junio C Hamano - +# Test suite helper functions, uses ideas and code from git's test-lib.sh, +# Copyright (c) 2005 Junio C Hamano. Licensed under the GPL v2, see file +# COPYING. get_audio_file_paths() { diff --git a/time.c b/time.c index 90c67356..bb47b31b 100644 --- a/time.c +++ b/time.c @@ -1,8 +1,4 @@ -/* - * Copyright (C) 2005 Andre Noll - * - * Licensed under the GPL v2. For licencing details see COPYING. - */ +/* Copyright (C) 2005 Andre Noll , see file COPYING. */ #include "para.h" /** \file time.c Helper functions for dealing with time values. */ diff --git a/udp_recv.c b/udp_recv.c index 4620d61a..67846b14 100644 --- a/udp_recv.c +++ b/udp_recv.c @@ -1,8 +1,4 @@ -/* - * Copyright (C) 2005 Andre Noll - * - * Licensed under the GPL v2. For licencing details see COPYING. - */ +/* Copyright (C) 2005 Andre Noll , see file COPYING. */ /** \file udp_recv.c Paraslash's udp receiver */ #include diff --git a/udp_send.c b/udp_send.c index 0ea95e41..49c17631 100644 --- a/udp_send.c +++ b/udp_send.c @@ -1,8 +1,4 @@ -/* - * Copyright (C) 2005 Andre Noll - * - * Licensed under the GPL v2. For licencing details see COPYING. - */ +/* Copyright (C) 2005 Andre Noll , see file COPYING. */ /** \file udp_send.c Para_server's udp sender. */ diff --git a/user_list.c b/user_list.c index b2d2ff5e..e4866029 100644 --- a/user_list.c +++ b/user_list.c @@ -1,8 +1,4 @@ -/* - * Copyright (C) 2006 Andre Noll - * - * Licensed under the GPL v2. For licencing details see COPYING. - */ +/* Copyright (C) 2006 Andre Noll , see file COPYING. */ /** \file user_list.c User handling for para_server. */ diff --git a/user_list.h b/user_list.h index 948ed503..41fad164 100644 --- a/user_list.h +++ b/user_list.h @@ -1,8 +1,4 @@ -/* - * Copyright (C) 2006 Andre Noll - * - * Licensed under the GPL v2. For licencing details see COPYING. - */ +/* Copyright (C) 2006 Andre Noll , see file COPYING. */ /** \file user_list.h exported functions from user_list.c */ diff --git a/version.c b/version.c index bc61f54b..d057f9c3 100644 --- a/version.c +++ b/version.c @@ -1,8 +1,4 @@ -/* - * Copyright (C) 2013 Andre Noll - * - * Licensed under the GPL v2. For licencing details see COPYING. - */ +/* Copyright (C) 2013 Andre Noll , see file COPYING. */ /** \file version.c Some helpers for printing version and copyright strings. */ diff --git a/vss.c b/vss.c index f225aa74..cf51f43f 100644 --- a/vss.c +++ b/vss.c @@ -1,8 +1,4 @@ -/* - * Copyright (C) 1997 Andre Noll - * - * Licensed under the GPL v2. For licencing details see COPYING. - */ +/* Copyright (C) 1997 Andre Noll , see file COPYING. */ /** \file vss.c The virtual streaming system. * diff --git a/vss.h b/vss.h index bf135786..5ebcc4e4 100644 --- a/vss.h +++ b/vss.h @@ -1,8 +1,4 @@ -/* - * Copyright (C) 2005 Andre Noll - * - * Licensed under the GPL v2. For licencing details see COPYING. - */ +/* Copyright (C) 2005 Andre Noll , see file COPYING. */ /** \file vss.h Exported functions from vss.c (para_server). */ diff --git a/wav_filter.c b/wav_filter.c index eb38cd7d..e749160d 100644 --- a/wav_filter.c +++ b/wav_filter.c @@ -1,8 +1,4 @@ -/* - * Copyright (C) 2005 Andre Noll - * - * Licensed under the GPL v2. For licencing details see COPYING. - */ +/* Copyright (C) 2005 Andre Noll , see file COPYING. */ /** \file wav_filter.c A filter that inserts a wave header. */ diff --git a/wma_afh.c b/wma_afh.c index 01674f1a..e6048a86 100644 --- a/wma_afh.c +++ b/wma_afh.c @@ -1,8 +1,4 @@ -/* - * Copyright (C) 2009 Andre Noll - * - * Licensed under the GPL v2. For licencing details see COPYING. - */ +/* Copyright (C) 2009 Andre Noll , see file COPYING. */ /** \file wma_afh.c The audio format handler for WMA files. */ diff --git a/wma_common.c b/wma_common.c index fcaf3ce4..b123b5d2 100644 --- a/wma_common.c +++ b/wma_common.c @@ -1,8 +1,4 @@ -/* - * Copyright (C) 2009 Andre Noll - * - * Licensed under the GPL v2. For licencing details see COPYING. - */ +/* Copyright (C) 2009 Andre Noll , see file COPYING. */ /** \file wma_common.c Functions used by both the WMA afh and decoder. */ diff --git a/wmadec_filter.c b/wmadec_filter.c index b96f1460..edf50cb0 100644 --- a/wmadec_filter.c +++ b/wmadec_filter.c @@ -5,8 +5,7 @@ * * Copyright (c) 2002 The FFmpeg Project * - * Licensed under the GNU Lesser General Public License. - * For licencing details see COPYING.LIB. + * Licensed under the GNU Lesser General Public License, see file COPYING.LIB. */ /** \file wmadec_filter.c paraslash's WMA decoder. */ diff --git a/write.c b/write.c index a1907b6f..acfb9460 100644 --- a/write.c +++ b/write.c @@ -1,8 +1,4 @@ -/* - * Copyright (C) 2005 Andre Noll - * - * Licensed under the GPL v2. For licencing details see COPYING. - */ +/* Copyright (C) 2005 Andre Noll , see file COPYING. */ /** \file write.c Paraslash's standalone wav/raw player. */ diff --git a/write.h b/write.h index fd3983dd..cb0beff8 100644 --- a/write.h +++ b/write.h @@ -1,8 +1,4 @@ -/* - * Copyright (C) 2006 Andre Noll - * - * Licensed under the GPL v2. For licencing details see COPYING. - */ +/* Copyright (C) 2006 Andre Noll , see file COPYING. */ /** \file write.h Writer-related structures. */ diff --git a/write_common.c b/write_common.c index d4d1b10b..14cc98a4 100644 --- a/write_common.c +++ b/write_common.c @@ -1,8 +1,4 @@ -/* - * Copyright (C) 2006 Andre Noll - * - * Licensed under the GPL v2. For licencing details see COPYING. - */ +/* Copyright (C) 2006 Andre Noll , see file COPYING. */ /** \file write_common.c common functions of para_audiod and para_write */ diff --git a/yy/mp.lex b/yy/mp.lex index 1e06b8dc..2dbe21b7 100644 --- a/yy/mp.lex +++ b/yy/mp.lex @@ -1,8 +1,4 @@ -/* - * Copyright (C) 2017 Andre Noll - * - * Licensed under the GPL v2. For licencing details see COPYING. - */ +/* Copyright (C) 2017 Andre Noll , see file COPYING. */ /* * Since we do not supply yywrap(), we use noyywrap to instruct the scanner to diff --git a/yy/mp.y b/yy/mp.y index 82ef5140..0f2c9cb8 100644 --- a/yy/mp.y +++ b/yy/mp.y @@ -1,8 +1,4 @@ -/* - * Copyright (C) 2017 Andre Noll - * - * Licensed under the GPL v2. For licencing details see COPYING. - */ +/* Copyright (C) 2017 Andre Noll , see file COPYING. */ /* * Provide more verbose and specific error messages instead of just "syntax -- 2.39.2