diff options
| author | Felix Domke <tmbinc@elitedvb.net> | 2006-02-03 22:05:08 +0000 |
|---|---|---|
| committer | Felix Domke <tmbinc@elitedvb.net> | 2006-02-03 22:05:08 +0000 |
| commit | 55d011a98b9217c3b2eeba0ee18790b1989e6661 (patch) | |
| tree | d01b86df8a605755a6103358d6dc68218c9b84d3 /lib/dvb/demux.cpp | |
| parent | 8c591aa498683aca56542d2c8ff15f26ff0bae4b (diff) | |
| download | enigma2-55d011a98b9217c3b2eeba0ee18790b1989e6661.tar.gz enigma2-55d011a98b9217c3b2eeba0ee18790b1989e6661.zip | |
make filterRecordData argument unsigned char*
Diffstat (limited to 'lib/dvb/demux.cpp')
| -rw-r--r-- | lib/dvb/demux.cpp | 4 |
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); |
