summaryrefslogtreecommitdiff
path: root/gr-video-sdl/src
diff options
context:
space:
mode:
Diffstat (limited to 'gr-video-sdl/src')
-rw-r--r--gr-video-sdl/src/CMakeLists.txt115
-rw-r--r--gr-video-sdl/src/Makefile.am1
-rw-r--r--gr-video-sdl/src/video_sdl_api.h33
-rw-r--r--gr-video-sdl/src/video_sdl_sink_s.h7
-rw-r--r--gr-video-sdl/src/video_sdl_sink_uc.h7
5 files changed, 157 insertions, 6 deletions
diff --git a/gr-video-sdl/src/CMakeLists.txt b/gr-video-sdl/src/CMakeLists.txt
new file mode 100644
index 000000000..9ad5fcbb1
--- /dev/null
+++ b/gr-video-sdl/src/CMakeLists.txt
@@ -0,0 +1,115 @@
+# Copyright 2011 Free Software Foundation, Inc.
+#
+# This file is part of GNU Radio
+#
+# GNU Radio 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 3, or (at your option)
+# any later version.
+#
+# GNU Radio 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 GNU Radio; see the file COPYING. If not, write to
+# the Free Software Foundation, Inc., 51 Franklin Street,
+# Boston, MA 02110-1301, USA.
+
+########################################################################
+# Setup the include and linker paths
+########################################################################
+include_directories(
+ ${GNURADIO_CORE_INCLUDE_DIRS}
+ ${GR_VIDEO_SDL_INCLUDE_DIRS}
+)
+
+include_directories(${Boost_INCLUDE_DIRS})
+link_directories(${Boost_LIBRARY_DIRS})
+
+include_directories(${SDL_INCLUDE_DIR})
+
+########################################################################
+# Setup library
+########################################################################
+list(APPEND gr_video_sdl_sources
+ video_sdl_sink_uc.cc
+ video_sdl_sink_s.cc
+)
+
+list(APPEND video_sdl_libs
+ gnuradio-core
+ ${Boost_LIBRARIES}
+ ${SDL_LIBRARY}
+)
+
+add_library(gnuradio-video-sdl SHARED ${gr_video_sdl_sources})
+target_link_libraries(gnuradio-video-sdl ${video_sdl_libs})
+set_target_properties(gnuradio-video-sdl PROPERTIES DEFINE_SYMBOL "gnuradio_video_sdl_EXPORTS")
+set_target_properties(gnuradio-video-sdl PROPERTIES SOVERSION ${LIBVER})
+
+install(TARGETS gnuradio-video-sdl
+ LIBRARY DESTINATION ${GR_LIBRARY_DIR} COMPONENT "video_sdl_runtime" # .so/.dylib file
+ ARCHIVE DESTINATION ${GR_LIBRARY_DIR} COMPONENT "video_sdl_devel" # .lib file
+ RUNTIME DESTINATION ${GR_RUNTIME_DIR} COMPONENT "video_sdl_runtime" # .dll file
+)
+
+########################################################################
+# Install public header files
+########################################################################
+install(FILES
+ video_sdl_api.h
+ video_sdl_sink_uc.h
+ video_sdl_sink_s.h
+ DESTINATION ${GR_INCLUDE_DIR}/gnuradio
+ COMPONENT "video_sdl_devel"
+)
+
+########################################################################
+# Setup swig generation
+########################################################################
+if(ENABLE_PYTHON)
+include(GrPython)
+include(GrSwig)
+
+set(GR_SWIG_INCLUDE_DIRS
+ ${GR_COMEDI_INCLUDE_DIRS}
+ ${GNURADIO_CORE_SWIG_INCLUDE_DIRS}
+)
+
+set(GR_SWIG_LIBRARIES gnuradio-video-sdl)
+
+GR_SWIG_MAKE(video_sdl video_sdl.i)
+
+GR_SWIG_INSTALL(
+ TARGETS video_sdl
+ DESTINATION ${GR_PYTHON_DIR}/gnuradio
+ COMPONENT "video_sdl_python"
+)
+
+install(
+ FILES video_sdl.i
+ DESTINATION ${GR_INCLUDE_DIR}/gnuradio/swig
+ COMPONENT "video_sdl_swig"
+)
+
+endif(ENABLE_PYTHON)
+
+########################################################################
+# Handle the unit tests
+########################################################################
+if(ENABLE_TESTING AND ENABLE_PYTHON)
+include(GrTest)
+file(GLOB py_qa_test_files "qa_*.py")
+foreach(py_qa_test_file ${py_qa_test_files})
+ get_filename_component(py_qa_test_name ${py_qa_test_file} NAME_WE)
+ set(GR_TEST_PYTHON_DIRS
+ ${CMAKE_BINARY_DIR}/gnuradio-core/src/python
+ ${CMAKE_BINARY_DIR}/gnuradio-core/src/lib/swig
+ ${CMAKE_BINARY_DIR}/gr-video-sdl/src
+ )
+ set(GR_TEST_TARGET_DEPS gruel gnuradio-core gnuradio-video-sdl)
+ GR_ADD_TEST(${py_qa_test_name} ${PYTHON_EXECUTABLE} ${py_qa_test_file})
+endforeach(py_qa_test_file)
+endif(ENABLE_TESTING AND ENABLE_PYTHON)
diff --git a/gr-video-sdl/src/Makefile.am b/gr-video-sdl/src/Makefile.am
index 04c39542a..496671bea 100644
--- a/gr-video-sdl/src/Makefile.am
+++ b/gr-video-sdl/src/Makefile.am
@@ -33,6 +33,7 @@ noinst_PYTHON = \
qa_video_sdl.py
grinclude_HEADERS = \
+ video_sdl_api.h \
video_sdl_sink_uc.h \
video_sdl_sink_s.h
diff --git a/gr-video-sdl/src/video_sdl_api.h b/gr-video-sdl/src/video_sdl_api.h
new file mode 100644
index 000000000..5418f86f0
--- /dev/null
+++ b/gr-video-sdl/src/video_sdl_api.h
@@ -0,0 +1,33 @@
+/*
+ * Copyright 2011 Free Software Foundation, Inc.
+ *
+ * This file is part of GNU Radio
+ *
+ * GNU Radio 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 3, or (at your option)
+ * any later version.
+ *
+ * GNU Radio 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 GNU Radio; see the file COPYING. If not, write to
+ * the Free Software Foundation, Inc., 51 Franklin Street,
+ * Boston, MA 02110-1301, USA.
+ */
+
+#ifndef INCLUDED_VIDEO_SDL_API_H
+#define INCLUDED_VIDEO_SDL_API_H
+
+#include <gruel/attributes.h>
+
+#ifdef gnuradio_video_sdl_EXPORTS
+# define VIDEO_SDL_API __GR_ATTR_EXPORT
+#else
+# define VIDEO_SDL_API __GR_ATTR_IMPORT
+#endif
+
+#endif /* INCLUDED_VIDEO_SDL_API_H */
diff --git a/gr-video-sdl/src/video_sdl_sink_s.h b/gr-video-sdl/src/video_sdl_sink_s.h
index 9d3651402..2ec15e36d 100644
--- a/gr-video-sdl/src/video_sdl_sink_s.h
+++ b/gr-video-sdl/src/video_sdl_sink_s.h
@@ -23,6 +23,7 @@
#ifndef INCLUDED_VIDEO_SDL_SINK_S_H
#define INCLUDED_VIDEO_SDL_SINK_S_H
+#include <video_sdl_api.h>
#include <gr_sync_block.h>
#include <string>
#include <SDL.h>
@@ -34,7 +35,7 @@
class video_sdl_sink_s;
typedef boost::shared_ptr<video_sdl_sink_s> video_sdl_sink_s_sptr;
-video_sdl_sink_s_sptr
+VIDEO_SDL_API video_sdl_sink_s_sptr
video_sdl_make_sink_s (double framerate,int width=640, int height=480,unsigned int format=IMGFMT_YV12,int dst_width=-1,int dst_height=-1);
/*!
@@ -47,8 +48,8 @@ video_sdl_make_sink_s (double framerate,int width=640, int height=480,unsigned i
* Input samples must be in the range [0,255].
*/
-class video_sdl_sink_s : public gr_sync_block {
- friend video_sdl_sink_s_sptr
+class VIDEO_SDL_API video_sdl_sink_s : public gr_sync_block {
+ friend VIDEO_SDL_API video_sdl_sink_s_sptr
video_sdl_make_sink_s (double framerate,int width, int height,unsigned int format,int dst_width,int dst_height);
int d_chunk_size;
diff --git a/gr-video-sdl/src/video_sdl_sink_uc.h b/gr-video-sdl/src/video_sdl_sink_uc.h
index 955b003f8..435ddaa8f 100644
--- a/gr-video-sdl/src/video_sdl_sink_uc.h
+++ b/gr-video-sdl/src/video_sdl_sink_uc.h
@@ -23,6 +23,7 @@
#ifndef INCLUDED_VIDEO_SDL_SINK_UC_H
#define INCLUDED_VIDEO_SDL_SINK_UC_H
+#include <video_sdl_api.h>
#include <gr_sync_block.h>
#include <string>
#include <SDL.h>
@@ -34,7 +35,7 @@
class video_sdl_sink_uc;
typedef boost::shared_ptr<video_sdl_sink_uc> video_sdl_sink_uc_sptr;
-video_sdl_sink_uc_sptr
+VIDEO_SDL_API video_sdl_sink_uc_sptr
video_sdl_make_sink_uc (double framerate,int width=640, int height=480,unsigned int format=IMGFMT_YV12,int dst_width=-1,int dst_height=-1);
/*!
@@ -47,8 +48,8 @@ video_sdl_make_sink_uc (double framerate,int width=640, int height=480,unsigned
* Input samples must be in the range [0,255].
*/
-class video_sdl_sink_uc : public gr_sync_block {
- friend video_sdl_sink_uc_sptr
+class VIDEO_SDL_API video_sdl_sink_uc : public gr_sync_block {
+ friend VIDEO_SDL_API video_sdl_sink_uc_sptr
video_sdl_make_sink_uc (double framerate,int width, int height,unsigned int format,int dst_width,int dst_height);
int d_chunk_size;