~ubuntu-branches/ubuntu/hoary/kdemultimedia/hoary

« back to all changes in this revision

Viewing changes to kmid/player/midfile.h

  • Committer: Bazaar Package Importer
  • Author(s): Martin Schulze
  • Date: 2003-01-22 15:00:51 UTC
  • Revision ID: james.westby@ubuntu.com-20030122150051-uihwkdoxf15mi1tn
Tags: upstream-2.2.2
ImportĀ upstreamĀ versionĀ 2.2.2

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*  midfile.h  - function which reads a midi file,and creates the track classes
 
2
    Copyright (C) 1997,98,99  Antonio Larrosa Jimenez
 
3
 
 
4
    This program is free software; you can redistribute it and/or modify
 
5
    it under the terms of the GNU General Public License as published by
 
6
    the Free Software Foundation; either version 2 of the License, or
 
7
    (at your option) any later version.
 
8
 
 
9
    This program is distributed in the hope that it will be useful,
 
10
    but WITHOUT ANY WARRANTY; without even the implied warranty of
 
11
    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
12
    GNU General Public License for more details.
 
13
 
 
14
    You should have received a copy of the GNU General Public License
 
15
    along with this program; if not, write to the Free Software
 
16
    Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
 
17
 
 
18
    Send comments and bug fixes to antlarr@arrakis.es
 
19
    or to Antonio Larrosa, Rio Arnoya, 10 5B, 29006 Malaga, Spain
 
20
 
 
21
***************************************************************************/
 
22
#ifndef _MIDFILE_H
 
23
#define _MIDFILE_H
 
24
 
 
25
#include "dattypes.h"
 
26
#include "track.h"
 
27
#include <stdio.h>
 
28
 
 
29
struct MidiFileInfo
 
30
{
 
31
    int format;
 
32
    int ntracks;
 
33
    int ticksPerCuarterNote;
 
34
 
 
35
    ulong ticksTotal;
 
36
    double millisecsTotal;
 
37
    ulong ticksPlayed;
 
38
    
 
39
    int patchesUsed[256];
 
40
 
 
41
    // 0 - it's not used
 
42
    // 1 - it's used only once
 
43
    // 2 - if it's used twice
 
44
    // 3 - if it's used three times
 
45
    // and so on
 
46
};
 
47
 
 
48
double tempoToMetronomeTempo(ulong x);
 
49
double metronomeTempoToTempo(ulong x);
 
50
 
 
51
MidiTrack **readMidiFile( const char *name, MidiFileInfo *info, int &ok);
 
52
 
 
53
void parseInfoData( MidiFileInfo *info, MidiTrack **tracks, float ratioTempo);
 
54
 
 
55
void parsePatchesUsed( MidiTrack **tracks, MidiFileInfo *info, int gm);
 
56
 
 
57
#endif