diff options
author | lofi <lofi@FreeBSD.org> | 2004-06-19 03:02:00 +0800 |
---|---|---|
committer | lofi <lofi@FreeBSD.org> | 2004-06-19 03:02:00 +0800 |
commit | 3c0ffa315b6bb5fc5ec7070be4157840e2e58f3f (patch) | |
tree | 730054e50c4578bb640e0cd7611654d2504e3fd1 /multimedia | |
parent | 6d7c9d87ae384627f67936d5e6538dc960049769 (diff) | |
download | freebsd-ports-gnome-3c0ffa315b6bb5fc5ec7070be4157840e2e58f3f.tar.gz freebsd-ports-gnome-3c0ffa315b6bb5fc5ec7070be4157840e2e58f3f.tar.zst freebsd-ports-gnome-3c0ffa315b6bb5fc5ec7070be4157840e2e58f3f.zip |
Add a patch that fixes a patch that used to be in the previous version
of the port and which has been bogusly merged into the upstream sources
(but has been corrected now, the next release will be fine, hopefully).
This will fix audioid with tv://
Diffstat (limited to 'multimedia')
-rw-r--r-- | multimedia/mplayer/files/patch-libmpdemux-tvi_bsdbt848 | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/multimedia/mplayer/files/patch-libmpdemux-tvi_bsdbt848 b/multimedia/mplayer/files/patch-libmpdemux-tvi_bsdbt848 new file mode 100644 index 000000000000..b135b49596bc --- /dev/null +++ b/multimedia/mplayer/files/patch-libmpdemux-tvi_bsdbt848 @@ -0,0 +1,18 @@ +Index: libmpdemux/tvi_bsdbt848.c +=================================================================== +RCS file: /cvsroot/mplayer/main/libmpdemux/tvi_bsdbt848.c,v +retrieving revision 1.13 +diff -u -r1.13 tvi_bsdbt848.c +--- libmpdemux/tvi_bsdbt848.c 6 Apr 2004 12:23:09 -0000 1.13 ++++ libmpdemux/tvi_bsdbt848.c 18 Jun 2004 02:28:40 -0000 +@@ -366,8 +366,8 @@ + } + + #ifdef BT848_SAUDIO +- if((priv->tunerready == TRUE) && +- ioctl(priv->btfd, BT848_SAUDIO, &tv_param_audio_id) < 0) ++ if(priv->tunerready == TRUE && ++ ioctl(priv->tunerfd, BT848_SAUDIO, &tv_param_audio_id) < 0) + { + perror("audioid:ioctl"); + } |