1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-12-19 15:11:23 +01:00

Fixed MIDI playback on Linux. Still need configure files for libscorealign and portmidi. (I tweaked makefiles by hand to build and test with EXPERIMENTAL_MIDI_OUT and EXPERIMENTAL_SCOREALIGN.) Also, I updated portmidi files, including some bug fixes from the portmidi project.

This commit is contained in:
rbdannenberg
2010-10-01 17:59:18 +00:00
parent 576dfe6653
commit 6fa857c3ae
39 changed files with 375 additions and 5373 deletions

View File

@@ -2,8 +2,10 @@
*
* 17-Jun-08 RBD created based on audiofilereader.cpp
*/
#include "assert.h"
#include "stdlib.h"
#include <assert.h>
#include <stdlib.h>
#include <stdio.h>
#include <string.h>
#include "audioreader.h"
#include "allegro.h"
#include "scorealign.h"
@@ -75,5 +77,5 @@ void Audio_mixer_reader::print_info()
{
printf(" Audacity mixer at @ %p\n", mixer);
printf(" sample rate %g\n", get_sample_rate());
printf(" total frames %d\n", get_frames());
printf(" total frames %ld\n", get_frames());
}