From b198801053cd5929e75767331c5dfcaef3066146 Mon Sep 17 00:00:00 2001 From: biocrasher Date: Sun, 13 Aug 2006 09:06:10 +0000 Subject: updated contact in license notice, added missing license notes,authors contact updated git-svn-id: https://recordmydesktop.svn.sourceforge.net/svnroot/recordmydesktop/trunk@43 f606c939-3180-4ac9-a4b8-4b8779d57d0a --- recordmydesktop/src/bgr_to_yuv.c | 2 +- recordmydesktop/src/capture_sound.c | 2 +- recordmydesktop/src/encode_image_buffer.c | 26 ++++++++++++++++++++++++++ recordmydesktop/src/encode_sound_buffer.c | 27 +++++++++++++++++++++++++++ recordmydesktop/src/flush_to_ogg.c | 26 ++++++++++++++++++++++++++ recordmydesktop/src/get_frame.c | 2 +- recordmydesktop/src/getzpixmap.c | 2 +- recordmydesktop/src/init_encoder.c | 2 +- recordmydesktop/src/make_dummy_pointer.c | 2 +- recordmydesktop/src/opendev.c | 2 +- recordmydesktop/src/parseargs.c | 2 +- recordmydesktop/src/poll_damage.c | 2 +- recordmydesktop/src/queryextensions.c | 2 +- recordmydesktop/src/recordmydesktop.c | 2 +- recordmydesktop/src/rectinsert.c | 2 +- recordmydesktop/src/register_callbacks.c | 2 +- recordmydesktop/src/setbrwindow.c | 2 +- recordmydesktop/src/update_image.c | 2 +- recordmydesktop/src/zpixmaptobmp.c | 2 +- 19 files changed, 95 insertions(+), 16 deletions(-) (limited to 'recordmydesktop/src') diff --git a/recordmydesktop/src/bgr_to_yuv.c b/recordmydesktop/src/bgr_to_yuv.c index e1774f9..0f775e2 100644 --- a/recordmydesktop/src/bgr_to_yuv.c +++ b/recordmydesktop/src/bgr_to_yuv.c @@ -21,7 +21,7 @@ * * * * * * -* For further information contact me at biocrasher@gmail.com * +* For further information contact me at johnvarouhakis@gmail.com * **********************************************************************************/ diff --git a/recordmydesktop/src/capture_sound.c b/recordmydesktop/src/capture_sound.c index 9449be2..f28ba26 100644 --- a/recordmydesktop/src/capture_sound.c +++ b/recordmydesktop/src/capture_sound.c @@ -21,7 +21,7 @@ * * * * * * -* For further information contact me at biocrasher@gmail.com * +* For further information contact me at johnvarouhakis@gmail.com * **********************************************************************************/ diff --git a/recordmydesktop/src/encode_image_buffer.c b/recordmydesktop/src/encode_image_buffer.c index bc80abe..4ee34b0 100644 --- a/recordmydesktop/src/encode_image_buffer.c +++ b/recordmydesktop/src/encode_image_buffer.c @@ -1,3 +1,29 @@ +/********************************************************************************* +* recordMyDesktop * +********************************************************************************** +* * +* Copyright (C) 2006 John Varouhakis * +* * +* * +* 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 * +* the Free Software Foundation; either version 2 of the License, or * +* (at your option) any later version. * +* * +* This program is distributed in the hope that it will be useful, * +* but WITHOUT ANY WARRANTY; without even the implied warranty of * +* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * +* GNU General Public License for more details. * +* * +* You should have received a copy of the GNU General Public License * +* along with this program; if not, write to the Free Software * +* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA * +* * +* * +* * +* For further information contact me at johnvarouhakis@gmail.com * +**********************************************************************************/ + #include void *EncodeImageBuffer(void *pdata){ diff --git a/recordmydesktop/src/encode_sound_buffer.c b/recordmydesktop/src/encode_sound_buffer.c index 03b4043..56bf990 100644 --- a/recordmydesktop/src/encode_sound_buffer.c +++ b/recordmydesktop/src/encode_sound_buffer.c @@ -1,3 +1,30 @@ +/********************************************************************************* +* recordMyDesktop * +********************************************************************************** +* * +* Copyright (C) 2006 John Varouhakis * +* * +* * +* 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 * +* the Free Software Foundation; either version 2 of the License, or * +* (at your option) any later version. * +* * +* This program is distributed in the hope that it will be useful, * +* but WITHOUT ANY WARRANTY; without even the implied warranty of * +* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * +* GNU General Public License for more details. * +* * +* You should have received a copy of the GNU General Public License * +* along with this program; if not, write to the Free Software * +* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA * +* * +* * +* * +* For further information contact me at johnvarouhakis@gmail.com * +**********************************************************************************/ + + #include void *EncodeSoundBuffer(void *pdata){ diff --git a/recordmydesktop/src/flush_to_ogg.c b/recordmydesktop/src/flush_to_ogg.c index c32302c..b33ed1c 100644 --- a/recordmydesktop/src/flush_to_ogg.c +++ b/recordmydesktop/src/flush_to_ogg.c @@ -1,3 +1,29 @@ +/********************************************************************************* +* recordMyDesktop * +********************************************************************************** +* * +* Copyright (C) 2006 John Varouhakis * +* * +* * +* 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 * +* the Free Software Foundation; either version 2 of the License, or * +* (at your option) any later version. * +* * +* This program is distributed in the hope that it will be useful, * +* but WITHOUT ANY WARRANTY; without even the implied warranty of * +* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * +* GNU General Public License for more details. * +* * +* You should have received a copy of the GNU General Public License * +* along with this program; if not, write to the Free Software * +* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA * +* * +* * +* * +* For further information contact me at johnvarouhakis@gmail.com * +**********************************************************************************/ + #include void *FlushToOgg(void *pdata){ diff --git a/recordmydesktop/src/get_frame.c b/recordmydesktop/src/get_frame.c index d5673e6..81ca392 100644 --- a/recordmydesktop/src/get_frame.c +++ b/recordmydesktop/src/get_frame.c @@ -21,7 +21,7 @@ * * * * * * -* For further information contact me at biocrasher@gmail.com * +* For further information contact me at johnvarouhakis@gmail.com * **********************************************************************************/ diff --git a/recordmydesktop/src/getzpixmap.c b/recordmydesktop/src/getzpixmap.c index d1af10b..4a7a7de 100644 --- a/recordmydesktop/src/getzpixmap.c +++ b/recordmydesktop/src/getzpixmap.c @@ -21,7 +21,7 @@ * * * * * * -* For further information contact me at biocrasher@gmail.com * +* For further information contact me at johnvarouhakis@gmail.com * **********************************************************************************/ diff --git a/recordmydesktop/src/init_encoder.c b/recordmydesktop/src/init_encoder.c index 342b509..f8af53f 100644 --- a/recordmydesktop/src/init_encoder.c +++ b/recordmydesktop/src/init_encoder.c @@ -21,7 +21,7 @@ * * * * * * -* For further information contact me at biocrasher@gmail.com * +* For further information contact me at johnvarouhakis@gmail.com * **********************************************************************************/ diff --git a/recordmydesktop/src/make_dummy_pointer.c b/recordmydesktop/src/make_dummy_pointer.c index 7f6425f..00a346e 100644 --- a/recordmydesktop/src/make_dummy_pointer.c +++ b/recordmydesktop/src/make_dummy_pointer.c @@ -21,7 +21,7 @@ * * * * * * -* For further information contact me at biocrasher@gmail.com * +* For further information contact me at johnvarouhakis@gmail.com * **********************************************************************************/ diff --git a/recordmydesktop/src/opendev.c b/recordmydesktop/src/opendev.c index a6e91bc..4b559ec 100644 --- a/recordmydesktop/src/opendev.c +++ b/recordmydesktop/src/opendev.c @@ -21,7 +21,7 @@ * * * * * * -* For further information contact me at biocrasher@gmail.com * +* For further information contact me at johnvarouhakis@gmail.com * **********************************************************************************/ diff --git a/recordmydesktop/src/parseargs.c b/recordmydesktop/src/parseargs.c index ac75945..c858db0 100644 --- a/recordmydesktop/src/parseargs.c +++ b/recordmydesktop/src/parseargs.c @@ -21,7 +21,7 @@ * * * * * * -* For further information contact me at biocrasher@gmail.com * +* For further information contact me at johnvarouhakis@gmail.com * **********************************************************************************/ diff --git a/recordmydesktop/src/poll_damage.c b/recordmydesktop/src/poll_damage.c index 9daef6b..5433bbc 100644 --- a/recordmydesktop/src/poll_damage.c +++ b/recordmydesktop/src/poll_damage.c @@ -21,7 +21,7 @@ * * * * * * -* For further information contact me at biocrasher@gmail.com * +* For further information contact me at johnvarouhakis@gmail.com * **********************************************************************************/ diff --git a/recordmydesktop/src/queryextensions.c b/recordmydesktop/src/queryextensions.c index 1107fab..056e534 100644 --- a/recordmydesktop/src/queryextensions.c +++ b/recordmydesktop/src/queryextensions.c @@ -21,7 +21,7 @@ * * * * * * -* For further information contact me at biocrasher@gmail.com * +* For further information contact me at johnvarouhakis@gmail.com * **********************************************************************************/ diff --git a/recordmydesktop/src/recordmydesktop.c b/recordmydesktop/src/recordmydesktop.c index 50e6e78..c2f8710 100644 --- a/recordmydesktop/src/recordmydesktop.c +++ b/recordmydesktop/src/recordmydesktop.c @@ -21,7 +21,7 @@ * * * * * * -* For further information contact me at biocrasher@gmail.com * +* For further information contact me at johnvarouhakis@gmail.com * **********************************************************************************/ diff --git a/recordmydesktop/src/rectinsert.c b/recordmydesktop/src/rectinsert.c index dfe721e..3bec07d 100644 --- a/recordmydesktop/src/rectinsert.c +++ b/recordmydesktop/src/rectinsert.c @@ -21,7 +21,7 @@ * * * * * * -* For further information contact me at biocrasher@gmail.com * +* For further information contact me at johnvarouhakis@gmail.com * **********************************************************************************/ diff --git a/recordmydesktop/src/register_callbacks.c b/recordmydesktop/src/register_callbacks.c index 1bcffe8..d7fa00b 100644 --- a/recordmydesktop/src/register_callbacks.c +++ b/recordmydesktop/src/register_callbacks.c @@ -21,7 +21,7 @@ * * * * * * -* For further information contact me at biocrasher@gmail.com * +* For further information contact me at johnvarouhakis@gmail.com * **********************************************************************************/ diff --git a/recordmydesktop/src/setbrwindow.c b/recordmydesktop/src/setbrwindow.c index 5177dac..58dc34c 100644 --- a/recordmydesktop/src/setbrwindow.c +++ b/recordmydesktop/src/setbrwindow.c @@ -21,7 +21,7 @@ * * * * * * -* For further information contact me at biocrasher@gmail.com * +* For further information contact me at johnvarouhakis@gmail.com * **********************************************************************************/ diff --git a/recordmydesktop/src/update_image.c b/recordmydesktop/src/update_image.c index fed9445..2725011 100644 --- a/recordmydesktop/src/update_image.c +++ b/recordmydesktop/src/update_image.c @@ -21,7 +21,7 @@ * * * * * * -* For further information contact me at biocrasher@gmail.com * +* For further information contact me at johnvarouhakis@gmail.com * **********************************************************************************/ diff --git a/recordmydesktop/src/zpixmaptobmp.c b/recordmydesktop/src/zpixmaptobmp.c index 21068c8..0aa9477 100644 --- a/recordmydesktop/src/zpixmaptobmp.c +++ b/recordmydesktop/src/zpixmaptobmp.c @@ -21,7 +21,7 @@ * * * * * * -* For further information contact me at biocrasher@gmail.com * +* For further information contact me at johnvarouhakis@gmail.com * **********************************************************************************/ -- cgit v1.2.1