Hi,
I want to post some code which has defn like
struct AVPicture {
int *data[4];
int linesize[4];
}
the is noe recognised by matlab, so i need to port to some form like
struct AVPicture {
int **data;
int *linesize;
}
Now whatz the best way to go about this process
1. write a wrapper header, but how to initialize the constants ?? like
... **data to *data[]
2. rewrites the source .. [impossible]
-madan
I want to post some code which has defn like
struct AVPicture {
int *data[4];
int linesize[4];
}
the is noe recognised by matlab, so i need to port to some form like
struct AVPicture {
int **data;
int *linesize;
}
Now whatz the best way to go about this process
1. write a wrapper header, but how to initialize the constants ?? like
... **data to *data[]
2. rewrites the source .. [impossible]
-madan
Comment