I iterate over all components that can export using these calls:
myCompDesc.componentType = MovieExportType;
myCompDesc.componentSubType = 0;
myCompDesc.componentManufacturer = 0;
myCompDesc.componentFlags =
canMovieExportFromProcedures;
myCompDesc.componentFlagsMask =
canMovieExportFromProcedures;
myComponent = FindNextComponent(myComponent,
&myCompDesc);
if (myComponent != NULL) {
// get the component information
GetComponentInfo(myComponent, &myCompDesc,
myCompName, NULL, NULL);
OGG is returned as supporting canMovieExportFromProcedures.
However, when I then call:
OpenComponent() on that, it returns NULL.
OS X 10.3.8
- me@davecotter.com