aboutsummaryrefslogtreecommitdiff
path: root/lib/dvb/demux.cpp
diff options
context:
space:
mode:
authorFelix Domke <tmbinc@elitedvb.net>2006-02-03 22:05:08 +0000
committerFelix Domke <tmbinc@elitedvb.net>2006-02-03 22:05:08 +0000
commit55d011a98b9217c3b2eeba0ee18790b1989e6661 (patch)
treed01b86df8a605755a6103358d6dc68218c9b84d3 /lib/dvb/demux.cpp
parent8c591aa498683aca56542d2c8ff15f26ff0bae4b (diff)
downloadenigma2-55d011a98b9217c3b2eeba0ee18790b1989e6661.tar.gz
enigma2-55d011a98b9217c3b2eeba0ee18790b1989e6661.zip
make filterRecordData argument unsigned char*
Diffstat (limited to 'lib/dvb/demux.cpp')
-rw-r--r--lib/dvb/demux.cpp4
1 files changed, 2 insertions, 2 deletions
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);