From patchwork Fri Jan 16 11:32:16 2009 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Mikko Tuumanen X-Patchwork-Id: 12697 Received: from smtp-out-01.utu.fi ([130.232.202.171]) by www.linuxtv.org with esmtp (Exim 4.63) (envelope-from ) id 1LNmwV-0002HD-9F for vdr@linuxtv.org; Fri, 16 Jan 2009 12:32:52 +0100 Received: from [130.232.103.12] (crc11-ett.utu.fi [130.232.103.12]) by smtp01.mess.utu.fi (Sun Java System Messaging Server 6.2-4.03 (built Sep 22 2005)) with ESMTPS id <0KDK00HD3APTXF30@smtp01.mess.utu.fi> for vdr@linuxtv.org; Fri, 16 Jan 2009 13:32:17 +0200 (EET) Date: Fri, 16 Jan 2009 13:32:16 +0200 From: Mikko Tuumanen To: vdr@linuxtv.org Message-id: <1232105536.11211.45.camel@crc11-ett.utu.fi> MIME-version: 1.0 X-Mailer: Evolution 2.22.3.1 Content-type: text/plain Content-transfer-encoding: 7BIT X-LSpam-Score: -6.6 (------) X-LSpam-Report: No, score=-6.6 required=5.0 tests=BAYES_00=-2.599, RCVD_IN_DNSWL_MED=-4 autolearn=ham Subject: [vdr] 1.7.3 X-BeenThere: vdr@linuxtv.org X-Mailman-Version: 2.1.9 Precedence: list Reply-To: VDR Mailing List List-Id: VDR Mailing List List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 16 Jan 2009 11:32:52 -0000 Status: O X-Status: X-Keywords: X-UID: 19221 Hello. I've tried to play the new ts recordings with vlc and it seems that there is a typo in remux.c. Good news is that vlc does show dvb subtitles from the ts recordings. BTW, here is a quick and ugly hack to get streamdev to compile with 1.7.3. http://users.utu.fi/mijutu/digitv/vdr/streamdev-pes_commented_out_for_vdr-1.7.3.diff This is not worth merging anywhere, but works if you want to try to record with 1.7.3 in a computer without actual dvb adapters. --- remux.c.orig 2009-01-16 12:22:43.000000000 +0200 +++ remux.c 2009-01-16 12:23:39.000000000 +0200 @@ -320,7 +320,7 @@ uchar *cPatPmtGenerator::GetPmt(int &Index) { if (Index < numPmtPackets) { - IncCounter(patCounter, pmt[Index]); + IncCounter(pmtCounter, pmt[Index]); return pmt[Index++]; } return NULL;