summaryrefslogtreecommitdiff
path: root/device.c
diff options
context:
space:
mode:
Diffstat (limited to 'device.c')
-rw-r--r--device.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/device.c b/device.c
index c542a896..8aa450bb 100644
--- a/device.c
+++ b/device.c
@@ -4,7 +4,7 @@
* See the main source file 'xineliboutput.c' for copyright information and
* how to reach the author.
*
- * $Id: device.c,v 1.74 2009-03-19 08:40:45 phintuka Exp $
+ * $Id: device.c,v 1.75 2009-03-19 19:42:41 phintuka Exp $
*
*/
@@ -1135,7 +1135,7 @@ int cXinelibDevice::PlayTs(const uchar *Data, int Length, bool VideoOnly)
#endif
LOGMSG("Got PAT: PMT pid = %d", m_PatPmtParser.PmtPid());
if (m_server)
- m_Server->SetHeader(Data, Length, true);
+ m_server->SetHeader(Data, Length, true);
PlayAny(Data, Length);
} else if (Pid == m_PatPmtParser.PmtPid()) {
#if VDRVERSNUM >= 10704
@@ -1146,7 +1146,7 @@ int cXinelibDevice::PlayTs(const uchar *Data, int Length, bool VideoOnly)
m_h264 = (m_PatPmtParser.Vtype() == 0x1b); /* ISO_14496_PART10_VIDEO */
LOGMSG("Got PMT packet, h264 = %d", m_h264?1:0);
if (m_server)
- m_Server->SetHeader(Data, Length);
+ m_server->SetHeader(Data, Length);
PlayAny(Data, Length);
TsBufferFlush();
}