Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
L
linux
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
linux
Commits
3b08de9b
Commit
3b08de9b
authored
Jan 08, 2004
by
Jaroslav Kysela
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ALSA CVS update - Takashi Iwai <tiwai@suse.de>
ALSA sequencer - new e-mail address of Frank van de Pol.
parent
4f9a48e3
Changes
22
Hide whitespace changes
Inline
Side-by-side
Showing
22 changed files
with
24 additions
and
24 deletions
+24
-24
include/sound/asequencer.h
include/sound/asequencer.h
+1
-1
include/sound/seq_kernel.h
include/sound/seq_kernel.h
+1
-1
sound/core/seq/seq.c
sound/core/seq/seq.c
+2
-2
sound/core/seq/seq_clientmgr.c
sound/core/seq/seq_clientmgr.c
+1
-1
sound/core/seq/seq_clientmgr.h
sound/core/seq/seq_clientmgr.h
+1
-1
sound/core/seq/seq_fifo.c
sound/core/seq/seq_fifo.c
+1
-1
sound/core/seq/seq_fifo.h
sound/core/seq/seq_fifo.h
+1
-1
sound/core/seq/seq_info.c
sound/core/seq/seq_info.c
+1
-1
sound/core/seq/seq_info.h
sound/core/seq/seq_info.h
+1
-1
sound/core/seq/seq_memory.c
sound/core/seq/seq_memory.c
+1
-1
sound/core/seq/seq_memory.h
sound/core/seq/seq_memory.h
+1
-1
sound/core/seq/seq_midi.c
sound/core/seq/seq_midi.c
+2
-2
sound/core/seq/seq_ports.c
sound/core/seq/seq_ports.c
+1
-1
sound/core/seq/seq_ports.h
sound/core/seq/seq_ports.h
+1
-1
sound/core/seq/seq_prioq.c
sound/core/seq/seq_prioq.c
+1
-1
sound/core/seq/seq_prioq.h
sound/core/seq/seq_prioq.h
+1
-1
sound/core/seq/seq_queue.c
sound/core/seq/seq_queue.c
+1
-1
sound/core/seq/seq_queue.h
sound/core/seq/seq_queue.h
+1
-1
sound/core/seq/seq_system.c
sound/core/seq/seq_system.c
+1
-1
sound/core/seq/seq_system.h
sound/core/seq/seq_system.h
+1
-1
sound/core/seq/seq_timer.c
sound/core/seq/seq_timer.c
+1
-1
sound/core/seq/seq_timer.h
sound/core/seq/seq_timer.h
+1
-1
No files found.
include/sound/asequencer.h
View file @
3b08de9b
/*
* Main header file for the ALSA sequencer
* Copyright (c) 1998-1999 by Frank van de Pol <fvdpol@
home
.nl>
* Copyright (c) 1998-1999 by Frank van de Pol <fvdpol@
coil.demon
.nl>
* (c) 1998-1999 by Jaroslav Kysela <perex@suse.cz>
*
*
...
...
include/sound/seq_kernel.h
View file @
3b08de9b
...
...
@@ -3,7 +3,7 @@
/*
* Main kernel header file for the ALSA sequencer
* Copyright (c) 1998 by Frank van de Pol <fvdpol@
home
.nl>
* Copyright (c) 1998 by Frank van de Pol <fvdpol@
coil.demon
.nl>
*
*
* This program is free software; you can redistribute it and/or modify
...
...
sound/core/seq/seq.c
View file @
3b08de9b
/*
* ALSA sequencer main module
* Copyright (c) 1998-1999 by Frank van de Pol <fvdpol@
home
.nl>
* Copyright (c) 1998-1999 by Frank van de Pol <fvdpol@
coil.demon
.nl>
*
*
* This program is free software; you can redistribute it and/or modify
...
...
@@ -42,7 +42,7 @@ int seq_default_timer_device = SNDRV_TIMER_GLOBAL_SYSTEM;
int
seq_default_timer_subdevice
=
0
;
int
seq_default_timer_resolution
=
0
;
/* Hz */
MODULE_AUTHOR
(
"Frank van de Pol <fvdpol@
home
.nl>, Jaroslav Kysela <perex@suse.cz>"
);
MODULE_AUTHOR
(
"Frank van de Pol <fvdpol@
coil.demon
.nl>, Jaroslav Kysela <perex@suse.cz>"
);
MODULE_DESCRIPTION
(
"Advanced Linux Sound Architecture sequencer."
);
MODULE_LICENSE
(
"GPL"
);
MODULE_CLASSES
(
"{sound}"
);
...
...
sound/core/seq/seq_clientmgr.c
View file @
3b08de9b
/*
* ALSA sequencer Client Manager
* Copyright (c) 1998-2001 by Frank van de Pol <fvdpol@
home
.nl>
* Copyright (c) 1998-2001 by Frank van de Pol <fvdpol@
coil.demon
.nl>
* Jaroslav Kysela <perex@suse.cz>
* Takashi Iwai <tiwai@suse.de>
*
...
...
sound/core/seq/seq_clientmgr.h
View file @
3b08de9b
/*
* ALSA sequencer Client Manager
* Copyright (c) 1998-1999 by Frank van de Pol <fvdpol@
home
.nl>
* Copyright (c) 1998-1999 by Frank van de Pol <fvdpol@
coil.demon
.nl>
*
*
* This program is free software; you can redistribute it and/or modify
...
...
sound/core/seq/seq_fifo.c
View file @
3b08de9b
/*
* ALSA sequencer FIFO
* Copyright (c) 1998 by Frank van de Pol <fvdpol@
home
.nl>
* Copyright (c) 1998 by Frank van de Pol <fvdpol@
coil.demon
.nl>
*
*
* This program is free software; you can redistribute it and/or modify
...
...
sound/core/seq/seq_fifo.h
View file @
3b08de9b
/*
* ALSA sequencer FIFO
* Copyright (c) 1998 by Frank van de Pol <fvdpol@
home
.nl>
* Copyright (c) 1998 by Frank van de Pol <fvdpol@
coil.demon
.nl>
*
*
* This program is free software; you can redistribute it and/or modify
...
...
sound/core/seq/seq_info.c
View file @
3b08de9b
/*
* ALSA sequencer /proc interface
* Copyright (c) 1998 by Frank van de Pol <fvdpol@
home
.nl>
* Copyright (c) 1998 by Frank van de Pol <fvdpol@
coil.demon
.nl>
*
*
* This program is free software; you can redistribute it and/or modify
...
...
sound/core/seq/seq_info.h
View file @
3b08de9b
/*
* ALSA sequencer /proc info
* Copyright (c) 1998 by Frank van de Pol <fvdpol@
home
.nl>
* Copyright (c) 1998 by Frank van de Pol <fvdpol@
coil.demon
.nl>
*
*
* This program is free software; you can redistribute it and/or modify
...
...
sound/core/seq/seq_memory.c
View file @
3b08de9b
/*
* ALSA sequencer Memory Manager
* Copyright (c) 1998 by Frank van de Pol <fvdpol@
home
.nl>
* Copyright (c) 1998 by Frank van de Pol <fvdpol@
coil.demon
.nl>
* Jaroslav Kysela <perex@suse.cz>
* 2000 by Takashi Iwai <tiwai@suse.de>
*
...
...
sound/core/seq/seq_memory.h
View file @
3b08de9b
/*
* ALSA sequencer Memory Manager
* Copyright (c) 1998 by Frank van de Pol <fvdpol@
home
.nl>
* Copyright (c) 1998 by Frank van de Pol <fvdpol@
coil.demon
.nl>
*
*
* This program is free software; you can redistribute it and/or modify
...
...
sound/core/seq/seq_midi.c
View file @
3b08de9b
/*
* Generic MIDI synth driver for ALSA sequencer
* Copyright (c) 1998 by Frank van de Pol <fvdpol@
home
.nl>
* Copyright (c) 1998 by Frank van de Pol <fvdpol@
coil.demon
.nl>
* Jaroslav Kysela <perex@suse.cz>
*
* This program is free software; you can redistribute it and/or modify
...
...
@@ -39,7 +39,7 @@ Possible options for midisynth module:
#include <sound/seq_midi_event.h>
#include <sound/initval.h>
MODULE_AUTHOR
(
"Frank van de Pol <fvdpol@
home
.nl>, Jaroslav Kysela <perex@suse.cz>"
);
MODULE_AUTHOR
(
"Frank van de Pol <fvdpol@
coil.demon
.nl>, Jaroslav Kysela <perex@suse.cz>"
);
MODULE_DESCRIPTION
(
"Advanced Linux Sound Architecture sequencer MIDI synth."
);
MODULE_LICENSE
(
"GPL"
);
MODULE_CLASSES
(
"{sound}"
);
...
...
sound/core/seq/seq_ports.c
View file @
3b08de9b
/*
* ALSA sequencer Ports
* Copyright (c) 1998 by Frank van de Pol <fvdpol@
home
.nl>
* Copyright (c) 1998 by Frank van de Pol <fvdpol@
coil.demon
.nl>
* Jaroslav Kysela <perex@suse.cz>
*
*
...
...
sound/core/seq/seq_ports.h
View file @
3b08de9b
/*
* ALSA sequencer Ports
* Copyright (c) 1998 by Frank van de Pol <fvdpol@
home
.nl>
* Copyright (c) 1998 by Frank van de Pol <fvdpol@
coil.demon
.nl>
*
*
* This program is free software; you can redistribute it and/or modify
...
...
sound/core/seq/seq_prioq.c
View file @
3b08de9b
/*
* ALSA sequencer Priority Queue
* Copyright (c) 1998-1999 by Frank van de Pol <fvdpol@
home
.nl>
* Copyright (c) 1998-1999 by Frank van de Pol <fvdpol@
coil.demon
.nl>
*
*
* This program is free software; you can redistribute it and/or modify
...
...
sound/core/seq/seq_prioq.h
View file @
3b08de9b
/*
* ALSA sequencer Priority Queue
* Copyright (c) 1998 by Frank van de Pol <fvdpol@
home
.nl>
* Copyright (c) 1998 by Frank van de Pol <fvdpol@
coil.demon
.nl>
*
*
* This program is free software; you can redistribute it and/or modify
...
...
sound/core/seq/seq_queue.c
View file @
3b08de9b
/*
* ALSA sequencer Timing queue handling
* Copyright (c) 1998-1999 by Frank van de Pol <fvdpol@
home
.nl>
* Copyright (c) 1998-1999 by Frank van de Pol <fvdpol@
coil.demon
.nl>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
...
...
sound/core/seq/seq_queue.h
View file @
3b08de9b
/*
* ALSA sequencer Queue handling
* Copyright (c) 1998-1999 by Frank van de Pol <fvdpol@
home
.nl>
* Copyright (c) 1998-1999 by Frank van de Pol <fvdpol@
coil.demon
.nl>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
...
...
sound/core/seq/seq_system.c
View file @
3b08de9b
/*
* ALSA sequencer System services Client
* Copyright (c) 1998-1999 by Frank van de Pol <fvdpol@
home
.nl>
* Copyright (c) 1998-1999 by Frank van de Pol <fvdpol@
coil.demon
.nl>
*
*
* This program is free software; you can redistribute it and/or modify
...
...
sound/core/seq/seq_system.h
View file @
3b08de9b
/*
* ALSA sequencer System Client
* Copyright (c) 1998 by Frank van de Pol <fvdpol@
home
.nl>
* Copyright (c) 1998 by Frank van de Pol <fvdpol@
coil.demon
.nl>
*
*
* This program is free software; you can redistribute it and/or modify
...
...
sound/core/seq/seq_timer.c
View file @
3b08de9b
/*
* ALSA sequencer Timer
* Copyright (c) 1998-1999 by Frank van de Pol <fvdpol@
home
.nl>
* Copyright (c) 1998-1999 by Frank van de Pol <fvdpol@
coil.demon
.nl>
* Jaroslav Kysela <perex@suse.cz>
*
*
...
...
sound/core/seq/seq_timer.h
View file @
3b08de9b
/*
* ALSA sequencer Timer
* Copyright (c) 1998-1999 by Frank van de Pol <fvdpol@
home
.nl>
* Copyright (c) 1998-1999 by Frank van de Pol <fvdpol@
coil.demon
.nl>
*
*
* This program is free software; you can redistribute it and/or modify
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment