From 55d011a98b9217c3b2eeba0ee18790b1989e6661 Mon Sep 17 00:00:00 2001 From: Felix Domke Date: Fri, 3 Feb 2006 22:05:08 +0000 Subject: [PATCH] make filterRecordData argument unsigned char* --- lib/base/filepush.cpp | 2 +- lib/base/filepush.h | 2 +- lib/dvb/demux.cpp | 4 ++-- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/lib/base/filepush.cpp b/lib/base/filepush.cpp index 3901e76c..51b26239 100644 --- a/lib/base/filepush.cpp +++ b/lib/base/filepush.cpp @@ -206,7 +206,7 @@ void eFilePushThread::recvEvent(const int &evt) m_event(evt); } -void eFilePushThread::filterRecordData(const char *data, int len) +void eFilePushThread::filterRecordData(const unsigned char *data, int len) { /* do nothing */ } diff --git a/lib/base/filepush.h b/lib/base/filepush.h index e471b296..75037f66 100644 --- a/lib/base/filepush.h +++ b/lib/base/filepush.h @@ -37,7 +37,7 @@ public: /* you can send private events if you want */ void sendEvent(int evt); protected: - virtual void filterRecordData(const char *data, int len); + virtual void filterRecordData(const unsigned char *data, int len); private: iFilePushScatterGather *m_sg; int m_stop; diff --git a/lib/dvb/demux.cpp b/lib/dvb/demux.cpp index 710323a1..73e04432 100644 --- a/lib/dvb/demux.cpp +++ b/lib/dvb/demux.cpp @@ -274,7 +274,7 @@ public: eDVBRecordFileThread(); void setTimingPID(int pid); protected: - void filterRecordData(const char *data, int len); + void filterRecordData(const unsigned char *data, int len); private: eMPEGStreamParserTS m_ts_parser; eMPEGStreamInformation m_stream_info; @@ -293,7 +293,7 @@ void eDVBRecordFileThread::setTimingPID(int pid) m_ts_parser.setPid(pid); } -void eDVBRecordFileThread::filterRecordData(const char *data, int len) +void eDVBRecordFileThread::filterRecordData(const unsigned char *data, int len) { m_ts_parser.parseData(m_current_offset, data, len); -- 2.30.2