mirror of
https://github.com/game-stop/veejay.git
synced 2025-12-19 06:10:01 +01:00
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:
34
vevo-mpool/test/vevoutilstest.c
Normal file
34
vevo-mpool/test/vevoutilstest.c
Normal 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;
|
||||
}
|
||||
Reference in New Issue
Block a user