diff options
author | phintuka <phintuka> | 2009-03-19 19:42:41 +0000 |
---|---|---|
committer | phintuka <phintuka> | 2009-03-19 19:42:41 +0000 |
commit | b6ad4c0499f910be0cffe8c787e1e1b1768af90a (patch) | |
tree | 11d35623e9ef62c7cd6a308511132d89c29634aa | |
parent | 2eb31492aee9536bc2022e10707347b8db48cffa (diff) | |
download | xineliboutput-b6ad4c0499f910be0cffe8c787e1e1b1768af90a.tar.gz xineliboutput-b6ad4c0499f910be0cffe8c787e1e1b1768af90a.tar.bz2 |
Fixed typo
-rw-r--r-- | device.c | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -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(); } |