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:
@@ -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());
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user