phoenix: Initial commit of Active Silicon Phoenix source

Just barely works, no checking for lost/dropped frames, no accurate timestamping, etc.
This commit is contained in:
Joshua M. Doe
2011-11-03 13:46:04 -04:00
parent 35b06f1217
commit 6ae2b319c8
6 changed files with 900 additions and 1 deletions

View File

@@ -0,0 +1,26 @@
add_definitions(-DHAVE_CONFIG_H)
set ( SOURCES
gstphoenixsrc.c )
set ( HEADERS
gstphoenixsrc.h )
include_directories ( AFTER
${PHOENIX_INCLUDE_DIR}
.)
add_library ( libgstphoenix MODULE
${SOURCES}
${HEADERS} )
target_link_libraries ( libgstphoenix
${GLIB2_LIBRARIES}
${GSTREAMER_LIBRARIES}
${GSTREAMER_BASE_LIBRARY}
${GSTREAMER_INTERFACE_LIBRARY}
${GSTREAMER_VIDEO_LIBRARY}
${PHOENIX_LIBRARIES})
install (TARGETS libgstphoenix
LIBRARY DESTINATION lib/gstreamer-0.10)