aboutsummaryrefslogtreecommitdiff
path: root/system
diff options
context:
space:
mode:
authorHans-Christoph Steiner <eighthave@users.sourceforge.net>2008-05-24 23:14:15 +0000
committerHans-Christoph Steiner <eighthave@users.sourceforge.net>2008-05-24 23:14:15 +0000
commita587a74821c155e281d2a6ce9a9a1d7b6a336fce (patch)
treec5ddd7ed4a1cb1a03a8e9d06d16bbe25c5b153df /system
parent921b949e82d9b140d69c4487b132fb4ac3185c2a (diff)
Checked in latest from Tom Schouten's darcs repository, which was checked in
19-Feb-2008. Changes are mostly the email address and URLs, but two new objects are also added: pdp_array2grey and pdp_grey2array for converting between Pd arrays and greyscale images. svn path=/trunk/externals/pdp/; revision=9899
Diffstat (limited to 'system')
-rw-r--r--system/X11/pdp_xvideo.c2
-rw-r--r--system/X11/pdp_xwindow.c2
-rw-r--r--system/image/pdp_imageproc_common.c2
-rw-r--r--system/image/pdp_imageproc_mmx.c2
-rw-r--r--system/image/pdp_imageproc_portable.c2
-rw-r--r--system/image/pdp_llconv.c2
-rw-r--r--system/image/pdp_llconv_mmx.c2
-rw-r--r--system/image/pdp_llconv_portable.c2
-rw-r--r--system/image/pdp_resample.c2
-rw-r--r--system/kernel/pdp_dpd_command.c2
-rw-r--r--system/kernel/pdp_list.c2
-rw-r--r--system/kernel/pdp_mem.c2
-rw-r--r--system/kernel/pdp_packet.c2
-rw-r--r--system/kernel/pdp_packet2.c2
-rw-r--r--system/kernel/pdp_post.c2
-rw-r--r--system/kernel/pdp_symbol.c2
-rw-r--r--system/kernel/pdp_type.c2
-rw-r--r--system/mmx/pixel_add_s16.s2
-rw-r--r--system/mmx/pixel_biquad_dirI_s16.s2
-rw-r--r--system/mmx/pixel_biquad_s16.s2
-rw-r--r--system/mmx/pixel_ca_s1.s2
-rw-r--r--system/mmx/pixel_cascade_s16.s2
-rw-r--r--system/mmx/pixel_cheby_s16.s2
-rw-r--r--system/mmx/pixel_conv_hor_s16.s2
-rw-r--r--system/mmx/pixel_conv_ver_s16.s2
-rw-r--r--system/mmx/pixel_crot_s16.s2
-rw-r--r--system/mmx/pixel_gain.s2
-rw-r--r--system/mmx/pixel_gain_s16.s2
-rw-r--r--system/mmx/pixel_mix_s16.s2
-rw-r--r--system/mmx/pixel_mul_s16.s2
-rw-r--r--system/mmx/pixel_pack_s16u8.s2
-rw-r--r--system/mmx/pixel_rand_s16.s2
-rw-r--r--system/mmx/pixel_randmix_s16.s2
-rw-r--r--system/mmx/pixel_s1.s2
-rw-r--r--system/mmx/pixel_unpack_u8s16.s2
-rw-r--r--system/pdp.c2
-rw-r--r--system/png/pdp_png.c2
-rw-r--r--system/type/pdp_bitmap.c2
-rw-r--r--system/type/pdp_image.c2
39 files changed, 39 insertions, 39 deletions
diff --git a/system/X11/pdp_xvideo.c b/system/X11/pdp_xvideo.c
index dab060d..3aa14a6 100644
--- a/system/X11/pdp_xvideo.c
+++ b/system/X11/pdp_xvideo.c
@@ -1,6 +1,6 @@
/*
* Pure Data Packet system module. - x window glue code (fairly tied to pd and pdp)
- * Copyright (c) by Tom Schouten <pdp@zzz.kotnet.org>
+ * Copyright (c) by Tom Schouten <tom@zwizwa.be>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
diff --git a/system/X11/pdp_xwindow.c b/system/X11/pdp_xwindow.c
index 9454dd7..02ab5da 100644
--- a/system/X11/pdp_xwindow.c
+++ b/system/X11/pdp_xwindow.c
@@ -1,6 +1,6 @@
/*
* Pure Data Packet system module. - x window glue code (fairly tied to pd and pdp)
- * Copyright (c) by Tom Schouten <pdp@zzz.kotnet.org>
+ * Copyright (c) by Tom Schouten <tom@zwizwa.be>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
diff --git a/system/image/pdp_imageproc_common.c b/system/image/pdp_imageproc_common.c
index 184c418..a84fa0b 100644
--- a/system/image/pdp_imageproc_common.c
+++ b/system/image/pdp_imageproc_common.c
@@ -1,6 +1,6 @@
/*
* Pure Data Packet. common image processing routines.
- * Copyright (c) by Tom Schouten <pdp@zzz.kotnet.org>
+ * Copyright (c) by Tom Schouten <tom@zwizwa.be>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
diff --git a/system/image/pdp_imageproc_mmx.c b/system/image/pdp_imageproc_mmx.c
index 67f6e77..cf42d67 100644
--- a/system/image/pdp_imageproc_mmx.c
+++ b/system/image/pdp_imageproc_mmx.c
@@ -1,6 +1,6 @@
/*
* Pure Data Packet. c wrapper for mmx image processing routines.
- * Copyright (c) by Tom Schouten <pdp@zzz.kotnet.org>
+ * Copyright (c) by Tom Schouten <tom@zwizwa.be>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
diff --git a/system/image/pdp_imageproc_portable.c b/system/image/pdp_imageproc_portable.c
index facb2c8..3e155ee 100644
--- a/system/image/pdp_imageproc_portable.c
+++ b/system/image/pdp_imageproc_portable.c
@@ -1,6 +1,6 @@
/*
* Pure Data Packet. portable image processing routines.
- * Copyright (c) by Tom Schouten <pdp@zzz.kotnet.org>
+ * Copyright (c) by Tom Schouten <tom@zwizwa.be>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
diff --git a/system/image/pdp_llconv.c b/system/image/pdp_llconv.c
index f10c61d..666a1c4 100644
--- a/system/image/pdp_llconv.c
+++ b/system/image/pdp_llconv.c
@@ -1,6 +1,6 @@
/*
* Pure Data Packet system implementation. : low level format conversion code
- * Copyright (c) by Tom Schouten <pdp@zzz.kotnet.org>
+ * Copyright (c) by Tom Schouten <tom@zwizwa.be>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
diff --git a/system/image/pdp_llconv_mmx.c b/system/image/pdp_llconv_mmx.c
index 8070bac..aaddb01 100644
--- a/system/image/pdp_llconv_mmx.c
+++ b/system/image/pdp_llconv_mmx.c
@@ -1,7 +1,7 @@
/*
* Pure Data Packet system implementation. : wrapper for mmx low level format conversion code
- * Copyright (c) by Tom Schouten <pdp@zzz.kotnet.org>
+ * Copyright (c) by Tom Schouten <tom@zwizwa.be>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
diff --git a/system/image/pdp_llconv_portable.c b/system/image/pdp_llconv_portable.c
index f6d5a44..7421472 100644
--- a/system/image/pdp_llconv_portable.c
+++ b/system/image/pdp_llconv_portable.c
@@ -1,7 +1,7 @@
/*
* Pure Data Packet system implementation. : portable low level format conversion code
- * Copyright (c) by Tom Schouten <pdp@zzz.kotnet.org>
+ * Copyright (c) by Tom Schouten <tom@zwizwa.be>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
diff --git a/system/image/pdp_resample.c b/system/image/pdp_resample.c
index 6fbd274..ac51c99 100644
--- a/system/image/pdp_resample.c
+++ b/system/image/pdp_resample.c
@@ -1,6 +1,6 @@
/*
* Pure Data Packet system file. - image resampling routines
- * Copyright (c) by Tom Schouten <pdp@zzz.kotnet.org>
+ * Copyright (c) by Tom Schouten <tom@zwizwa.be>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
diff --git a/system/kernel/pdp_dpd_command.c b/system/kernel/pdp_dpd_command.c
index d812cf2..e417193 100644
--- a/system/kernel/pdp_dpd_command.c
+++ b/system/kernel/pdp_dpd_command.c
@@ -1,7 +1,7 @@
/*
* Pure Data Packet header file. DPD command class
- * Copyright (c) by Tom Schouten <pdp@zzz.kotnet.org>
+ * Copyright (c) by Tom Schouten <tom@zwizwa.be>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
diff --git a/system/kernel/pdp_list.c b/system/kernel/pdp_list.c
index 8558e35..4ae2810 100644
--- a/system/kernel/pdp_list.c
+++ b/system/kernel/pdp_list.c
@@ -1,7 +1,7 @@
/*
* Pure Data Packet header file. List class
- * Copyright (c) by Tom Schouten <pdp@zzz.kotnet.org>
+ * Copyright (c) by Tom Schouten <tom@zwizwa.be>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
diff --git a/system/kernel/pdp_mem.c b/system/kernel/pdp_mem.c
index 93c7122..afd6420 100644
--- a/system/kernel/pdp_mem.c
+++ b/system/kernel/pdp_mem.c
@@ -1,6 +1,6 @@
/*
* Pure Data Packet system file: memory allocation
- * Copyright (c) by Tom Schouten <pdp@zzz.kotnet.org>
+ * Copyright (c) by Tom Schouten <tom@zwizwa.be>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
diff --git a/system/kernel/pdp_packet.c b/system/kernel/pdp_packet.c
index e5f1a1f..aa44ceb 100644
--- a/system/kernel/pdp_packet.c
+++ b/system/kernel/pdp_packet.c
@@ -1,6 +1,6 @@
/*
* Pure Data Packet system implementation: Packet Manager
- * Copyright (c) by Tom Schouten <pdp@zzz.kotnet.org>
+ * Copyright (c) by Tom Schouten <tom@zwizwa.be>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
diff --git a/system/kernel/pdp_packet2.c b/system/kernel/pdp_packet2.c
index 3717a77..8ee62f2 100644
--- a/system/kernel/pdp_packet2.c
+++ b/system/kernel/pdp_packet2.c
@@ -1,6 +1,6 @@
/*
* Pure Data Packet system implementation: Packet Manager
- * Copyright (c) by Tom Schouten <pdp@zzz.kotnet.org>
+ * Copyright (c) by Tom Schouten <tom@zwizwa.be>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
diff --git a/system/kernel/pdp_post.c b/system/kernel/pdp_post.c
index b75283b..bd3224c 100644
--- a/system/kernel/pdp_post.c
+++ b/system/kernel/pdp_post.c
@@ -1,7 +1,7 @@
/*
* Pure Data Packet system file. pdp logging.
- * Copyright (c) by Tom Schouten <pdp@zzz.kotnet.org>
+ * Copyright (c) by Tom Schouten <tom@zwizwa.be>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
diff --git a/system/kernel/pdp_symbol.c b/system/kernel/pdp_symbol.c
index 32e9e33..6a4b924 100644
--- a/system/kernel/pdp_symbol.c
+++ b/system/kernel/pdp_symbol.c
@@ -1,6 +1,6 @@
/*
* Pure Data Packet system implementation. : code implementing pdp's namespace (symbols)
- * Copyright (c) by Tom Schouten <pdp@zzz.kotnet.org>
+ * Copyright (c) by Tom Schouten <tom@zwizwa.be>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
diff --git a/system/kernel/pdp_type.c b/system/kernel/pdp_type.c
index 57edc00..6a5591b 100644
--- a/system/kernel/pdp_type.c
+++ b/system/kernel/pdp_type.c
@@ -1,6 +1,6 @@
/*
* Pure Data Packet system implementation. : code for handling different packet types
- * Copyright (c) by Tom Schouten <pdp@zzz.kotnet.org>
+ * Copyright (c) by Tom Schouten <tom@zwizwa.be>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
diff --git a/system/mmx/pixel_add_s16.s b/system/mmx/pixel_add_s16.s
index 8d4c7df..e19a2f7 100644
--- a/system/mmx/pixel_add_s16.s
+++ b/system/mmx/pixel_add_s16.s
@@ -1,5 +1,5 @@
# Pure Data Packet mmx routine.
-# Copyright (c) by Tom Schouten <pdp@zzz.kotnet.org>
+# Copyright (c) by Tom Schouten <tom@zwizwa.be>
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
diff --git a/system/mmx/pixel_biquad_dirI_s16.s b/system/mmx/pixel_biquad_dirI_s16.s
index 1729502..12df4ad 100644
--- a/system/mmx/pixel_biquad_dirI_s16.s
+++ b/system/mmx/pixel_biquad_dirI_s16.s
@@ -1,5 +1,5 @@
# Pure Data Packet mmx routine.
-# Copyright (c) by Tom Schouten <pdp@zzz.kotnet.org>
+# Copyright (c) by Tom Schouten <tom@zwizwa.be>
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
diff --git a/system/mmx/pixel_biquad_s16.s b/system/mmx/pixel_biquad_s16.s
index ef48c87..8b10a1c 100644
--- a/system/mmx/pixel_biquad_s16.s
+++ b/system/mmx/pixel_biquad_s16.s
@@ -1,5 +1,5 @@
# Pure Data Packet mmx routine.
-# Copyright (c) by Tom Schouten <pdp@zzz.kotnet.org>
+# Copyright (c) by Tom Schouten <tom@zwizwa.be>
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
diff --git a/system/mmx/pixel_ca_s1.s b/system/mmx/pixel_ca_s1.s
index d9c730f..29db625 100644
--- a/system/mmx/pixel_ca_s1.s
+++ b/system/mmx/pixel_ca_s1.s
@@ -1,5 +1,5 @@
# Pure Data Packet mmx routine.
-# Copyright (c) by Tom Schouten <pdp@zzz.kotnet.org>
+# Copyright (c) by Tom Schouten <tom@zwizwa.be>
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
diff --git a/system/mmx/pixel_cascade_s16.s b/system/mmx/pixel_cascade_s16.s
index bf88d08..0c569d4 100644
--- a/system/mmx/pixel_cascade_s16.s
+++ b/system/mmx/pixel_cascade_s16.s
@@ -1,5 +1,5 @@
# Pure Data Packet mmx routine.
-# Copyright (c) by Tom Schouten <pdp@zzz.kotnet.org>
+# Copyright (c) by Tom Schouten <tom@zwizwa.be>
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
diff --git a/system/mmx/pixel_cheby_s16.s b/system/mmx/pixel_cheby_s16.s
index 2afe9e2..44ad28d 100644
--- a/system/mmx/pixel_cheby_s16.s
+++ b/system/mmx/pixel_cheby_s16.s
@@ -1,5 +1,5 @@
# Pure Data Packet mmx routine.
-# Copyright (c) by Tom Schouten <pdp@zzz.kotnet.org>
+# Copyright (c) by Tom Schouten <tom@zwizwa.be>
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
diff --git a/system/mmx/pixel_conv_hor_s16.s b/system/mmx/pixel_conv_hor_s16.s
index e90a692..dd945c0 100644
--- a/system/mmx/pixel_conv_hor_s16.s
+++ b/system/mmx/pixel_conv_hor_s16.s
@@ -1,5 +1,5 @@
# Pure Data Packet mmx routine.
-# Copyright (c) by Tom Schouten <pdp@zzz.kotnet.org>
+# Copyright (c) by Tom Schouten <tom@zwizwa.be>
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
diff --git a/system/mmx/pixel_conv_ver_s16.s b/system/mmx/pixel_conv_ver_s16.s
index ae2456f..c92bb07 100644
--- a/system/mmx/pixel_conv_ver_s16.s
+++ b/system/mmx/pixel_conv_ver_s16.s
@@ -1,5 +1,5 @@
# Pure Data Packet mmx routine.
-# Copyright (c) by Tom Schouten <pdp@zzz.kotnet.org>
+# Copyright (c) by Tom Schouten <tom@zwizwa.be>
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
diff --git a/system/mmx/pixel_crot_s16.s b/system/mmx/pixel_crot_s16.s
index 2427869..885d0e5 100644
--- a/system/mmx/pixel_crot_s16.s
+++ b/system/mmx/pixel_crot_s16.s
@@ -1,5 +1,5 @@
# Pure Data Packet mmx routine.
-# Copyright (c) by Tom Schouten <pdp@zzz.kotnet.org>
+# Copyright (c) by Tom Schouten <tom@zwizwa.be>
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
diff --git a/system/mmx/pixel_gain.s b/system/mmx/pixel_gain.s
index 5cd5057..cd8eabb 100644
--- a/system/mmx/pixel_gain.s
+++ b/system/mmx/pixel_gain.s
@@ -1,5 +1,5 @@
# Pure Data Packet mmx routine.
-# Copyright (c) by Tom Schouten <pdp@zzz.kotnet.org>
+# Copyright (c) by Tom Schouten <tom@zwizwa.be>
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
diff --git a/system/mmx/pixel_gain_s16.s b/system/mmx/pixel_gain_s16.s
index adcfdf5..d730c9c 100644
--- a/system/mmx/pixel_gain_s16.s
+++ b/system/mmx/pixel_gain_s16.s
@@ -1,5 +1,5 @@
# Pure Data Packet mmx routine.
-# Copyright (c) by Tom Schouten <pdp@zzz.kotnet.org>
+# Copyright (c) by Tom Schouten <tom@zwizwa.be>
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
diff --git a/system/mmx/pixel_mix_s16.s b/system/mmx/pixel_mix_s16.s
index 9bf41eb..cfe9d8f 100644
--- a/system/mmx/pixel_mix_s16.s
+++ b/system/mmx/pixel_mix_s16.s
@@ -1,5 +1,5 @@
# Pure Data Packet mmx routine.
-# Copyright (c) by Tom Schouten <pdp@zzz.kotnet.org>
+# Copyright (c) by Tom Schouten <tom@zwizwa.be>
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
diff --git a/system/mmx/pixel_mul_s16.s b/system/mmx/pixel_mul_s16.s
index 240a024..652b2b5 100644
--- a/system/mmx/pixel_mul_s16.s
+++ b/system/mmx/pixel_mul_s16.s
@@ -1,5 +1,5 @@
# Pure Data Packet mmx routine.
-# Copyright (c) by Tom Schouten <pdp@zzz.kotnet.org>
+# Copyright (c) by Tom Schouten <tom@zwizwa.be>
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
diff --git a/system/mmx/pixel_pack_s16u8.s b/system/mmx/pixel_pack_s16u8.s
index 57df702..0cfa800 100644
--- a/system/mmx/pixel_pack_s16u8.s
+++ b/system/mmx/pixel_pack_s16u8.s
@@ -1,5 +1,5 @@
# Pure Data Packet mmx routine.
-# Copyright (c) by Tom Schouten <pdp@zzz.kotnet.org>
+# Copyright (c) by Tom Schouten <tom@zwizwa.be>
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
diff --git a/system/mmx/pixel_rand_s16.s b/system/mmx/pixel_rand_s16.s
index 649400b..0f2f336 100644
--- a/system/mmx/pixel_rand_s16.s
+++ b/system/mmx/pixel_rand_s16.s
@@ -1,5 +1,5 @@
# Pure Data Packet mmx routine.
-# Copyright (c) by Tom Schouten <pdp@zzz.kotnet.org>
+# Copyright (c) by Tom Schouten <tom@zwizwa.be>
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
diff --git a/system/mmx/pixel_randmix_s16.s b/system/mmx/pixel_randmix_s16.s
index 44e1702..447f201 100644
--- a/system/mmx/pixel_randmix_s16.s
+++ b/system/mmx/pixel_randmix_s16.s
@@ -1,5 +1,5 @@
# Pure Data Packet mmx routine.
-# Copyright (c) by Tom Schouten <pdp@zzz.kotnet.org>
+# Copyright (c) by Tom Schouten <tom@zwizwa.be>
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
diff --git a/system/mmx/pixel_s1.s b/system/mmx/pixel_s1.s
index d6bc5ca..0e9fc7d 100644
--- a/system/mmx/pixel_s1.s
+++ b/system/mmx/pixel_s1.s
@@ -1,5 +1,5 @@
# Pure Data Packet mmx routine.
-# Copyright (c) by Tom Schouten <pdp@zzz.kotnet.org>
+# Copyright (c) by Tom Schouten <tom@zwizwa.be>
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
diff --git a/system/mmx/pixel_unpack_u8s16.s b/system/mmx/pixel_unpack_u8s16.s
index 0fc14c2..55e404c 100644
--- a/system/mmx/pixel_unpack_u8s16.s
+++ b/system/mmx/pixel_unpack_u8s16.s
@@ -1,5 +1,5 @@
# Pure Data Packet mmx routine.
-# Copyright (c) by Tom Schouten <pdp@zzz.kotnet.org>
+# Copyright (c) by Tom Schouten <tom@zwizwa.be>
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
diff --git a/system/pdp.c b/system/pdp.c
index 4f8962d..0d03854 100644
--- a/system/pdp.c
+++ b/system/pdp.c
@@ -1,6 +1,6 @@
/*
* Pure Data Packet system implementation: setup code
- * Copyright (c) by Tom Schouten <pdp@zzz.kotnet.org>
+ * Copyright (c) by Tom Schouten <tom@zwizwa.be>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
diff --git a/system/png/pdp_png.c b/system/png/pdp_png.c
index 9ac2825..0c6981b 100644
--- a/system/png/pdp_png.c
+++ b/system/png/pdp_png.c
@@ -1,7 +1,7 @@
/*
* Pure Data Packet system module. - png glue code
- * Copyright (c) by Tom Schouten <pdp@zzz.kotnet.org>
+ * Copyright (c) by Tom Schouten <tom@zwizwa.be>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
diff --git a/system/type/pdp_bitmap.c b/system/type/pdp_bitmap.c
index 9265879..0c20e67 100644
--- a/system/type/pdp_bitmap.c
+++ b/system/type/pdp_bitmap.c
@@ -1,6 +1,6 @@
/*
* Pure Data Packet system implementation. : 8 bit image packet implementation
- * Copyright (c) by Tom Schouten <pdp@zzz.kotnet.org>
+ * Copyright (c) by Tom Schouten <tom@zwizwa.be>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
diff --git a/system/type/pdp_image.c b/system/type/pdp_image.c
index 29d2976..295b37a 100644
--- a/system/type/pdp_image.c
+++ b/system/type/pdp_image.c
@@ -1,6 +1,6 @@
/*
* Pure Data Packet system implementation. : 16 bit image packet implementation
- * Copyright (c) by Tom Schouten <pdp@zzz.kotnet.org>
+ * Copyright (c) by Tom Schouten <tom@zwizwa.be>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by