Commit 05b1d217 authored by Olivier Aubert's avatar Olivier Aubert

Snapshot module (dummy video output module keeping a configurable image cache).

It is chiefly used by the corba module.
parent f84b1d9d
......@@ -3573,7 +3573,7 @@ if test "${enable_corba}" = "yes"; then
AC_MSG_ERROR([Could not find corba development headers])
])
if test "${ac_cv_corba_headers}" = "yes"; then
AX_ADD_PLUGINS(corba)
AX_ADD_PLUGINS([corba snapshot])
fi
CPPFLAGS="${CPPFLAGS_save}"
fi
......
typedef struct snapshot_t {
char *p_data; /* Data area */
int i_width; /* In pixels */
int i_height; /* In pixels */
int i_datasize; /* In bytes */
mtime_t date; /* Presentation time */
} snapshot_t;
This diff is collapsed.
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment