pkgsrc/graphics/fxtv/patches/patch-ac
tron b7c4b4c97c Update "fxtv" package to version 1.03. Changes since version 1.02:
- When MPEG-encoding audio, force 16-bit signed intermediate AIFFs --
  PCM driver doesn't support this format for some cards like AWE32
  (Andre Albsmeier <andre.albsmeier@mchp.siemens.de>)
- Added METEOR_INPUT_DEV3 support (GUI & Fxtv.defaultInput = "dev3")
- Flip channel (to last channel set) feature with TVFlipStation() X action
  routine (Steve Reid <sreid@sea-to-sky.net>)
- Add SOUND_MIXER_VIDEO audio input (Mike Myer)
- Mouse include patch (Anonymous)
- Makefile update for LOCALBASE (Alexander Langer <alex@big.endian.de>)
- NetBSD updates (Thomas Klausner <wiz@danbala.ifoer.tuwien.ac.at>)
  ftp://ftp.netbsd.org/pub/NetBSD/packages/pkgsrc/graphics/fxtv/README.html
- Added 'line1', 'line2', 'line3' as valid mixerChannel values
- Uncomment all remote code for NetBSD folks
- Remove double-link of libvideo.a from Makefile
- Support for france channelset (Daniel Dagneaux <dagneaux@lure.u-psud.fr>)
- Changed -aspectlock to -noaspectlock
- Fix -default csvideo not working (greedy strstr matches wrong input)
- Remove stray printf in YUV capture
- Fixes for capturing when path doesn't contain a dot, and
  pcm driver sound format limitation work-around
  (Andre Albsmeier <andre.albsmeier@mchp.siemens.de>)
- OpenBSD changes from vedge <vedge@all.hail-eris.com> and
  Matthew McNaughton <mcnaught@cs.ualberta.ca>
2001-02-13 21:45:06 +00:00

16 lines
446 B
Text

$NetBSD: patch-ac,v 1.2 2001/02/13 21:45:07 tron Exp $
--- tvaudio.c.orig Mon Feb 12 15:56:29 2001
+++ tvaudio.c Tue Feb 13 22:39:48 2001
@@ -107,7 +107,11 @@
#ifdef SOUND_MIXER_VIDEO
else if ( STREQ( buf, "VIDEO" ) ) {
Mixer_dev_id = SOUND_MIXER_VIDEO;
+#ifdef __NetBSD__
+ Mixer_dev_mask = 1 << SOUND_MIXER_VIDEO;
+#else
Mixer_dev_mask = SOUND_MASK_VIDEO;
+#endif
Mixer_dev_name = "VIDEO";
}
#endif