MCPcopy Create free account
hub / github.com/IENT/YUView / getLibraryNames

Method getLibraryNames

YUViewLib/src/decoder/decoderHM.cpp:123–132  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

121}
122
123QStringList decoderHM::getLibraryNames() const
124{
125 // If the file name is not set explicitly, QLibrary will try to open the .so file first.
126 // Since this has been compiled for linux it will fail and not even try to open the .dylib.
127 // On windows and linux ommitting the extension works
128 auto names =
129 is_Q_OS_MAC ? QStringList() << "libHMDecoder.dylib" : QStringList() << "libHMDecoder";
130
131 return names;
132}
133
134void decoderHM::resolveLibraryFunctionPointers()
135{

Callers 1

loadDecoderLibraryMethod · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected