netchild    2006-05-27 16:32:05 UTC

  FreeBSD src repository

  Modified files:
    sys/modules/sound/driver/cmi Makefile 
    sys/modules/sound/driver/emu10k1 Makefile 
    sys/modules/sound/sound Makefile 
    sys/conf             files kmod.mk 
  Added files:
    sys/dev/sound/midi   midi.c midi.h midiq.h mpu401.c mpu401.h 
                         mpu_if.m mpufoi_if.m sequencer.c 
                         sequencer.h synth_if.m 
  Log:
  Commit the new (old) midi framework. It's based in parts on the NetBSD code,
  but large parts are rewritten by matk and tanimura.
  
  This is old code, it's not maintained since 2003. We also don't have a
  maintainer for this! Yuriy Tsibizov took it and uses it in his emu10kx
  driver. Since the emu10kx driver will enter the tree "soon" (some bugs
  have to be fixed after Yuriy return from his holidays), I add it here
  already.
  
  This also contains some changes to emu10k1 and cmi, so if you're lucky,
  you can now make some kind of use of midi with those soundcards.
  
  To all those poor souls which don't have such a card: feel free to send
  patches, we don't have a maintainer for this.
  
  To those which miss a specific feature in the midi code: feel free to
  submit patches, we don't have a maintainer for this.
  
  Oh, did I already told that it would be nice if someone would take care
  of it? Maintainer with midi equipment wanted! :-)
  
  If you get LOR's, submit a PR and notify multimedia@ please. If you get
  panics, submit a PR with a backtrace (compile the sound system into your
  kernel instead of using modules in this case) and notify multimedia@
  please.
  
  Written by:     matk, tanimura
  Submitted by:   "Yuriy Tsibizov" <[EMAIL PROTECTED]>
  Based upon:     code from NetBSD
  
  Revision  Changes    Path
  1.1119    +6 -0      src/sys/conf/files
  1.208     +3 -2      src/sys/conf/kmod.mk
  1.16      +1509 -0   src/sys/dev/sound/midi/midi.c (new)
  1.14      +55 -0     src/sys/dev/sound/midi/midi.h (new)
  1.1       +104 -0    src/sys/dev/sound/midi/midiq.h (new)
  1.1       +284 -0    src/sys/dev/sound/midi/mpu401.c (new)
  1.1       +37 -0     src/sys/dev/sound/midi/mpu401.h (new)
  1.1       +72 -0     src/sys/dev/sound/midi/mpu_if.m (new)
  1.1       +48 -0     src/sys/dev/sound/midi/mpufoi_if.m (new)
  1.18      +2042 -0   src/sys/dev/sound/midi/sequencer.c (new)
  1.7       +85 -0     src/sys/dev/sound/midi/sequencer.h (new)
  1.1       +311 -0    src/sys/dev/sound/midi/synth_if.m (new)
  1.4       +1 -0      src/sys/modules/sound/driver/cmi/Makefile
  1.5       +1 -0      src/sys/modules/sound/driver/emu10k1/Makefile
  1.18      +4 -0      src/sys/modules/sound/sound/Makefile
_______________________________________________
[email protected] mailing list
http://lists.freebsd.org/mailman/listinfo/cvs-all
To unsubscribe, send any mail to "[EMAIL PROTECTED]"

Reply via email to