Hey,
in a song I've made, I edited some automation and suddenly, lmms got *very*
slow. I saved the file and got a very large mmp file :( Now, when I try to
load the mmpz again, it loads for 5 minutes without any efforts. (this fails
for both stable as git lmms)
So I guess I could remove this buggy automation from an "mmp" file. Is there
any way to get the mmp file from mmpz? [1] Or does someone know how to fix
this bug in any way?
Thanks on advance + kind regards,
Johannes
[1] Note: I appended a program which should achieve this, but it did not work:
"qUncompress: Z_DATA_ERROR: Input data is corrupted")
#include <QFile>
#include <QDebug>
int main(int argc, char** argv)
{
if(argc != 3)
{
qDebug() << "Syntax: " << argv[0] << " <in-file> <out-file>";
}
else
{
QFile infile( argv[0] ), outfile( argv[1] );
if (!infile.open(QIODevice::ReadOnly)) return 1;
if (!outfile.open(QIODevice::WriteOnly)) return 1;
QByteArray compressed = infile.readAll();
outfile.write(qUncompress(compressed));
outfile.close();
}
return 0;
}------------------------------------------------------------------------------
Android apps run on BlackBerry 10
Introducing the new BlackBerry 10.2.1 Runtime for Android apps.
Now with support for Jelly Bean, Bluetooth, Mapview and more.
Get your Android app in front of a whole new audience. Start now.
http://pubads.g.doubleclick.net/gampad/clk?id=124407151&iu=/4140/ostg.clktrk
_______________________________________________
LMMS-devel mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/lmms-devel