aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSylvain Munaut <tnt@246tNt.com>2016-03-08 18:08:19 +0100
committerSylvain Munaut <tnt@246tNt.com>2019-08-31 08:15:37 +0200
commit3706e9729a715a4154b1ec2eaeb842af5a11077d (patch)
tree7eab280dbefb5060f994595bc7ea4f41187472e6
parentadb8cc6aa9453dfc339de53ae641067136a031ec (diff)
General copyright notice update
find . -name \*.c -exec sed -i -e "s/(C) [0-9\-]*/(C) 2011-2019/g" {} \; find . -name \*.h -exec sed -i -e "s/(C) [0-9\-]*/(C) 2011-2019/g" {} \; Signed-off-by: Sylvain Munaut <tnt@246tNt.com>
-rw-r--r--README2
-rw-r--r--include/osmocom/gmr1/codec/codec.h2
-rw-r--r--include/osmocom/gmr1/gsmtap.h2
-rw-r--r--include/osmocom/gmr1/l1/a5.h2
-rw-r--r--include/osmocom/gmr1/l1/bcch.h2
-rw-r--r--include/osmocom/gmr1/l1/ccch.h2
-rw-r--r--include/osmocom/gmr1/l1/conv.h2
-rw-r--r--include/osmocom/gmr1/l1/crc.h2
-rw-r--r--include/osmocom/gmr1/l1/defs.h2
-rw-r--r--include/osmocom/gmr1/l1/facch3.h2
-rw-r--r--include/osmocom/gmr1/l1/facch9.h2
-rw-r--r--include/osmocom/gmr1/l1/interleave.h2
-rw-r--r--include/osmocom/gmr1/l1/punct.h2
-rw-r--r--include/osmocom/gmr1/l1/rach.h2
-rw-r--r--include/osmocom/gmr1/l1/scramb.h2
-rw-r--r--include/osmocom/gmr1/l1/tch3.h2
-rw-r--r--include/osmocom/gmr1/l1/tch9.h2
-rw-r--r--include/osmocom/gmr1/sdr/defs.h2
-rw-r--r--include/osmocom/gmr1/sdr/dkab.h2
-rw-r--r--include/osmocom/gmr1/sdr/fcch.h2
-rw-r--r--include/osmocom/gmr1/sdr/nb.h2
-rw-r--r--include/osmocom/gmr1/sdr/pi4cxpsk.h2
-rw-r--r--src/codec/ambe.c2
-rw-r--r--src/codec/codec.c2
-rw-r--r--src/codec/frame.c2
-rw-r--r--src/codec/math.c2
-rw-r--r--src/codec/private.h2
-rw-r--r--src/codec/synth.c2
-rw-r--r--src/codec/tables.c2
-rw-r--r--src/codec/tone.c2
-rw-r--r--src/gmr1_ambe_decode.c2
-rw-r--r--src/gmr1_gen_mat.c2
-rw-r--r--src/gmr1_rach_gen.c2
-rw-r--r--src/gmr1_rx.c2
-rw-r--r--src/gsmtap.c2
-rw-r--r--src/l1/a5.c2
-rw-r--r--src/l1/bcch.c2
-rw-r--r--src/l1/ccch.c2
-rw-r--r--src/l1/conv.c2
-rw-r--r--src/l1/crc.c2
-rw-r--r--src/l1/facch3.c2
-rw-r--r--src/l1/facch9.c2
-rw-r--r--src/l1/interleave.c2
-rw-r--r--src/l1/punct.c2
-rw-r--r--src/l1/rach.c2
-rw-r--r--src/l1/scramb.c2
-rw-r--r--src/l1/tch3.c2
-rw-r--r--src/l1/tch9.c2
-rw-r--r--src/sdr/dkab.c2
-rw-r--r--src/sdr/fcch.c2
-rw-r--r--src/sdr/nb.c2
-rw-r--r--src/sdr/pi4cxpsk.c2
52 files changed, 52 insertions, 52 deletions
diff --git a/README b/README
index d532476..b7f78a9 100644
--- a/README
+++ b/README
@@ -1,3 +1,3 @@
GMR-1 experimentation code
-(C) 2011 by Sylvain Munaut <tnt@246tNt.com>
+(C) 2011-2019 by Sylvain Munaut <tnt@246tNt.com>
======================================================================
diff --git a/include/osmocom/gmr1/codec/codec.h b/include/osmocom/gmr1/codec/codec.h
index ff92e89..b00d415 100644
--- a/include/osmocom/gmr1/codec/codec.h
+++ b/include/osmocom/gmr1/codec/codec.h
@@ -1,6 +1,6 @@
/* GMR-1 AMBE vocoder */
-/* (C) 2013 by Sylvain Munaut <tnt@246tNt.com>
+/* (C) 2011-2019 by Sylvain Munaut <tnt@246tNt.com>
* All Rights Reserved
*
* This program is free software; you can redistribute it and/or modify
diff --git a/include/osmocom/gmr1/gsmtap.h b/include/osmocom/gmr1/gsmtap.h
index 0c1e727..7a3b794 100644
--- a/include/osmocom/gmr1/gsmtap.h
+++ b/include/osmocom/gmr1/gsmtap.h
@@ -1,6 +1,6 @@
/* GMR-1 GSMtap helpers */
-/* (C) 2011 by Sylvain Munaut <tnt@246tNt.com>
+/* (C) 2011-2019 by Sylvain Munaut <tnt@246tNt.com>
* All Rights Reserved
*
* This program is free software; you can redistribute it and/or modify
diff --git a/include/osmocom/gmr1/l1/a5.h b/include/osmocom/gmr1/l1/a5.h
index 07aabc2..f0ea06b 100644
--- a/include/osmocom/gmr1/l1/a5.h
+++ b/include/osmocom/gmr1/l1/a5.h
@@ -1,6 +1,6 @@
/* GMR-1 A5 Ciphering algorithm */
-/* (C) 2011 by Sylvain Munaut <tnt@246tNt.com>
+/* (C) 2011-2019 by Sylvain Munaut <tnt@246tNt.com>
* All Rights Reserved
*
* This program is free software; you can redistribute it and/or modify
diff --git a/include/osmocom/gmr1/l1/bcch.h b/include/osmocom/gmr1/l1/bcch.h
index a86b5f6..01dc4f9 100644
--- a/include/osmocom/gmr1/l1/bcch.h
+++ b/include/osmocom/gmr1/l1/bcch.h
@@ -1,7 +1,7 @@
/* GMR-1 BCCH channel coding */
/* See GMR-1 05.003 (ETSI TS 101 376-5-3 V1.2.1) - Section 6.1 */
-/* (C) 2011 by Sylvain Munaut <tnt@246tNt.com>
+/* (C) 2011-2019 by Sylvain Munaut <tnt@246tNt.com>
* All Rights Reserved
*
* This program is free software; you can redistribute it and/or modify
diff --git a/include/osmocom/gmr1/l1/ccch.h b/include/osmocom/gmr1/l1/ccch.h
index cba47ab..65d8909 100644
--- a/include/osmocom/gmr1/l1/ccch.h
+++ b/include/osmocom/gmr1/l1/ccch.h
@@ -1,7 +1,7 @@
/* GMR-1 CCCH (PCH/AGCH) channel coding */
/* See GMR-1 05.003 (ETSI TS 101 376-5-3 V1.2.1) - Section 6.2 & 6.3 */
-/* (C) 2011 by Sylvain Munaut <tnt@246tNt.com>
+/* (C) 2011-2019 by Sylvain Munaut <tnt@246tNt.com>
* All Rights Reserved
*
* This program is free software; you can redistribute it and/or modify
diff --git a/include/osmocom/gmr1/l1/conv.h b/include/osmocom/gmr1/l1/conv.h
index 8641132..bc630ff 100644
--- a/include/osmocom/gmr1/l1/conv.h
+++ b/include/osmocom/gmr1/l1/conv.h
@@ -1,7 +1,7 @@
/* GMR-1 convolutional coding */
/* See GMR-1 05.003 (ETSI TS 101 376-5-3 V1.2.1) - Section 4.4 */
-/* (C) 2011 by Sylvain Munaut <tnt@246tNt.com>
+/* (C) 2011-2019 by Sylvain Munaut <tnt@246tNt.com>
* All Rights Reserved
*
* This program is free software; you can redistribute it and/or modify
diff --git a/include/osmocom/gmr1/l1/crc.h b/include/osmocom/gmr1/l1/crc.h
index a86435a..c68f7aa 100644
--- a/include/osmocom/gmr1/l1/crc.h
+++ b/include/osmocom/gmr1/l1/crc.h
@@ -1,7 +1,7 @@
/* GMR-1 CRC */
/* See GMR-1 05.003 (ETSI TS 101 376-5-3 V1.2.1) - Section 4.3 */
-/* (C) 2011 by Sylvain Munaut <tnt@246tNt.com>
+/* (C) 2011-2019 by Sylvain Munaut <tnt@246tNt.com>
* All Rights Reserved
*
* This program is free software; you can redistribute it and/or modify
diff --git a/include/osmocom/gmr1/l1/defs.h b/include/osmocom/gmr1/l1/defs.h
index 1a56bd5..61d9e72 100644
--- a/include/osmocom/gmr1/l1/defs.h
+++ b/include/osmocom/gmr1/l1/defs.h
@@ -1,7 +1,7 @@
/* GMR-1 L1 - Global definitions */
/* See GMR-1 05.003 (ETSI TS 101 376-5-3 V1.2.1) */
-/* (C) 2011 by Sylvain Munaut <tnt@246tNt.com>
+/* (C) 2011-2019 by Sylvain Munaut <tnt@246tNt.com>
* All Rights Reserved
*
* This program is free software; you can redistribute it and/or modify
diff --git a/include/osmocom/gmr1/l1/facch3.h b/include/osmocom/gmr1/l1/facch3.h
index 3fa9df1..35769c4 100644
--- a/include/osmocom/gmr1/l1/facch3.h
+++ b/include/osmocom/gmr1/l1/facch3.h
@@ -1,7 +1,7 @@
/* GMR-1 FACCH3 channel coding */
/* See GMR-1 05.003 (ETSI TS 101 376-5-3 V1.2.1) - Section 6.9 */
-/* (C) 2011 by Sylvain Munaut <tnt@246tNt.com>
+/* (C) 2011-2019 by Sylvain Munaut <tnt@246tNt.com>
* All Rights Reserved
*
* This program is free software; you can redistribute it and/or modify
diff --git a/include/osmocom/gmr1/l1/facch9.h b/include/osmocom/gmr1/l1/facch9.h
index 7f4da2a..17f21c1 100644
--- a/include/osmocom/gmr1/l1/facch9.h
+++ b/include/osmocom/gmr1/l1/facch9.h
@@ -1,7 +1,7 @@
/* GMR-1 FACCH9 channel coding */
/* See GMR-1 05.003 (ETSI TS 101 376-5-3 V1.2.1) - Section 6.11 */
-/* (C) 2012 by Sylvain Munaut <tnt@246tNt.com>
+/* (C) 2011-2019 by Sylvain Munaut <tnt@246tNt.com>
* All Rights Reserved
*
* This program is free software; you can redistribute it and/or modify
diff --git a/include/osmocom/gmr1/l1/interleave.h b/include/osmocom/gmr1/l1/interleave.h
index 9fd3e51..028ea19 100644
--- a/include/osmocom/gmr1/l1/interleave.h
+++ b/include/osmocom/gmr1/l1/interleave.h
@@ -1,7 +1,7 @@
/* GMR-1 interleaving */
/* See GMR-1 05.003 (ETSI TS 101 376-5-3 V1.2.1) - Section 4.8 */
-/* (C) 2011 by Sylvain Munaut <tnt@246tNt.com>
+/* (C) 2011-2019 by Sylvain Munaut <tnt@246tNt.com>
* All Rights Reserved
*
* This program is free software; you can redistribute it and/or modify
diff --git a/include/osmocom/gmr1/l1/punct.h b/include/osmocom/gmr1/l1/punct.h
index 336921c..fa1a35a 100644
--- a/include/osmocom/gmr1/l1/punct.h
+++ b/include/osmocom/gmr1/l1/punct.h
@@ -1,7 +1,7 @@
/* GMR-1 puncturing */
/* See GMR-1 05.003 (ETSI TS 101 376-5-3 V1.2.1) - Section 4.5 */
-/* (C) 2011 by Sylvain Munaut <tnt@246tNt.com>
+/* (C) 2011-2019 by Sylvain Munaut <tnt@246tNt.com>
* All Rights Reserved
*
* This program is free software; you can redistribute it and/or modify
diff --git a/include/osmocom/gmr1/l1/rach.h b/include/osmocom/gmr1/l1/rach.h
index 66bb9e8..8e6be67 100644
--- a/include/osmocom/gmr1/l1/rach.h
+++ b/include/osmocom/gmr1/l1/rach.h
@@ -1,7 +1,7 @@
/* GMR-1 RACH channel coding */
/* See GMR-1 05.003 (ETSI TS 101 376-5-3 V1.2.1) - Section 6.5 */
-/* (C) 2011 by Sylvain Munaut <tnt@246tNt.com>
+/* (C) 2011-2019 by Sylvain Munaut <tnt@246tNt.com>
* All Rights Reserved
*
* This program is free software; you can redistribute it and/or modify
diff --git a/include/osmocom/gmr1/l1/scramb.h b/include/osmocom/gmr1/l1/scramb.h
index 7a5d469..f496038 100644
--- a/include/osmocom/gmr1/l1/scramb.h
+++ b/include/osmocom/gmr1/l1/scramb.h
@@ -1,7 +1,7 @@
/* GMR-1 scrambling */
/* See GMR-1 05.003 (ETSI TS 101 376-5-3 V1.2.1) - Section 4.9 */
-/* (C) 2011 by Sylvain Munaut <tnt@246tNt.com>
+/* (C) 2011-2019 by Sylvain Munaut <tnt@246tNt.com>
* All Rights Reserved
*
* This program is free software; you can redistribute it and/or modify
diff --git a/include/osmocom/gmr1/l1/tch3.h b/include/osmocom/gmr1/l1/tch3.h
index d34cc1b..65bfae0 100644
--- a/include/osmocom/gmr1/l1/tch3.h
+++ b/include/osmocom/gmr1/l1/tch3.h
@@ -1,7 +1,7 @@
/* GMR-1 TCH3 channel coding */
/* See GMR-1 05.003 (ETSI TS 101 376-5-3 V1.2.1) - Section 5.1 */
-/* (C) 2011 by Sylvain Munaut <tnt@246tNt.com>
+/* (C) 2011-2019 by Sylvain Munaut <tnt@246tNt.com>
* All Rights Reserved
*
* This program is free software; you can redistribute it and/or modify
diff --git a/include/osmocom/gmr1/l1/tch9.h b/include/osmocom/gmr1/l1/tch9.h
index d01b5d5..a85339c 100644
--- a/include/osmocom/gmr1/l1/tch9.h
+++ b/include/osmocom/gmr1/l1/tch9.h
@@ -1,7 +1,7 @@
/* GMR-1 TCH9 channel coding */
/* See GMR-1 05.003 (ETSI TS 101 376-5-3 V1.2.1) - Section 5.3 */
-/* (C) 2012 by Sylvain Munaut <tnt@246tNt.com>
+/* (C) 2011-2019 by Sylvain Munaut <tnt@246tNt.com>
* All Rights Reserved
*
* This program is free software; you can redistribute it and/or modify
diff --git a/include/osmocom/gmr1/sdr/defs.h b/include/osmocom/gmr1/sdr/defs.h
index 1b4d1a1..9ae9c33 100644
--- a/include/osmocom/gmr1/sdr/defs.h
+++ b/include/osmocom/gmr1/sdr/defs.h
@@ -1,7 +1,7 @@
/* GMR-1 SDR - Global definitions */
/* See GMR-1 05.004 (ETSI TS 101 376-5-4 V1.2.1) */
-/* (C) 2011 by Sylvain Munaut <tnt@246tNt.com>
+/* (C) 2011-2019 by Sylvain Munaut <tnt@246tNt.com>
* All Rights Reserved
*
* This program is free software; you can redistribute it and/or modify
diff --git a/include/osmocom/gmr1/sdr/dkab.h b/include/osmocom/gmr1/sdr/dkab.h
index 84b790d..9318f07 100644
--- a/include/osmocom/gmr1/sdr/dkab.h
+++ b/include/osmocom/gmr1/sdr/dkab.h
@@ -2,7 +2,7 @@
/* See GMR-1 05.004 (ETSI TS 101 376-5-4 V1.2.1) - Section 6.1
* GMR-1 05.002 (ETSI TS 101 376-5-2 V1.1.1) - Section 7.4.6 */
-/* (C) 2011 by Sylvain Munaut <tnt@246tNt.com>
+/* (C) 2011-2019 by Sylvain Munaut <tnt@246tNt.com>
* All Rights Reserved
*
* This program is free software; you can redistribute it and/or modify
diff --git a/include/osmocom/gmr1/sdr/fcch.h b/include/osmocom/gmr1/sdr/fcch.h
index 7273ad4..dc19546 100644
--- a/include/osmocom/gmr1/sdr/fcch.h
+++ b/include/osmocom/gmr1/sdr/fcch.h
@@ -1,7 +1,7 @@
/* GMR-1 SDR - FCCH burst */
/* See GMR-1 05.004 (ETSI TS 101 376-5-4 V1.2.1) - Section 8.1 */
-/* (C) 2011 by Sylvain Munaut <tnt@246tNt.com>
+/* (C) 2011-2019 by Sylvain Munaut <tnt@246tNt.com>
* All Rights Reserved
*
* This program is free software; you can redistribute it and/or modify
diff --git a/include/osmocom/gmr1/sdr/nb.h b/include/osmocom/gmr1/sdr/nb.h
index ffd8ace..48f01a4 100644
--- a/include/osmocom/gmr1/sdr/nb.h
+++ b/include/osmocom/gmr1/sdr/nb.h
@@ -1,7 +1,7 @@
/* GMR-1 SDR - Normal bursts */
/* See GMR-1 05.002 (ETSI TS 101 376-5-2 V1.1.1) */
-/* (C) 2011 by Sylvain Munaut <tnt@246tNt.com>
+/* (C) 2011-2019 by Sylvain Munaut <tnt@246tNt.com>
* All Rights Reserved
*
* This program is free software; you can redistribute it and/or modify
diff --git a/include/osmocom/gmr1/sdr/pi4cxpsk.h b/include/osmocom/gmr1/sdr/pi4cxpsk.h
index 1711d4d..b2a57cb 100644
--- a/include/osmocom/gmr1/sdr/pi4cxpsk.h
+++ b/include/osmocom/gmr1/sdr/pi4cxpsk.h
@@ -1,7 +1,7 @@
/* GMR-1 SDR - pi4-CBPSK and pi4-CQPSK modulation support */
/* See GMR-1 05.004 (ETSI TS 101 376-5-4 V1.2.1) - Section 5.1 & 5.2 */
-/* (C) 2011 by Sylvain Munaut <tnt@246tNt.com>
+/* (C) 2011-2019 by Sylvain Munaut <tnt@246tNt.com>
* All Rights Reserved
*
* This program is free software; you can redistribute it and/or modify
diff --git a/src/codec/ambe.c b/src/codec/ambe.c
index 133d409..8007194 100644
--- a/src/codec/ambe.c
+++ b/src/codec/ambe.c
@@ -1,6 +1,6 @@
/* GMR-1 AMBE vocoder - internal API */
-/* (C) 2013 by Sylvain Munaut <tnt@246tNt.com>
+/* (C) 2011-2019 by Sylvain Munaut <tnt@246tNt.com>
* All Rights Reserved
*
* This program is free software; you can redistribute it and/or modify
diff --git a/src/codec/codec.c b/src/codec/codec.c
index 1720ea6..80d66b0 100644
--- a/src/codec/codec.c
+++ b/src/codec/codec.c
@@ -1,6 +1,6 @@
/* GMR-1 AMBE vocoder */
-/* (C) 2013 by Sylvain Munaut <tnt@246tNt.com>
+/* (C) 2011-2019 by Sylvain Munaut <tnt@246tNt.com>
* All Rights Reserved
*
* This program is free software; you can redistribute it and/or modify
diff --git a/src/codec/frame.c b/src/codec/frame.c
index 5758a66..28be17b 100644
--- a/src/codec/frame.c
+++ b/src/codec/frame.c
@@ -1,6 +1,6 @@
/* GMR-1 AMBE vocoder - Speech parameters to/from frame */
-/* (C) 2013 by Sylvain Munaut <tnt@246tNt.com>
+/* (C) 2011-2019 by Sylvain Munaut <tnt@246tNt.com>
* All Rights Reserved
*
* This program is free software; you can redistribute it and/or modify
diff --git a/src/codec/math.c b/src/codec/math.c
index ccfabe6..c474d35 100644
--- a/src/codec/math.c
+++ b/src/codec/math.c
@@ -1,6 +1,6 @@
/* GMR-1 AMBE vocoder - Math functions */
-/* (C) 2013 by Sylvain Munaut <tnt@246tNt.com>
+/* (C) 2011-2019 by Sylvain Munaut <tnt@246tNt.com>
* All Rights Reserved
*
* This program is free software; you can redistribute it and/or modify
diff --git a/src/codec/private.h b/src/codec/private.h
index d4af64f..1537a67 100644
--- a/src/codec/private.h
+++ b/src/codec/private.h
@@ -1,6 +1,6 @@
/* GMR-1 AMBE vocoder private header */
-/* (C) 2013 by Sylvain Munaut <tnt@246tNt.com>
+/* (C) 2011-2019 by Sylvain Munaut <tnt@246tNt.com>
* All Rights Reserved
*
* This program is free software; you can redistribute it and/or modify
diff --git a/src/codec/synth.c b/src/codec/synth.c
index 7bf83dc..1b3d040 100644
--- a/src/codec/synth.c
+++ b/src/codec/synth.c
@@ -1,6 +1,6 @@
/* GMR-1 AMBE vocoder - Speech synthesis */
-/* (C) 2014 by Sylvain Munaut <tnt@246tNt.com>
+/* (C) 2011-2019 by Sylvain Munaut <tnt@246tNt.com>
* All Rights Reserved
*
* This program is free software; you can redistribute it and/or modify
diff --git a/src/codec/tables.c b/src/codec/tables.c
index 44545d0..0961624 100644
--- a/src/codec/tables.c
+++ b/src/codec/tables.c
@@ -1,6 +1,6 @@
/* GMR-1 AMBE vocoder - Tables */
-/* (C) 2013 by Sylvain Munaut <tnt@246tNt.com>
+/* (C) 2011-2019 by Sylvain Munaut <tnt@246tNt.com>
* All Rights Reserved
*
* This program is free software; you can redistribute it and/or modify
diff --git a/src/codec/tone.c b/src/codec/tone.c
index 5ed9aff..0ad22d0 100644
--- a/src/codec/tone.c
+++ b/src/codec/tone.c
@@ -1,6 +1,6 @@
/* GMR-1 AMBE vocoder - Tone frames */
-/* (C) 2013 by Sylvain Munaut <tnt@246tNt.com>
+/* (C) 2011-2019 by Sylvain Munaut <tnt@246tNt.com>
* All Rights Reserved
*
* This program is free software; you can redistribute it and/or modify
diff --git a/src/gmr1_ambe_decode.c b/src/gmr1_ambe_decode.c
index 5f61ac0..2023540 100644
--- a/src/gmr1_ambe_decode.c
+++ b/src/gmr1_ambe_decode.c
@@ -1,6 +1,6 @@
/* GMR-1 Codec decoder tool */
-/* (C) 2013 by Sylvain Munaut <tnt@246tNt.com>
+/* (C) 2011-2019 by Sylvain Munaut <tnt@246tNt.com>
* All Rights Reserved
*
* This program is free software; you can redistribute it and/or modify
diff --git a/src/gmr1_gen_mat.c b/src/gmr1_gen_mat.c
index 54b0968..dee0c91 100644
--- a/src/gmr1_gen_mat.c
+++ b/src/gmr1_gen_mat.c
@@ -1,6 +1,6 @@
/* GMR-1 G/g matrix geneation for FACCH3 */
-/* (C) 2011 by Sylvain Munaut <tnt@246tNt.com>
+/* (C) 2011-2019 by Sylvain Munaut <tnt@246tNt.com>
* All Rights Reserved
*
* This program is free software; you can redistribute it and/or modify
diff --git a/src/gmr1_rach_gen.c b/src/gmr1_rach_gen.c
index de4cf12..986e026 100644
--- a/src/gmr1_rach_gen.c
+++ b/src/gmr1_rach_gen.c
@@ -1,6 +1,6 @@
/* GMR-1 RACH generation utility */
-/* (C) 2015 by Sylvain Munaut <tnt@246tNt.com>
+/* (C) 2011-2019 by Sylvain Munaut <tnt@246tNt.com>
* All Rights Reserved
*
* This program is free software; you can redistribute it and/or modify
diff --git a/src/gmr1_rx.c b/src/gmr1_rx.c
index 8bce7bb..2b210ad 100644
--- a/src/gmr1_rx.c
+++ b/src/gmr1_rx.c
@@ -1,6 +1,6 @@
/* GMR-1 Demo RX application */
-/* (C) 2011 by Sylvain Munaut <tnt@246tNt.com>
+/* (C) 2011-2019 by Sylvain Munaut <tnt@246tNt.com>
* All Rights Reserved
*
* This program is free software; you can redistribute it and/or modify
diff --git a/src/gsmtap.c b/src/gsmtap.c
index 3bfeff0..730e524 100644
--- a/src/gsmtap.c
+++ b/src/gsmtap.c
@@ -1,6 +1,6 @@
/* GMR-1 GSMtap helpers */
-/* (C) 2011 by Sylvain Munaut <tnt@246tNt.com>
+/* (C) 2011-2019 by Sylvain Munaut <tnt@246tNt.com>
* All Rights Reserved
*
* This program is free software; you can redistribute it and/or modify
diff --git a/src/l1/a5.c b/src/l1/a5.c
index c62285c..ad6ca8f 100644
--- a/src/l1/a5.c
+++ b/src/l1/a5.c
@@ -9,7 +9,7 @@
* on this. See their paper for more details on how it was done.
*/
-/* (C) 2011 by Sylvain Munaut <tnt@246tNt.com>
+/* (C) 2011-2019 by Sylvain Munaut <tnt@246tNt.com>
* All Rights Reserved
*
* This program is free software; you can redistribute it and/or modify
diff --git a/src/l1/bcch.c b/src/l1/bcch.c
index 6e91e49..76def25 100644
--- a/src/l1/bcch.c
+++ b/src/l1/bcch.c
@@ -1,7 +1,7 @@
/* GMR-1 BCCH channel coding */
/* See GMR-1 05.003 (ETSI TS 101 376-5-3 V1.2.1) - Section 6.1 */
-/* (C) 2011 by Sylvain Munaut <tnt@246tNt.com>
+/* (C) 2011-2019 by Sylvain Munaut <tnt@246tNt.com>
* All Rights Reserved
*
* This program is free software; you can redistribute it and/or modify
diff --git a/src/l1/ccch.c b/src/l1/ccch.c
index 8887e8e..c52fd64 100644
--- a/src/l1/ccch.c
+++ b/src/l1/ccch.c
@@ -1,7 +1,7 @@
/* GMR-1 CCCH channel coding */
/* See GMR-1 05.003 (ETSI TS 101 376-5-3 V1.2.1) - Section 6.2 & 6.3 */
-/* (C) 2011 by Sylvain Munaut <tnt@246tNt.com>
+/* (C) 2011-2019 by Sylvain Munaut <tnt@246tNt.com>
* All Rights Reserved
*
* This program is free software; you can redistribute it and/or modify
diff --git a/src/l1/conv.c b/src/l1/conv.c
index a61e71d..7ff49b5 100644
--- a/src/l1/conv.c
+++ b/src/l1/conv.c
@@ -1,7 +1,7 @@
/* GMR-1 convolutional coding */
/* See GMR-1 05.003 (ETSI TS 101 376-5-3 V1.2.1) - Section 4.4 */
-/* (C) 2011 by Sylvain Munaut <tnt@246tNt.com>
+/* (C) 2011-2019 by Sylvain Munaut <tnt@246tNt.com>
* All Rights Reserved
*
* This program is free software; you can redistribute it and/or modify
diff --git a/src/l1/crc.c b/src/l1/crc.c
index 15ffb31..15fcdfb 100644
--- a/src/l1/crc.c
+++ b/src/l1/crc.c
@@ -1,7 +1,7 @@
/* GMR-1 CRC */
/* See GMR-1 05.003 (ETSI TS 101 376-5-3 V1.2.1) - Section 4.3 */
-/* (C) 2011 by Sylvain Munaut <tnt@246tNt.com>
+/* (C) 2011-2019 by Sylvain Munaut <tnt@246tNt.com>
* All Rights Reserved
*
* This program is free software; you can redistribute it and/or modify
diff --git a/src/l1/facch3.c b/src/l1/facch3.c
index f34b2c0..80a5f36 100644
--- a/src/l1/facch3.c
+++ b/src/l1/facch3.c
@@ -1,7 +1,7 @@
/* GMR-1 FACCH3 channel coding */
/* See GMR-1 05.003 (ETSI TS 101 376-5-3 V1.2.1) - Section 6.9 */
-/* (C) 2011 by Sylvain Munaut <tnt@246tNt.com>
+/* (C) 2011-2019 by Sylvain Munaut <tnt@246tNt.com>
* All Rights Reserved
*
* This program is free software; you can redistribute it and/or modify
diff --git a/src/l1/facch9.c b/src/l1/facch9.c
index d32abd3..91c5464 100644
--- a/src/l1/facch9.c
+++ b/src/l1/facch9.c
@@ -1,7 +1,7 @@
/* GMR-1 FACCH9 channel coding */
/* See GMR-1 05.003 (ETSI TS 101 376-5-3 V1.2.1) - Section 6.11 */
-/* (C) 2012 by Sylvain Munaut <tnt@246tNt.com>
+/* (C) 2011-2019 by Sylvain Munaut <tnt@246tNt.com>
* All Rights Reserved
*
* This program is free software; you can redistribute it and/or modify
diff --git a/src/l1/interleave.c b/src/l1/interleave.c
index f3e4bb3..b8874b7 100644
--- a/src/l1/interleave.c
+++ b/src/l1/interleave.c
@@ -1,7 +1,7 @@
/* GMR-1 interleaving */
/* See GMR-1 05.003 (ETSI TS 101 376-5-3 V1.2.1) - Section 4.8 */
-/* (C) 2011 by Sylvain Munaut <tnt@246tNt.com>
+/* (C) 2011-2019 by Sylvain Munaut <tnt@246tNt.com>
* All Rights Reserved
*
* This program is free software; you can redistribute it and/or modify
diff --git a/src/l1/punct.c b/src/l1/punct.c
index c852f7e..bfa9069 100644
--- a/src/l1/punct.c
+++ b/src/l1/punct.c
@@ -1,7 +1,7 @@
/* GMR-1 puncturing */
/* See GMR-1 05.003 (ETSI TS 101 376-5-3 V1.2.1) - Section 4.5 */
-/* (C) 2011 by Sylvain Munaut <tnt@246tNt.com>
+/* (C) 2011-2019 by Sylvain Munaut <tnt@246tNt.com>
* All Rights Reserved
*
* This program is free software; you can redistribute it and/or modify
diff --git a/src/l1/rach.c b/src/l1/rach.c
index ec04705..ed5aa4e 100644
--- a/src/l1/rach.c
+++ b/src/l1/rach.c
@@ -1,7 +1,7 @@
/* GMR-1 RACH channel coding */
/* See GMR-1 05.003 (ETSI TS 101 376-5-3 V1.2.1) - Section 6.5 */
-/* (C) 2011 by Sylvain Munaut <tnt@246tNt.com>
+/* (C) 2011-2019 by Sylvain Munaut <tnt@246tNt.com>
* All Rights Reserved
*
* This program is free software; you can redistribute it and/or modify
diff --git a/src/l1/scramb.c b/src/l1/scramb.c
index 4988eda..6dbd24e 100644
--- a/src/l1/scramb.c
+++ b/src/l1/scramb.c
@@ -1,7 +1,7 @@
/* GMR-1 scrambling */
/* See GMR-1 05.003 (ETSI TS 101 376-5-3 V1.2.1) - Section 4.9 */
-/* (C) 2011 by Sylvain Munaut <tnt@246tNt.com>
+/* (C) 2011-2019 by Sylvain Munaut <tnt@246tNt.com>
* All Rights Reserved
*
* This program is free software; you can redistribute it and/or modify
diff --git a/src/l1/tch3.c b/src/l1/tch3.c
index c7e5fad..1220c7a 100644
--- a/src/l1/tch3.c
+++ b/src/l1/tch3.c
@@ -1,7 +1,7 @@
/* GMR-1 TCH3 channel coding */
/* See GMR-1 05.003 (ETSI TS 101 376-5-3 V1.2.1) - Section 5.1 */
-/* (C) 2011 by Sylvain Munaut <tnt@246tNt.com>
+/* (C) 2011-2019 by Sylvain Munaut <tnt@246tNt.com>
* All Rights Reserved
*
* This program is free software; you can redistribute it and/or modify
diff --git a/src/l1/tch9.c b/src/l1/tch9.c
index 8c84b54..08978b8 100644
--- a/src/l1/tch9.c
+++ b/src/l1/tch9.c
@@ -1,7 +1,7 @@
/* GMR-1 TCH9 channel coding */
/* See GMR-1 05.003 (ETSI TS 101 376-5-3 V1.2.1) - Section 5.3 */
-/* (C) 2012 by Sylvain Munaut <tnt@246tNt.com>
+/* (C) 2011-2019 by Sylvain Munaut <tnt@246tNt.com>
* All Rights Reserved
*
* This program is free software; you can redistribute it and/or modify
diff --git a/src/sdr/dkab.c b/src/sdr/dkab.c
index 5b84ae5..f0a4f64 100644
--- a/src/sdr/dkab.c
+++ b/src/sdr/dkab.c
@@ -2,7 +2,7 @@
/* See GMR-1 05.004 (ETSI TS 101 376-5-4 V1.2.1) - Section 6.1
* GMR-1 05.002 (ETSI TS 101 376-5-2 V1.1.1) - Section 7.4.6 */
-/* (C) 2011 by Sylvain Munaut <tnt@246tNt.com>
+/* (C) 2011-2019 by Sylvain Munaut <tnt@246tNt.com>
* All Rights Reserved
*
* This program is free software; you can redistribute it and/or modify
diff --git a/src/sdr/fcch.c b/src/sdr/fcch.c
index 87b589f..9d9983b 100644
--- a/src/sdr/fcch.c
+++ b/src/sdr/fcch.c
@@ -1,7 +1,7 @@
/* GMR-1 SDR - FCCH bursts */
/* See GMR-1 05.004 (ETSI TS 101 376-5-4 V1.2.1) - Section 8.1 */
-/* (C) 2011 by Sylvain Munaut <tnt@246tNt.com>
+/* (C) 2011-2019 by Sylvain Munaut <tnt@246tNt.com>
* All Rights Reserved
*
* This program is free software; you can redistribute it and/or modify
diff --git a/src/sdr/nb.c b/src/sdr/nb.c
index 1e134e5..c937da9 100644
--- a/src/sdr/nb.c
+++ b/src/sdr/nb.c
@@ -1,7 +1,7 @@
/* GMR-1 SDR - Normal bursts */
/* See GMR-1 05.002 (ETSI TS 101 376-5-2 V1.1.1) */
-/* (C) 2011 by Sylvain Munaut <tnt@246tNt.com>
+/* (C) 2011-2019 by Sylvain Munaut <tnt@246tNt.com>
* All Rights Reserved
*
* This program is free software; you can redistribute it and/or modify
diff --git a/src/sdr/pi4cxpsk.c b/src/sdr/pi4cxpsk.c
index d0c273b..0affc65 100644
--- a/src/sdr/pi4cxpsk.c
+++ b/src/sdr/pi4cxpsk.c
@@ -1,7 +1,7 @@
/* GMR-1 SDR - pi4-CBPSK and pi4-CQPSK modulation support */
/* See GMR-1 05.004 (ETSI TS 101 376-5-4 V1.2.1) - Section 5.1 & 5.2 */
-/* (C) 2011 by Sylvain Munaut <tnt@246tNt.com>
+/* (C) 2011-2019 by Sylvain Munaut <tnt@246tNt.com>
* All Rights Reserved
*
* This program is free software; you can redistribute it and/or modify