stereoplay

changeset 4:acf3d25f23cb

added license headings
author John Tsiombikas <nuclear@member.fsf.org>
date Thu, 03 Nov 2011 21:57:12 +0200
parents 0d9a1e23726c
children ba7d221f6725
files src/sdr.c src/sdr.h src/stereoplay.c src/vid.c src/vid.h
diffstat 5 files changed, 89 insertions(+), 0 deletions(-) [+]
line diff
     1.1 --- a/src/sdr.c	Thu Nov 03 21:54:30 2011 +0200
     1.2 +++ b/src/sdr.c	Thu Nov 03 21:57:12 2011 +0200
     1.3 @@ -1,3 +1,21 @@
     1.4 +/*
     1.5 +Stereoplay - an OpenGL stereoscopic video player.
     1.6 +Copyright (C) 2011  John Tsiombikas <nuclear@member.fsf.org>
     1.7 +
     1.8 +This program is free software: you can redistribute it and/or modify
     1.9 +it under the terms of the GNU General Public License as published by
    1.10 +the Free Software Foundation, either version 3 of the License, or
    1.11 +(at your option) any later version.
    1.12 +
    1.13 +This program is distributed in the hope that it will be useful,
    1.14 +but WITHOUT ANY WARRANTY; without even the implied warranty of
    1.15 +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    1.16 +GNU General Public License for more details.
    1.17 +
    1.18 +You should have received a copy of the GNU General Public License
    1.19 +along with this program.  If not, see <http://www.gnu.org/licenses/>.
    1.20 +*/
    1.21 +
    1.22  #include <stdio.h>
    1.23  #include <stdlib.h>
    1.24  #include <string.h>
     2.1 --- a/src/sdr.h	Thu Nov 03 21:54:30 2011 +0200
     2.2 +++ b/src/sdr.h	Thu Nov 03 21:57:12 2011 +0200
     2.3 @@ -1,3 +1,21 @@
     2.4 +/*
     2.5 +Stereoplay - an OpenGL stereoscopic video player.
     2.6 +Copyright (C) 2011  John Tsiombikas <nuclear@member.fsf.org>
     2.7 +
     2.8 +This program is free software: you can redistribute it and/or modify
     2.9 +it under the terms of the GNU General Public License as published by
    2.10 +the Free Software Foundation, either version 3 of the License, or
    2.11 +(at your option) any later version.
    2.12 +
    2.13 +This program is distributed in the hope that it will be useful,
    2.14 +but WITHOUT ANY WARRANTY; without even the implied warranty of
    2.15 +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    2.16 +GNU General Public License for more details.
    2.17 +
    2.18 +You should have received a copy of the GNU General Public License
    2.19 +along with this program.  If not, see <http://www.gnu.org/licenses/>.
    2.20 +*/
    2.21 +
    2.22  #ifndef _SDR_H_
    2.23  #define _SDR_H_
    2.24  
     3.1 --- a/src/stereoplay.c	Thu Nov 03 21:54:30 2011 +0200
     3.2 +++ b/src/stereoplay.c	Thu Nov 03 21:57:12 2011 +0200
     3.3 @@ -1,3 +1,20 @@
     3.4 +/*
     3.5 +Stereoplay - an OpenGL stereoscopic video player.
     3.6 +Copyright (C) 2011  John Tsiombikas <nuclear@member.fsf.org>
     3.7 +
     3.8 +This program is free software: you can redistribute it and/or modify
     3.9 +it under the terms of the GNU General Public License as published by
    3.10 +the Free Software Foundation, either version 3 of the License, or
    3.11 +(at your option) any later version.
    3.12 +
    3.13 +This program is distributed in the hope that it will be useful,
    3.14 +but WITHOUT ANY WARRANTY; without even the implied warranty of
    3.15 +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    3.16 +GNU General Public License for more details.
    3.17 +
    3.18 +You should have received a copy of the GNU General Public License
    3.19 +along with this program.  If not, see <http://www.gnu.org/licenses/>.
    3.20 +*/
    3.21  #include <stdio.h>
    3.22  #include <stdlib.h>
    3.23  #include <string.h>
     4.1 --- a/src/vid.c	Thu Nov 03 21:54:30 2011 +0200
     4.2 +++ b/src/vid.c	Thu Nov 03 21:57:12 2011 +0200
     4.3 @@ -1,3 +1,21 @@
     4.4 +/*
     4.5 +Stereoplay - an OpenGL stereoscopic video player.
     4.6 +Copyright (C) 2011  John Tsiombikas <nuclear@member.fsf.org>
     4.7 +
     4.8 +This program is free software: you can redistribute it and/or modify
     4.9 +it under the terms of the GNU General Public License as published by
    4.10 +the Free Software Foundation, either version 3 of the License, or
    4.11 +(at your option) any later version.
    4.12 +
    4.13 +This program is distributed in the hope that it will be useful,
    4.14 +but WITHOUT ANY WARRANTY; without even the implied warranty of
    4.15 +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    4.16 +GNU General Public License for more details.
    4.17 +
    4.18 +You should have received a copy of the GNU General Public License
    4.19 +along with this program.  If not, see <http://www.gnu.org/licenses/>.
    4.20 +*/
    4.21 +
    4.22  #include <stdio.h>
    4.23  #include <libavcodec/avcodec.h>
    4.24  #include <libavformat/avformat.h>
     5.1 --- a/src/vid.h	Thu Nov 03 21:54:30 2011 +0200
     5.2 +++ b/src/vid.h	Thu Nov 03 21:57:12 2011 +0200
     5.3 @@ -1,3 +1,21 @@
     5.4 +/*
     5.5 +Stereoplay - an OpenGL stereoscopic video player.
     5.6 +Copyright (C) 2011  John Tsiombikas <nuclear@member.fsf.org>
     5.7 +
     5.8 +This program is free software: you can redistribute it and/or modify
     5.9 +it under the terms of the GNU General Public License as published by
    5.10 +the Free Software Foundation, either version 3 of the License, or
    5.11 +(at your option) any later version.
    5.12 +
    5.13 +This program is distributed in the hope that it will be useful,
    5.14 +but WITHOUT ANY WARRANTY; without even the implied warranty of
    5.15 +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    5.16 +GNU General Public License for more details.
    5.17 +
    5.18 +You should have received a copy of the GNU General Public License
    5.19 +along with this program.  If not, see <http://www.gnu.org/licenses/>.
    5.20 +*/
    5.21 +
    5.22  #ifndef VID_H_
    5.23  #define VID_H_
    5.24