ardour
smf_private.h
Go to the documentation of this file.
1 /*-
2  * Copyright (c) 2007, 2008 Edward Tomasz NapieraƂa <trasz@FreeBSD.org>
3  * All rights reserved.
4  *
5  * Redistribution and use in source and binary forms, with or without
6  * modification, are permitted provided that the following conditions
7  * are met:
8  * 1. Redistributions of source code must retain the above copyright
9  * notice, this list of conditions and the following disclaimer.
10  * 2. Redistributions in binary form must reproduce the above copyright
11  * notice, this list of conditions and the following disclaimer in the
12  * documentation and/or other materials provided with the distribution.
13  *
14  * ALTHOUGH THIS SOFTWARE IS MADE OF WIN AND SCIENCE, IT IS PROVIDED BY THE
15  * AUTHOR AND CONTRIBUTORS ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES,
16  * INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY
17  * AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL
18  * THE AUTHOR OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
19  * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED
20  * TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA,
21  * OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
22  * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
23  * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
24  * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
25  *
26  */
27 
28 #ifndef SMF_PRIVATE_H
29 #define SMF_PRIVATE_H
30 
31 #include <stdint.h>
32 #include <sys/types.h>
33 
34 //#include "config.h"
35 //#define SMF_VERSION PACKAGE_VERSION
36 
44 #if defined(__GNUC__)
45 #define ATTRIBUTE_PACKED __attribute__((__packed__))
46 #else
47 #define ATTRIBUTE_PACKED
48 #pragma pack(1)
49 #endif
50 
53  char id[4];
54  uint32_t length;
56 
60  uint16_t format;
61  uint16_t number_of_tracks;
62  uint16_t division;
64 
65 #if (!defined __GNUC__)
66 #pragma pack()
67 #endif
68 
69 void smf_track_add_event(smf_track_t *track, smf_event_t *event);
70 void smf_init_tempo(smf_t *smf);
71 void smf_fini_tempo(smf_t *smf);
74 void remove_last_tempo_with_pulses(smf_t *smf, size_t pulses);
77 int is_status_byte(const unsigned char status) WARN_UNUSED_RESULT;
79 
80 #endif /* SMF_PRIVATE_H */
81 
int smf_event_length_is_valid(const smf_event_t *event) WARN_UNUSED_RESULT
Definition: smf_load.c:740
smf_track_t * smf_find_track_with_next_event(smf_t *smf)
Definition: smf.c:816
void smf_init_tempo(smf_t *smf)
Definition: smf_tempo.c:364
void smf_create_tempo_map_and_compute_seconds(smf_t *smf)
Definition: smf_tempo.c:235
#define WARN_UNUSED_RESULT
Definition: smf.h:230
void maybe_add_to_tempo_map(smf_event_t *event)
Definition: smf_tempo.c:125
int is_status_byte(const unsigned char status) WARN_UNUSED_RESULT
Definition: smf_load.c:248
void remove_last_tempo_with_pulses(smf_t *smf, size_t pulses)
Definition: smf_tempo.c:173
uint16_t number_of_tracks
Definition: smf_private.h:61
void smf_track_add_event(smf_track_t *track, smf_event_t *event)
Definition: smf.c:449
int smf_event_is_tempo_change_or_time_signature(const smf_event_t *event) WARN_UNUSED_RESULT
Definition: smf.c:639
struct chunk_header_struct mthd_header
Definition: smf_private.h:59
void smf_fini_tempo(smf_t *smf)
Definition: smf_tempo.c:339
uint16_t division
Definition: smf_private.h:62
#define ATTRIBUTE_PACKED
Definition: smf_private.h:47
smf_t * smf
Definition: smfsh.c:51