probable fix for 64bit VST signal latency
This commit is contained in:
@@ -512,7 +512,11 @@ VSTPlugin::signal_latency () const
|
|||||||
return _user_latency;
|
return _user_latency;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#if ( defined(__x86_64__) || defined(_M_X64) )
|
||||||
|
return *((int32_t *) (((char *) &_plugin->flags) + 20)); /* initialDelay */
|
||||||
|
#else
|
||||||
return *((int32_t *) (((char *) &_plugin->flags) + 12)); /* initialDelay */
|
return *((int32_t *) (((char *) &_plugin->flags) + 12)); /* initialDelay */
|
||||||
|
#endif
|
||||||
}
|
}
|
||||||
|
|
||||||
set<Evoral::Parameter>
|
set<Evoral::Parameter>
|
||||||
|
|||||||
Reference in New Issue
Block a user