GPL boilerplate.
authorCarl Hetherington <cth@carlh.net>
Sat, 27 Oct 2012 00:25:21 +0000 (01:25 +0100)
committerCarl Hetherington <cth@carlh.net>
Sat, 27 Oct 2012 00:25:21 +0000 (01:25 +0100)
src/lib/filter_graph.cc
src/lib/filter_graph.h

index 7d627b1b0b82d9687df9a6d6f85217bbe5d49b32..1418384b85672235aa17cf6291d81ed588b08bdf 100644 (file)
@@ -1,3 +1,22 @@
+/*
+    Copyright (C) 2012 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 <libavfilter/avfiltergraph.h>
 #include <libavfilter/buffersrc.h>
@@ -181,4 +200,3 @@ FilterGraph::can_process (Size s, AVPixelFormat p) const
 {
        return (_size == s && _pixel_format == p);
 }
-
index c6ae15e48486b9c759099ead2bc437b65a045985..53908738ecd5bf9f3495b8d23b8d8ce690f34db2 100644 (file)
@@ -1,3 +1,22 @@
+/*
+    Copyright (C) 2012 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.
+
+*/
+
 #ifndef DVDOMATIC_FILTER_GRAPH_H
 #define DVDOMATIC_FILTER_GRAPH_H