mirror of
				https://github.com/alsa-project/alsa-lib.git
				synced 2025-11-03 09:01:52 -05:00 
			
		
		
		
	Fixes several issues with header files: - prefer alsa/asoundlib.h file for the alsa-lib core functionalities (use #warning to inform current and future developers, do the job) - include alsa/asoundlib.h in headers for external plugins by default - pcm_external.h: dependencies cleanup - as benefit, the parsers in IDEs should get all information for individial header files (see PR#435) This change was mainly tergetted to fix errors caused by wrong include order (like for endianness detection, missing typedefs etc.). Closes: https://github.com/alsa-project/alsa-lib/issues/431 Link: https://github.com/alsa-project/alsa-lib/pull/435 Signed-off-by: Jaroslav Kysela <perex@perex.cz>
		
			
				
	
	
		
			189 lines
		
	
	
	
		
			9.2 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			189 lines
		
	
	
	
		
			9.2 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
/* SPDX-License-Identifier: LGPL-2.1+ */
 | 
						|
/**
 | 
						|
 * \file include/ump.h
 | 
						|
 * \brief API library for ALSA rawmidi/UMP interface
 | 
						|
 *
 | 
						|
 * API library for ALSA rawmidi/UMP interface
 | 
						|
 */
 | 
						|
 | 
						|
#if !defined(__ASOUNDLIB_H) && !defined(ALSA_LIBRARY_BUILD)
 | 
						|
/* don't use ALSA_LIBRARY_BUILD define in sources outside alsa-lib */
 | 
						|
#warning "use #include <alsa/asoundlib.h>, <alsa/ump.h> should not be used directly"
 | 
						|
#include <alsa/asoundlib.h>
 | 
						|
#endif
 | 
						|
 | 
						|
#ifndef __ALSA_UMP_H
 | 
						|
#define __ALSA_UMP_H
 | 
						|
 | 
						|
#ifdef __cplusplus
 | 
						|
extern "C" {
 | 
						|
#endif
 | 
						|
 | 
						|
/**
 | 
						|
 *  \defgroup RawMidi RawMidi Interface
 | 
						|
 *  The RawMidi Interface. See \ref rawmidi page for more details.
 | 
						|
 *  \{
 | 
						|
 */
 | 
						|
 | 
						|
/** UMP (Endpoint) RawMIDI device */
 | 
						|
typedef struct _snd_ump snd_ump_t;
 | 
						|
/** UMP Endpoint information container */
 | 
						|
typedef struct snd_ump_endpoint_info snd_ump_endpoint_info_t;
 | 
						|
/** UMP Block information container */
 | 
						|
typedef struct snd_ump_block_info snd_ump_block_info_t;
 | 
						|
 | 
						|
int snd_ump_open(snd_ump_t **inputp, snd_ump_t **outputp, const char *name, int mode);
 | 
						|
int snd_ump_close(snd_ump_t *ump);
 | 
						|
snd_rawmidi_t *snd_ump_rawmidi(snd_ump_t *ump);
 | 
						|
const char *snd_ump_name(snd_ump_t *ump);
 | 
						|
int snd_ump_poll_descriptors_count(snd_ump_t *ump);
 | 
						|
int snd_ump_poll_descriptors(snd_ump_t *ump, struct pollfd *pfds, unsigned int space);
 | 
						|
int snd_ump_poll_descriptors_revents(snd_ump_t *ump, struct pollfd *pfds, unsigned int nfds, unsigned short *revents);
 | 
						|
int snd_ump_nonblock(snd_ump_t *ump, int nonblock);
 | 
						|
int snd_ump_rawmidi_info(snd_ump_t *ump, snd_rawmidi_info_t *info);
 | 
						|
int snd_ump_rawmidi_params(snd_ump_t *ump, snd_rawmidi_params_t *params);
 | 
						|
int snd_ump_rawmidi_params_current(snd_ump_t *ump, snd_rawmidi_params_t *params);
 | 
						|
int snd_ump_rawmidi_status(snd_ump_t *ump, snd_rawmidi_status_t *status);
 | 
						|
int snd_ump_drop(snd_ump_t *ump);
 | 
						|
int snd_ump_drain(snd_ump_t *ump);
 | 
						|
ssize_t snd_ump_write(snd_ump_t *ump, const void *buffer, size_t size);
 | 
						|
ssize_t snd_ump_read(snd_ump_t *ump, void *buffer, size_t size);
 | 
						|
ssize_t snd_ump_tread(snd_ump_t *ump, struct timespec *tstamp, void *buffer, size_t size);
 | 
						|
 | 
						|
/** Max number of UMP Groups */
 | 
						|
#define SND_UMP_MAX_GROUPS		16
 | 
						|
/** Max number of UMP Blocks */
 | 
						|
#define SND_UMP_MAX_BLOCKS		32
 | 
						|
 | 
						|
/** UMP direction */
 | 
						|
enum _snd_ump_direction {
 | 
						|
	/** Input only */
 | 
						|
	SND_UMP_DIR_INPUT =		0x01,
 | 
						|
	/** Output only */
 | 
						|
	SND_UMP_DIR_OUTPUT =		0x02,
 | 
						|
	/** Bidirectional */
 | 
						|
	SND_UMP_DIR_BIDIRECTION	=	0x03,
 | 
						|
};
 | 
						|
 | 
						|
/** UMP EP holds only static blocks */
 | 
						|
#define SND_UMP_EP_INFO_STATIC_BLOCKS		0x01
 | 
						|
 | 
						|
/** Bitmask for UMP EP MIDI protocols */
 | 
						|
#define SND_UMP_EP_INFO_PROTO_MIDI_MASK		0x0300
 | 
						|
/** Bit flag for MIDI 1.0 protocol */
 | 
						|
#define SND_UMP_EP_INFO_PROTO_MIDI1		0x0100
 | 
						|
/** Bit flag for MIDI 2.0 protocol */
 | 
						|
#define SND_UMP_EP_INFO_PROTO_MIDI2		0x0200
 | 
						|
/** Bitmask for UMP Jitter-reduction timestamp */
 | 
						|
#define SND_UMP_EP_INFO_PROTO_JRTS_MASK		0x0003
 | 
						|
/** Bit flag for JRTS in Transmit */
 | 
						|
#define SND_UMP_EP_INFO_PROTO_JRTS_TX		0x0001
 | 
						|
/** Bit flag for JRTS in Receive */
 | 
						|
#define SND_UMP_EP_INFO_PROTO_JRTS_RX		0x0002
 | 
						|
 | 
						|
/** Default version passed to UMP Endpoint info */
 | 
						|
#define SND_UMP_EP_INFO_DEFAULT_VERSION		0x0101
 | 
						|
 | 
						|
size_t snd_ump_endpoint_info_sizeof(void);
 | 
						|
/** \hideinitializer
 | 
						|
 * \brief allocate an invalid #snd_ump_endpoint_info_t using standard alloca
 | 
						|
 * \param ptr returned pointer
 | 
						|
 */
 | 
						|
#define snd_ump_endpoint_info_alloca(ptr) __snd_alloca(ptr, snd_ump_endpoint_info)
 | 
						|
int snd_ump_endpoint_info_malloc(snd_ump_endpoint_info_t **info);
 | 
						|
void snd_ump_endpoint_info_free(snd_ump_endpoint_info_t *info);
 | 
						|
void snd_ump_endpoint_info_clear(snd_ump_endpoint_info_t *info);
 | 
						|
void snd_ump_endpoint_info_copy(snd_ump_endpoint_info_t *dst, const snd_ump_endpoint_info_t *src);
 | 
						|
int snd_ump_endpoint_info_get_card(const snd_ump_endpoint_info_t *info);
 | 
						|
int snd_ump_endpoint_info_get_device(const snd_ump_endpoint_info_t *info);
 | 
						|
unsigned int snd_ump_endpoint_info_get_flags(const snd_ump_endpoint_info_t *info);
 | 
						|
unsigned int snd_ump_endpoint_info_get_protocol_caps(const snd_ump_endpoint_info_t *info);
 | 
						|
unsigned int snd_ump_endpoint_info_get_protocol(const snd_ump_endpoint_info_t *info);
 | 
						|
unsigned int snd_ump_endpoint_info_get_num_blocks(const snd_ump_endpoint_info_t *info);
 | 
						|
unsigned int snd_ump_endpoint_info_get_version(const snd_ump_endpoint_info_t *info);
 | 
						|
unsigned int snd_ump_endpoint_info_get_manufacturer_id(const snd_ump_endpoint_info_t *info);
 | 
						|
unsigned int snd_ump_endpoint_info_get_family_id(const snd_ump_endpoint_info_t *info);
 | 
						|
unsigned int snd_ump_endpoint_info_get_model_id(const snd_ump_endpoint_info_t *info);
 | 
						|
const unsigned char *snd_ump_endpoint_info_get_sw_revision(const snd_ump_endpoint_info_t *info);
 | 
						|
const char *snd_ump_endpoint_info_get_name(const snd_ump_endpoint_info_t *info);
 | 
						|
const char *snd_ump_endpoint_info_get_product_id(const snd_ump_endpoint_info_t *info);
 | 
						|
int snd_ump_endpoint_info(snd_ump_t *ump, snd_ump_endpoint_info_t *info);
 | 
						|
 | 
						|
void snd_ump_endpoint_info_set_card(snd_ump_endpoint_info_t *info, unsigned int card);
 | 
						|
void snd_ump_endpoint_info_set_device(snd_ump_endpoint_info_t *info, unsigned int device);
 | 
						|
void snd_ump_endpoint_info_set_flags(snd_ump_endpoint_info_t *info, unsigned int flags);
 | 
						|
void snd_ump_endpoint_info_set_protocol_caps(snd_ump_endpoint_info_t *info, unsigned int caps);
 | 
						|
void snd_ump_endpoint_info_set_protocol(snd_ump_endpoint_info_t *info, unsigned int protocols);
 | 
						|
void snd_ump_endpoint_info_set_num_blocks(snd_ump_endpoint_info_t *info, unsigned int num_blocks);
 | 
						|
void snd_ump_endpoint_info_set_version(snd_ump_endpoint_info_t *info, unsigned int version);
 | 
						|
void snd_ump_endpoint_info_set_manufacturer_id(snd_ump_endpoint_info_t *info, unsigned int id);
 | 
						|
void snd_ump_endpoint_info_set_family_id(snd_ump_endpoint_info_t *info, unsigned int id);
 | 
						|
void snd_ump_endpoint_info_set_model_id(snd_ump_endpoint_info_t *info, unsigned int id);
 | 
						|
void snd_ump_endpoint_info_set_sw_revision(snd_ump_endpoint_info_t *info, const unsigned char *id);
 | 
						|
void snd_ump_endpoint_info_set_name(snd_ump_endpoint_info_t *info, const char *name);
 | 
						|
void snd_ump_endpoint_info_set_product_id(snd_ump_endpoint_info_t *info, const char *id);
 | 
						|
 | 
						|
/** Bit flag for MIDI 1.0 port w/o restrict in UMP Block info flags */
 | 
						|
#define SND_UMP_BLOCK_IS_MIDI1		(1U << 0)
 | 
						|
/** Bit flag for 31.25Kbps B/W MIDI1 port in UMP Block info flags */
 | 
						|
#define SND_UMP_BLOCK_IS_LOWSPEED	(1U << 1)
 | 
						|
 | 
						|
/** UMP block user-interface hint */
 | 
						|
enum _snd_ump_block_ui_hint {
 | 
						|
	/** Unknown or undeclared */
 | 
						|
	SND_UMP_BLOCK_UI_HINT_UNKNOWN	=	0x00,
 | 
						|
	/** Primarily a receiver or a destination for MIDI messages */
 | 
						|
	SND_UMP_BLOCK_UI_HINT_RECEIVER =	0x01,
 | 
						|
	/** Primarily a sender or a source of MIDI messages */
 | 
						|
	SND_UMP_BLOCK_UI_HINT_SENDER =		0x02,
 | 
						|
	/** Both a sender and receiver of MIDI messages */
 | 
						|
	SND_UMP_BLOCK_UI_HINT_BOTH =		0x03,
 | 
						|
};
 | 
						|
 | 
						|
/** Default MIDI CI version passed to UMP Block info */
 | 
						|
#define SND_UMP_BLOCK_INFO_DEFAULT_MIDI_CI_VERSION	0x01
 | 
						|
 | 
						|
size_t snd_ump_block_info_sizeof(void);
 | 
						|
/** \hideinitializer
 | 
						|
 * \brief allocate an invalid #snd_ump_block_info_t using standard alloca
 | 
						|
 * \param ptr returned pointer
 | 
						|
 */
 | 
						|
#define snd_ump_block_info_alloca(ptr) __snd_alloca(ptr, snd_ump_block_info)
 | 
						|
int snd_ump_block_info_malloc(snd_ump_block_info_t **info);
 | 
						|
void snd_ump_block_info_free(snd_ump_block_info_t *info);
 | 
						|
void snd_ump_block_info_clear(snd_ump_block_info_t *info);
 | 
						|
void snd_ump_block_info_copy(snd_ump_block_info_t *dst, const snd_ump_block_info_t *src);
 | 
						|
int snd_ump_block_info_get_card(const snd_ump_block_info_t *info);
 | 
						|
int snd_ump_block_info_get_device(const snd_ump_block_info_t *info);
 | 
						|
unsigned int snd_ump_block_info_get_block_id(const snd_ump_block_info_t *info);
 | 
						|
unsigned int snd_ump_block_info_get_active(const snd_ump_block_info_t *info);
 | 
						|
unsigned int snd_ump_block_info_get_flags(const snd_ump_block_info_t *info);
 | 
						|
unsigned int snd_ump_block_info_get_direction(const snd_ump_block_info_t *info);
 | 
						|
unsigned int snd_ump_block_info_get_first_group(const snd_ump_block_info_t *info);
 | 
						|
unsigned int snd_ump_block_info_get_num_groups(const snd_ump_block_info_t *info);
 | 
						|
unsigned int snd_ump_block_info_get_midi_ci_version(const snd_ump_block_info_t *info);
 | 
						|
unsigned int snd_ump_block_info_get_sysex8_streams(const snd_ump_block_info_t *info);
 | 
						|
unsigned int snd_ump_block_info_get_ui_hint(const snd_ump_block_info_t *info);
 | 
						|
const char *snd_ump_block_info_get_name(const snd_ump_block_info_t *info);
 | 
						|
int snd_ump_block_info(snd_ump_t *ump, snd_ump_block_info_t *info);
 | 
						|
 | 
						|
void snd_ump_block_info_set_card(snd_ump_block_info_t *info, unsigned int card);
 | 
						|
void snd_ump_block_info_set_device(snd_ump_block_info_t *info, unsigned int device);
 | 
						|
void snd_ump_block_info_set_block_id(snd_ump_block_info_t *info, unsigned int id);
 | 
						|
void snd_ump_block_info_set_active(snd_ump_block_info_t *info, unsigned int active);
 | 
						|
void snd_ump_block_info_set_flags(snd_ump_block_info_t *info, unsigned int flags);
 | 
						|
void snd_ump_block_info_set_direction(snd_ump_block_info_t *info, unsigned int direction);
 | 
						|
void snd_ump_block_info_set_first_group(snd_ump_block_info_t *info, unsigned int first_group);
 | 
						|
void snd_ump_block_info_set_num_groups(snd_ump_block_info_t *info, unsigned int num_groups);
 | 
						|
void snd_ump_block_info_set_midi_ci_version(snd_ump_block_info_t *info, unsigned int version);
 | 
						|
void snd_ump_block_info_set_sysex8_streams(snd_ump_block_info_t *info, unsigned int streams);
 | 
						|
void snd_ump_block_info_set_ui_hint(snd_ump_block_info_t *info, unsigned int hint);
 | 
						|
void snd_ump_block_info_set_name(snd_ump_block_info_t *info, const char *name);
 | 
						|
 | 
						|
/** \} */
 | 
						|
 | 
						|
#ifdef __cplusplus
 | 
						|
}
 | 
						|
#endif
 | 
						|
 | 
						|
#endif /* __ALSA_UMP_H */
 |