X-Git-Url: https://git.cweiske.de/enigma2.git/blobdiff_plain/9412183a3c484b906775b2e117b6ee33c66083f6..a3ccac772dd40db6e4878f1a818dfb346ac27341:/lib/dvb/demux.cpp 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);