GPL boilerplate.
authorCarl Hetherington <cth@carlh.net>
Thu, 11 Jul 2013 13:32:56 +0000 (14:32 +0100)
committerCarl Hetherington <cth@carlh.net>
Thu, 11 Jul 2013 13:32:56 +0000 (14:32 +0100)
src/lib/resampler.cc
src/lib/resampler.h

index ebb507cb124fd8ca68e93b813480aec581c209d2..cc50724420922440c7e7ba0cb90a6d1d04086524 100644 (file)
@@ -1,3 +1,22 @@
+/*
+    Copyright (C) 2013 Carl Hetherington <cth@carlh.net>
+
+    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., 675 Mass Ave, Cambridge, MA 02139, USA.
+
+*/
+
 extern "C" {
 #include "libavutil/channel_layout.h"
 }      
@@ -7,6 +26,7 @@ extern "C" {
 
 #include "i18n.h"
 
+using std::cout;
 using boost::shared_ptr;
 
 Resampler::Resampler (int in, int out, int channels)
index 21979846eaffa931afc548e74d963adfc219f26b..7c85773c000a050d2556b94d38d07ca106922d47 100644 (file)
@@ -1,3 +1,22 @@
+/*
+    Copyright (C) 2013 Carl Hetherington <cth@carlh.net>
+
+    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., 675 Mass Ave, Cambridge, MA 02139, USA.
+
+*/
+
 #include <boost/shared_ptr.hpp>
 extern "C" {
 #include <libswresample/swresample.h>