re-import branch of vevo , vevo with memory pool

git-svn-id: svn://code.dyne.org/veejay/trunk@474 eb8d1916-c9e9-0310-b8de-cf0c9472ead5
This commit is contained in:
Niels Elburg
2005-11-05 20:32:11 +00:00
parent 6ca61dbd6b
commit 3c96feac17
47 changed files with 50604 additions and 0 deletions

View File

@@ -0,0 +1,34 @@
#include <string.h>
#include <stdlib.h>
#include <stdarg.h>
#include <stdint.h>
#include <include/vevo.h>
#include <include/livido.h>
#include <src/vevo-utils.c>
int main(int argc, char *argv[])
{
livido_port_t *filter = livido_new_filter_class ( 5,
"Negation",
"Niels Elburg",
"Example plugin",
0,
"GNU GPL" );
char **list = livido_list_properties(filter);
int i;
for (i = 0; list[i] != NULL; i++) {
printf("\tproperty %s\n", list[i]);
free(list[i]);
}
if (list)
free(list);
livido_port_free( filter );
return 1;
}