Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-cw
Commits
1876d185
Commit
1876d185
authored
Oct 11, 2004
by
Eric Pouech
Committed by
Alexandre Julliard
Oct 11, 2004
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
- bring the multimedia doc up-to-date
- moved the TODO from the doc into the code
parent
c3cecc5d
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
36 additions
and
1 deletion
+36
-1
mcimidi.c
dlls/winmm/mciseq/mcimidi.c
+7
-0
midi.c
dlls/winmm/wineoss/midi.c
+13
-0
mixer.c
dlls/winmm/wineoss/mixer.c
+5
-1
winmm.c
dlls/winmm/winmm.c
+11
-0
multimedia.sgml
documentation/multimedia.sgml
+0
-0
No files found.
dlls/winmm/mciseq/mcimidi.c
View file @
1876d185
...
...
@@ -29,6 +29,13 @@
* 98/11 splitted in midi.c and mcimidi.c
*/
/* TODO:
* + implement it correctly
* + finish asynchronous commands (especially for reading/record)
* + better implement non waiting command (without the MCI_WAIT flag).
* + implement the recording features
*/
#include <stdlib.h>
#include <stdarg.h>
#include <stdio.h>
...
...
dlls/winmm/wineoss/midi.c
View file @
1876d185
...
...
@@ -26,6 +26,19 @@
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
/* TODO:
* + use better instrument definition for OPL/2 (midiPatch.c) or
* use existing instrument definition (from playmidi or kmid)
* with a .winerc option
* + have a look at OPL/3 ?
* + implement asynchronous playback of MidiHdr
* + implement STREAM'ed MidiHdr (question: how shall we share the
* code between the midiStream functions in MMSYSTEM/WINMM and
* the code for the low level driver)
* + use a more accurate read mechanism than the one of snooping on
* timers (like select on fd)
*/
#include "config.h"
#include <string.h>
...
...
dlls/winmm/wineoss/mixer.c
View file @
1876d185
...
...
@@ -21,6 +21,10 @@
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
/* TODO:
* + implement notification mechanism when state of mixer's controls
*/
#include "config.h"
#include <stdlib.h>
...
...
@@ -990,7 +994,7 @@ static DWORD MIX_GetLineControls(WORD wDevID, LPMIXERLINECONTROLSA lpMlc,
TRACE
(
"[%d] => [%2d]: typ=%08lx
\n
"
,
j
,
i
+
1
,
mix
->
ctrl
[
i
].
ctrl
.
dwControlType
);
lpMlc
->
pamxctrl
[
j
++
]
=
mix
->
ctrl
[
i
].
ctrl
;
}
}
}
}
}
...
...
dlls/winmm/winmm.c
View file @
1876d185
...
...
@@ -28,6 +28,17 @@
* 99/9 added support for loadable low level drivers
*/
/* TODO
* + it seems that some programs check what's installed in
* registry against the value returned by drivers. Wine is
* currently broken regarding this point.
* + check thread-safeness for MMSYSTEM and WINMM entry points
* + unicode entry points are badly supported (would require
* moving 32 bit drivers as Unicode as they are supposed to be)
* + allow joystick and timer external calls as we do for wave,
* midi, mixer and aux
*/
#include <stdio.h>
#include <stdarg.h>
#include <string.h>
...
...
documentation/multimedia.sgml
View file @
1876d185
This diff is collapsed.
Click to expand it.
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