git-svn-id: http://subversion.jackaudio.org/jack/jack2/trunk/jackmp@2293 0c269be4-1314-0410-8aa9-9f06e86f4224tags/1.90
@@ -20,6 +20,10 @@ Fernando Lopez-Lezcano | |||||
Jackdmp changes log | Jackdmp changes log | ||||
--------------------------- | --------------------------- | ||||
2008-05-20 Stephane Letz <letz@grame.fr> | |||||
* Package number bumped to 1.90 everywhere. | |||||
2008-05-19 Stephane Letz <letz@grame.fr> | 2008-05-19 Stephane Letz <letz@grame.fr> | ||||
* Use of placement new for dynamic port allocation is possibly not safe... so avoid that until a definitive answer is found. | * Use of placement new for dynamic port allocation is possibly not safe... so avoid that until a definitive answer is found. | ||||
@@ -25,7 +25,7 @@ | |||||
namespace Jack | namespace Jack | ||||
{ | { | ||||
#define VERSION "0.72" | |||||
#define VERSION "1.90" | |||||
#define BUFFER_SIZE_MAX 8192 | #define BUFFER_SIZE_MAX 8192 | ||||
@@ -246,16 +246,12 @@ int main(int argc, char* argv[]) | |||||
} | } | ||||
} | } | ||||
/* | |||||
if (show_version) { | |||||
printf ( "jackd version " VERSION | |||||
" tmpdir " DEFAULT_TMP_DIR | |||||
" protocol " PROTOCOL_VERSION | |||||
"\n"); | |||||
if (show_version) { | |||||
printf("jackdmp version " VERSION | |||||
"\n"); | |||||
return -1; | return -1; | ||||
} | } | ||||
*/ | |||||
if (!seen_driver) { | if (!seen_driver) { | ||||
usage(stderr); | usage(stderr); | ||||
exit(1); | exit(1); | ||||
@@ -1184,7 +1184,7 @@ JackAlsaDriver::alsa_driver_xrun_recovery (alsa_driver_t *driver, float *delayed | |||||
snd_pcm_status_t *status; | snd_pcm_status_t *status; | ||||
int res; | int res; | ||||
jack_error("alsa_driver_xrun_recovery "); | |||||
jack_error("alsa_driver_xrun_recovery"); | |||||
snd_pcm_status_alloca(&status); | snd_pcm_status_alloca(&status); | ||||
@@ -2287,10 +2287,8 @@ int JackAlsaDriver::Read() | |||||
* clients about the delay. | * clients about the delay. | ||||
*/ | */ | ||||
//engine->delay (engine, delayed_usecs); | //engine->delay (engine, delayed_usecs); | ||||
jack_log("ALSA XRun "); | |||||
//NotifyXRun(jack_get_microseconds()); | |||||
jack_log("ALSA XRun"); | |||||
NotifyXRun(fLastWaitUst); | NotifyXRun(fLastWaitUst); | ||||
//return 0; | |||||
return -1; | return -1; | ||||
} | } | ||||
@@ -7,7 +7,7 @@ | |||||
<key>CFBundleExecutable</key> | <key>CFBundleExecutable</key> | ||||
<string>Jackservermp</string> | <string>Jackservermp</string> | ||||
<key>CFBundleGetInfoString</key> | <key>CFBundleGetInfoString</key> | ||||
<string>Jackdmp 0.72, @03-08 Paul Davis, Grame</string> | |||||
<string>Jackdmp 1.90, @03-08 Paul Davis, Grame</string> | |||||
<key>CFBundleIdentifier</key> | <key>CFBundleIdentifier</key> | ||||
<string>com.grame.Jackmp</string> | <string>com.grame.Jackmp</string> | ||||
<key>CFBundleInfoDictionaryVersion</key> | <key>CFBundleInfoDictionaryVersion</key> | ||||
@@ -19,6 +19,6 @@ | |||||
<key>CFBundleSignature</key> | <key>CFBundleSignature</key> | ||||
<string>????</string> | <string>????</string> | ||||
<key>CFBundleVersion</key> | <key>CFBundleVersion</key> | ||||
<string>0.72</string> | |||||
<string>1.90</string> | |||||
</dict> | </dict> | ||||
</plist> | </plist> |
@@ -28,8 +28,8 @@ LANGUAGE LANG_FRENCH, SUBLANG_FRENCH | |||||
// | // | ||||
VS_VERSION_INFO VERSIONINFO | VS_VERSION_INFO VERSIONINFO | ||||
FILEVERSION 0,7,2,0 | |||||
PRODUCTVERSION 0,7,2,0 | |||||
FILEVERSION 1,9,0,0 | |||||
PRODUCTVERSION 1,9,0,0 | |||||
FILEFLAGSMASK 0x3fL | FILEFLAGSMASK 0x3fL | ||||
#ifdef _DEBUG | #ifdef _DEBUG | ||||
FILEFLAGS 0x1L | FILEFLAGS 0x1L | ||||
@@ -47,14 +47,14 @@ BEGIN | |||||
VALUE "Comments", "\0" | VALUE "Comments", "\0" | ||||
VALUE "CompanyName", "Grame\0" | VALUE "CompanyName", "Grame\0" | ||||
VALUE "FileDescription", "Jackmp library for Windows\0" | VALUE "FileDescription", "Jackmp library for Windows\0" | ||||
VALUE "FileVersion", "0, 7, 2, 0\0" | |||||
VALUE "FileVersion", "1, 9, 0, 0\0" | |||||
VALUE "InternalName", "libjackmp\0" | VALUE "InternalName", "libjackmp\0" | ||||
VALUE "LegalCopyright", "Copyright Grame © 2006-2008\0" | VALUE "LegalCopyright", "Copyright Grame © 2006-2008\0" | ||||
VALUE "LegalTrademarks", "\0" | VALUE "LegalTrademarks", "\0" | ||||
VALUE "OriginalFilename", "libjackmp.dll\0" | VALUE "OriginalFilename", "libjackmp.dll\0" | ||||
VALUE "PrivateBuild", "\0" | VALUE "PrivateBuild", "\0" | ||||
VALUE "ProductName", "libjackmp\0" | VALUE "ProductName", "libjackmp\0" | ||||
VALUE "ProductVersion", "0, 7, 2, 0\0" | |||||
VALUE "ProductVersion", "1, 9, 0, 0\0" | |||||
VALUE "SpecialBuild", "\0" | VALUE "SpecialBuild", "\0" | ||||
END | END | ||||
END | END | ||||