mirror of
				git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
				synced 2025-11-01 09:13:37 +00:00 
			
		
		
		
	This patch enables the automatic conversion of UMP events from/to the legacy ALSA sequencer MIDI events. Also, as UMP itself has two different modes (MIDI 1.0 and MIDI 2.0), yet another converters between them are needed, too. Namely, we have conversions between the legacy and UMP like: - seq legacy event -> seq UMP MIDI 1.0 event - seq legacy event -> seq UMP MIDI 2.0 event - seq UMP MIDI 1.0 event -> seq legacy event - seq UMP MIDI 2.0 event -> seq legacy event and the conversions between UMP MIDI 1.0 and 2.0 clients like: - seq UMP MIDI 1.0 event -> seq UMP MIDI 2.0 event - seq UMP MIDI 2.0 event -> seq UMP MIDI 1.0 event The translation is per best-effort; some MIDI 2.0 specific events are ignored when translated to MIDI 1.0. Reviewed-by: Jaroslav Kysela <perex@perex.cz> Link: https://lore.kernel.org/r/20230523075358.9672-31-tiwai@suse.de Signed-off-by: Takashi Iwai <tiwai@suse.de>
		
			
				
	
	
		
			25 lines
		
	
	
	
		
			910 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
			
		
		
	
	
			25 lines
		
	
	
	
		
			910 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
# SPDX-License-Identifier: GPL-2.0
 | 
						|
#
 | 
						|
# Makefile for ALSA
 | 
						|
# Copyright (c) 1999 by Jaroslav Kysela <perex@perex.cz>
 | 
						|
#
 | 
						|
 | 
						|
snd-seq-objs := seq.o seq_lock.o seq_clientmgr.o seq_memory.o seq_queue.o \
 | 
						|
                seq_fifo.o seq_prioq.o seq_timer.o \
 | 
						|
                seq_system.o seq_ports.o
 | 
						|
snd-seq-$(CONFIG_SND_PROC_FS) += seq_info.o
 | 
						|
snd-seq-$(CONFIG_SND_SEQ_UMP) += seq_ump_convert.o
 | 
						|
snd-seq-midi-objs := seq_midi.o
 | 
						|
snd-seq-midi-emul-objs := seq_midi_emul.o
 | 
						|
snd-seq-midi-event-objs := seq_midi_event.o
 | 
						|
snd-seq-dummy-objs := seq_dummy.o
 | 
						|
snd-seq-virmidi-objs := seq_virmidi.o
 | 
						|
 | 
						|
obj-$(CONFIG_SND_SEQUENCER) += snd-seq.o
 | 
						|
obj-$(CONFIG_SND_SEQUENCER_OSS) += oss/
 | 
						|
 | 
						|
obj-$(CONFIG_SND_SEQ_DUMMY) += snd-seq-dummy.o
 | 
						|
obj-$(CONFIG_SND_SEQ_MIDI) += snd-seq-midi.o
 | 
						|
obj-$(CONFIG_SND_SEQ_MIDI_EMUL) += snd-seq-midi-emul.o
 | 
						|
obj-$(CONFIG_SND_SEQ_MIDI_EVENT) += snd-seq-midi-event.o
 | 
						|
obj-$(CONFIG_SND_SEQ_VIRMIDI) += snd-seq-virmidi.o
 |