0
0
mirror of https://github.com/obsproject/obs-studio.git synced 2024-09-20 13:08:50 +02:00
obs-studio/plugins/linux-capture
jp9000 c9df41c1e2 (API Change) Remove pointers from all typedefs
Typedef pointers are unsafe.  If you do:
typedef struct bla *bla_t;
then you cannot use it as a constant, such as: const bla_t, because
that constant will be to the pointer itself rather than to the
underlying data.  I admit this was a fundamental mistake that must
be corrected.

All typedefs that were pointer types will now have their pointers
removed from the type itself, and the pointers will be used when they
are actually used as variables/parameters/returns instead.

This does not break ABI though, which is pretty nice.
2014-09-25 21:48:11 -07:00
..
data/locale Combine linux-xcomposite and linux-capture (xshm) 2014-08-29 17:20:02 -07:00
CMakeLists.txt Combine linux-xcomposite and linux-capture (xshm) 2014-08-29 17:20:02 -07:00
linux-capture.c Combine linux-xcomposite and linux-capture (xshm) 2014-08-29 17:20:02 -07:00
README Rename linux-xshm module to linux-capture 2014-08-29 17:19:30 -07:00
xcompcap-helper.cpp Combine linux-xcomposite and linux-capture (xshm) 2014-08-29 17:20:02 -07:00
xcompcap-helper.hpp Combine linux-xcomposite and linux-capture (xshm) 2014-08-29 17:20:02 -07:00
xcompcap-main.cpp (API Change) Remove pointers from all typedefs 2014-09-25 21:48:11 -07:00
xcompcap-main.hpp (API Change) Remove pointers from all typedefs 2014-09-25 21:48:11 -07:00
xcomposite-main.cpp (API Change) Remove pointers from all typedefs 2014-09-25 21:48:11 -07:00
xcursor.c (API Change) Remove pointers from all typedefs 2014-09-25 21:48:11 -07:00
xcursor.h (API Change) Remove pointers from all typedefs 2014-09-25 21:48:11 -07:00
xhelpers.c Rename linux-xshm module to linux-capture 2014-08-29 17:19:30 -07:00
xhelpers.h Rename linux-xshm module to linux-capture 2014-08-29 17:19:30 -07:00
xshm-input.c (API Change) Remove pointers from all typedefs 2014-09-25 21:48:11 -07:00

Linux XShm capture plugin

  This plugin uses the MIT-SHM extension for the X-server to capture the
  desktop.

Todo:

 - handle resolution changes of screens
 - handle adding/removing screens while recording
 - support different depths

Contributing:

  If you are interested in helping out with the plugin, please drop by in the
  #obs-dev channel on quakenet.

References:
 - http://www.x.org/releases/current/doc/xextproto/shm.html