From patchwork Thu Sep 15 18:54:26 2005 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Deti Fliegl X-Patchwork-Id: 12026 Received: from gw.baycom.de ([195.234.128.135] helo=mail.baycom.de) by www.linuxtv.org with esmtp (Exim 4.34) id 1EFysY-0007Zh-Mg for vdr@linuxtv.org; Thu, 15 Sep 2005 20:54:38 +0200 Received: from localhost (unknown [127.0.0.1]) by mail.baycom.de (Postfix) with ESMTP id 61450225143; Thu, 15 Sep 2005 18:54:36 +0000 (UTC) Received: from mail.baycom.de ([127.0.0.1]) by localhost (fs [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 16431-07; Thu, 15 Sep 2005 20:54:30 +0200 (CEST) Received: from [IPv6:2001:6f8:136b:4:d153:3406:3efc:4f32] (unknown [IPv6:2001:6f8:136b:4:d153:3406:3efc:4f32]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mail.baycom.de (Postfix) with ESMTP id 10C9B225142; Thu, 15 Sep 2005 20:54:29 +0200 (CEST) Message-ID: <4329C362.7000609@fliegl.de> Date: Thu, 15 Sep 2005 20:54:26 +0200 From: Deti Fliegl User-Agent: Mozilla Thunderbird 1.0.6 (Windows/20050716) X-Accept-Language: en-us, en MIME-Version: 1.0 To: vdr@linuxtv.org X-Virus-Scanned: amavisd-new at baycom.de Cc: sascha@akv-soft.de Subject: [vdr] fix for streamdev (CVS-HEAD) and vdr-1.3.32 X-BeenThere: vdr@linuxtv.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Klaus Schmidinger's VDR List-Id: Klaus Schmidinger's VDR List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 15 Sep 2005 18:54:38 -0000 Status: O X-Status: X-Keywords: X-UID: 5001 Hi, There is a problem compiling streamdev from vdr-1.3.32 This patch fixes the missing include statements. Deti diff -ur client/filter.c client/filter.c --- client/filter.c 2005-02-08 14:59:16.000000000 +0100 +++ client/filter.c 2005-09-15 20:39:41.542144480 +0200 @@ -8,6 +8,7 @@ #include "common.h" #include +#include #if VDRVERSNUM >= 10300 --- remux/ts2es.h 2005-02-11 17:44:14.000000000 +0100 +++ remux/ts2es.h 2005-09-15 20:47:06.592882276 +0200 @@ -3,6 +3,7 @@ #include "remux/tsremux.h" #include +#include class cTS2ES; class cRingBufferLinear; diff -ur remux/ts2ps.c remux/ts2ps.c --- remux/ts2ps.c 2005-02-11 17:44:15.000000000 +0100 +++ remux/ts2ps.c 2005-09-15 20:43:04.755595829 +0200 @@ -1,6 +1,7 @@ #include "remux/ts2ps.h" #include "server/streamer.h" #include +#include class cTS2PS { friend void PutPES(uint8_t *Buffer, int Size, void *Data);