The ltmmCapture and ltmmConvert objects allow the user to write media data to memory instead of a file.
Define the memory target you should allocate an empty SAFEARRAY and assign it to the ltmmCapture or ltmmConvert object. The assignment is performed as follows:
IltmmConvert* pConvert; // ltmmConvert object interface (initialized elsewhere)
SAFEARRAY* psa;
// allocate an empty byte array
psa = SafeArrayCreateVector(VT_UI1, 0, 0);
// the array must be passed in a VARIANT
VariantInit(&var);
V_VT(&var) = (VT_ARRAY | VT_UI1);
V_ARRAY(&var) = psa;
// assign the array
IltmmConvert_put_TargetArray (pConvert, var);
IltmmConvert* pConvert; // ltmmConvert object interface (initialized elsewhere)
SAFEARRAY* psa;
// allocate an empty byte array
psa = SafeArrayCreateVector(VT_UI1, 0, 0);
// the array must be passed in a VARIANT
VariantInit(&var);
V_VT(&var) = (VT_ARRAY | VT_UI1);
V_ARRAY(&var) = psa;
// assign the array
pConvert->put_TargetArray (var);
The array will be resized and filled with the objects output data. As long as the array is assigned to object, the array data and descriptor should not be accessed. The user can reset the target by calling the ResetTarget function:
IltmmConvert_ResetTarget (pConvert);
pConvert->ResetTarget ();
Once the target has been reset, the user may access or free the memory.
Help Collections
Raster .NET | C API | C++ Class Library | HTML5 JavaScript
Document .NET | C API | C++ Class Library | HTML5 JavaScript
Medical .NET | C API | C++ Class Library | HTML5 JavaScript
Medical Web Viewer .NET
Multimedia
Direct Show .NET | C API | Filters
Media Foundation .NET | C API | Transforms
Supported Platforms
.NET, Java, Android, and iOS/macOS Assemblies
Imaging, Medical, and Document
C API/C++ Class Libraries
Imaging, Medical, and Document
HTML5 JavaScript Libraries
Imaging, Medical, and Document