|
@@ -126,7 +126,7 @@ static QString codecsRootPath()
|
|
|
///////////////////////////////////////////////////////////////////////////////////////////////////
|
|
|
static QString codecsPath()
|
|
|
{
|
|
|
- return codecsRootPath() + "pmp-" + getBuildType() + "-" + g_codecVersion + QDir::separator();
|
|
|
+ return codecsRootPath() + g_codecVersion + "-" + getBuildType() + QDir::separator();
|
|
|
}
|
|
|
|
|
|
///////////////////////////////////////////////////////////////////////////////////////////////////
|
|
@@ -206,7 +206,7 @@ QString CodecDriver::getMangledName() const
|
|
|
///////////////////////////////////////////////////////////////////////////////////////////////////
|
|
|
QString CodecDriver::getFileName() const
|
|
|
{
|
|
|
- return SHLIB_PREFIX + getMangledName() + "-" + g_codecVersion + "-" + getBuildType() + "." + SHLIB_EXTENSION;
|
|
|
+ return SHLIB_PREFIX + getMangledName() + "." + SHLIB_EXTENSION;
|
|
|
}
|
|
|
|
|
|
///////////////////////////////////////////////////////////////////////////////////////////////////
|