summaryrefslogtreecommitdiff
path: root/image/video.h
diff options
context:
space:
mode:
authorJohn Mark Bell <jmb@netsurf-browser.org>2011-12-05 22:33:02 +0000
committerJohn Mark Bell <jmb@netsurf-browser.org>2011-12-05 22:33:02 +0000
commit4e3a4448ec4b7b3079bcc6fe282985cae402e0d9 (patch)
tree1e614d2b97ad59b47ad9fc8751aaf3d2f89c3494 /image/video.h
parent61a36faf7f190ad3e3c1bbc8a06ebbcc8f9128e3 (diff)
downloadnetsurf-4e3a4448ec4b7b3079bcc6fe282985cae402e0d9.tar.gz
netsurf-4e3a4448ec4b7b3079bcc6fe282985cae402e0d9.tar.bz2
Beginnings of a gstreamer binding. I've been sitting on this for too long
svn path=/trunk/netsurf/; revision=13248
Diffstat (limited to 'image/video.h')
-rw-r--r--image/video.h26
1 files changed, 26 insertions, 0 deletions
diff --git a/image/video.h b/image/video.h
new file mode 100644
index 000000000..376c837ba
--- /dev/null
+++ b/image/video.h
@@ -0,0 +1,26 @@
+/*
+ * Copyright 2011 John-Mark Bell <jmb@netsurf-browser.org>
+ *
+ * This file is part of NetSurf, http://www.netsurf-browser.org/
+ *
+ * NetSurf 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; version 2 of the License.
+ *
+ * NetSurf 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, see <http://www.gnu.org/licenses/>.
+ */
+
+#ifndef NETSURF_IMAGE_VIDEO_H_
+#define NETSURF_IMAGE_VIDEO_H_
+
+#include "utils/errors.h"
+
+nserror nsvideo_init(void);
+
+#endif