Your message dated Sun, 10 May 2020 17:49:28 +0000
with message-id <[email protected]>
and subject line Bug#604103: fixed in dvbstream 0.6+cvs20090621-3
has caused the Debian Bug report #604103,
regarding dvbstream: Add support for up to eight cards
to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact [email protected]
immediately.)


-- 
604103: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=604103
Debian Bug Tracking System
Contact [email protected] with problems
--- Begin Message ---
Package: dvbstream
Version: 0.6+cvs20090621-1
Severity: normal
Tags: patch


dvbstream currently cannot address cards above the 4th (0-3). The enclosed 
patch adds support for 
addressing up to eight cards.

The patch is an updated version of the patch submitted at
https://sourceforge.net/tracker/?func=detail&aid=2611204&group_id=50669&atid=460567


*** dvbstream-8-card-0.7
--- dvbstream.c.orig    2010-11-19 21:44:28.000000000 -0800
+++ dvbstream.c 2010-11-19 22:09:46.000000000 -0800
@@ -78,9 +78,21 @@
 unsigned int LOF1=(9750*1000UL);
 unsigned int LOF2=(10600*1000UL);
 
-char* 
frontenddev[4]={"/dev/dvb/adapter0/frontend0","/dev/dvb/adapter1/frontend0","/dev/dvb/adapter2/frontend0","/dev/dvb/adapter3/frontend0"};
-char* 
dvrdev[4]={"/dev/dvb/adapter0/dvr0","/dev/dvb/adapter1/dvr0","/dev/dvb/adapter2/dvr0","/dev/dvb/adapter3/dvr0"};
-char* 
demuxdev[4]={"/dev/dvb/adapter0/demux0","/dev/dvb/adapter1/demux0","/dev/dvb/adapter2/demux0","/dev/dvb/adapter3/demux0"};
+char* frontenddev[8]={
+    "/dev/dvb/adapter0/frontend0","/dev/dvb/adapter1/frontend0",
+    "/dev/dvb/adapter2/frontend0","/dev/dvb/adapter3/frontend0",
+    "/dev/dvb/adapter4/frontend0","/dev/dvb/adapter5/frontend0",
+    "/dev/dvb/adapter6/frontend0","/dev/dvb/adapter7/frontend0"};
+char* dvrdev[8]={
+    "/dev/dvb/adapter0/dvr0","/dev/dvb/adapter1/dvr0",
+    "/dev/dvb/adapter2/dvr0","/dev/dvb/adapter3/dvr0",
+    "/dev/dvb/adapter4/dvr0","/dev/dvb/adapter5/dvr0",
+    "/dev/dvb/adapter6/dvr0","/dev/dvb/adapter7/dvr0"};
+char* demuxdev[8]={
+    "/dev/dvb/adapter0/demux0","/dev/dvb/adapter1/demux0",
+    "/dev/dvb/adapter2/demux0","/dev/dvb/adapter3/demux0",
+    "/dev/dvb/adapter4/demux0","/dev/dvb/adapter5/demux0",
+    "/dev/dvb/adapter6/demux0","/dev/dvb/adapter7/demux0"};
 
 int card=0;
 long now;
@@ -902,9 +914,9 @@
   pids_map = NULL;
   map_cnt = 0;
 
-  fprintf(stderr,"dvbstream v0.7 - (C) Dave Chapman 2001-2004\n");
+  fprintf(stderr,"dvbstream v0.7.01 - (C) Dave Chapman 2001-2004\n");
   fprintf(stderr,"Released under the GPL.\n");
-  fprintf(stderr,"Latest version available from http://www.linuxstb.org/\n";);
+  fprintf(stderr,"Latest version available from 
http://dvbtools.sourceforge.net/\n";);
 
   /* Initialise PID map */
   for (i=0;i<8192;i++) {
@@ -953,7 +965,7 @@
     fprintf(stderr,"-s N        Symbol rate (DVB-S or DVB-C)\n");
 
     fprintf(stderr,"\nAdvanced tuning options:\n\n");
-    fprintf(stderr,"-c [0-3]    Use DVB card #[0-3]\n");
+    fprintf(stderr,"-c [0-7]    Use DVB card #[0-7]\n");
     fprintf(stderr,"-D [0-4AB]  DiSEqC command (0=none)\n\n");
     fprintf(stderr,"-I [0|1|2]  0=Spectrum Inversion off, 1=Spectrum Inversion 
on, 2=auto\n");
     fprintf(stderr,"-qam X      DVB-T/C and ATSC modulation - 16%s, 32%s, 
64%s, 128%s or 256%s\n",(CONSTELLATION_DEFAULT==QAM_16 ? " (default)" : 
""),(CONSTELLATION_DEFAULT==QAM_32 ? " (default)" : 
""),(CONSTELLATION_DEFAULT==QAM_64 ? " (default)" : 
""),(CONSTELLATION_DEFAULT==QAM_128 ? " (default)" : 
""),(CONSTELLATION_DEFAULT==QAM_256 ? " (default)" : ""));
@@ -1123,8 +1135,8 @@
       } else if (strcmp(argv[i],"-c")==0) {
         i++;
         card=atoi(argv[i]);
-        if ((card < 0) || (card > 3)) {
-          fprintf(stderr,"ERROR: card parameter must be between 0 and 4\n");
+        if ((card < 0) || (card > 7)) {
+          fprintf(stderr,"ERROR: card parameter must be between 0 and 7\n");
         }
       } else if (strcmp(argv[i],"-v")==0) {
         pestype=DMX_PES_VIDEO;


-- System Information:
Debian Release: squeeze/sid
  APT prefers testing
  APT policy: (990, 'testing'), (500, 'unstable'), (1, 'experimental')
Architecture: amd64 (x86_64)

Kernel: Linux 2.6.32.5 (SMP w/8 CPU cores)
Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=ISO-8859-1) (ignored: 
LC_ALL set to en_US)
Shell: /bin/sh linked to /bin/dash

Versions of packages dvbstream depends on:
ii  libc6                         2.11.2-7   Embedded GNU C Library: Shared lib

dvbstream recommends no packages.

Versions of packages dvbstream suggests:
ii  dvbtune                       0.5-12     Simple tuning application for DVB 
pn  mpg123                        <none>     (no description available)

-- no debconf information



--- End Message ---
--- Begin Message ---
Source: dvbstream
Source-Version: 0.6+cvs20090621-3
Done: Thorsten Alteholz <[email protected]>

We believe that the bug you reported is fixed in the latest version of
dvbstream, which is due to be installed in the Debian FTP archive.

A summary of the changes between this version and the previous one is
attached.

Thank you for reporting the bug, which will now be closed.  If you
have further comments please address them to [email protected],
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Thorsten Alteholz <[email protected]> (supplier of updated dvbstream package)

(This message was generated automatically at their request; if you
believe that there is a problem with it please contact the archive
administrators by mailing [email protected])


-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA512

Format: 1.8
Date: Sun, 10 May 2020 19:08:24 +2000
Source: dvbstream
Architecture: source
Version: 0.6+cvs20090621-3
Distribution: unstable
Urgency: medium
Maintainer: Thorsten Alteholz <[email protected]>
Changed-By: Thorsten Alteholz <[email protected]>
Closes: 604103 959453
Changes:
 dvbstream (0.6+cvs20090621-3) unstable; urgency=medium
 .
   * debian/control: add salsa VCS URLs
   * debian/control: bump standard to 4.5.0 (no changes)
   * debian/control: use dh12
   * debian/control: remove dependency to linux-kernel-headers
                     (Closes: #959453)
   * add patch to support up to eight cards (Closes: #604103)
     (Thanks to David Liontooth for the patch)
Checksums-Sha1:
 ed39aecb6514bf03c61e6c6ce79f06564adb04fe 2078 dvbstream_0.6+cvs20090621-3.dsc
 b16355db32ac63e698bcb00623e0be6961872eef 11744 
dvbstream_0.6+cvs20090621-3.debian.tar.xz
 0630cdf7a8d8ce9bcca911da8c0544fa56595a01 5885 
dvbstream_0.6+cvs20090621-3_amd64.buildinfo
Checksums-Sha256:
 76876cdaf1ffe3ea2ccf6f495bb8e2ac00602fc7e10b32aeb074f5736514de3a 2078 
dvbstream_0.6+cvs20090621-3.dsc
 96af7bfd7de5b80c3c9b449258ae97e372257f909a24f463f2533c29b0b71671 11744 
dvbstream_0.6+cvs20090621-3.debian.tar.xz
 dbeb4f9c430cf199d147b357f9548de98129533c372e39ddd854687d35309ea5 5885 
dvbstream_0.6+cvs20090621-3_amd64.buildinfo
Files:
 e11974adc7cbdada1d32cbb6b423c332 2078 video optional 
dvbstream_0.6+cvs20090621-3.dsc
 1ad11a78d73603106273617e5f949658 11744 video optional 
dvbstream_0.6+cvs20090621-3.debian.tar.xz
 afea8fd5545199832daaf0976ad426e9 5885 video optional 
dvbstream_0.6+cvs20090621-3_amd64.buildinfo

-----BEGIN PGP SIGNATURE-----

iQKnBAEBCgCRFiEEYgH7/9u94Hgi6ruWlvysDTh7WEcFAl64OrtfFIAAAAAALgAo
aXNzdWVyLWZwckBub3RhdGlvbnMub3BlbnBncC5maWZ0aGhvcnNlbWFuLm5ldDYy
MDFGQkZGREJCREUwNzgyMkVBQkI5Njk2RkNBQzBEMzg3QjU4NDcTHGRlYmlhbkBh
bHRlaG9sei5kZQAKCRCW/KwNOHtYR76JEACVeqQROHBRxc7OPicDgTEjiBa6ZP+1
cpRvqeVKEQU8cpUneeCXZGUTdstufzu1ihLroOo5fFJE+nJj4Dc12p5PTYKM9L5j
z4rzr8j/fcC4Lkcfi0WZsF/hcKnNBn3j/sPd7q+ujn/3OSRn911d+NISzkxj8bJ+
Zv9unta/qFxq2p0vqjhVqAKFQ/nF+NFxmjfapEpdq2L9wjY7kDQn9DLeIb5bxXWU
WvfvIpvCjm1OX4cM0p+vp8RTfwHRwL5kLMhEqEt3AFpp2i2Bsge62V0jKw3vTTcR
I5mBtOIO0a+0xUZjR1tw6gqsfIoYc1wvBA7XF4nitcVw1/fP1LKRNY2uFXqOP+0w
M70DHySziGsA8OBaZUpo9d01Q7tYRQViv+5uTXXh/PQMye+nbhY/HqA0bYwTaroy
0PfWsIMKbYma68AfqsZgy/YoGMAqh9DQzJJWMB32kfesMiXXs7Pgq6RcvMT31LWC
WsRHOydOENTgIELLloJ1Khh/xuNpanvCh2aD9f1XUaDVktmgMrOEN9KW8yRGd/UQ
FiX7vX0WHL2x+peIpZ6vgvmEJ+i4Tyzy4IncerE10wdBpVb/1+eVgDYzzYVL6+dF
BDfhmsDGbeGHVXXDAsOFGmyZ3xMm8mHSHIiHi4kuCzH1zelWNAnMdexcjldJwGM9
ZQy7P+x7JdeXEw==
=zzqG
-----END PGP SIGNATURE-----

--- End Message ---

Reply via email to