diff options
| author | Felix Domke <tmbinc@elitedvb.net> | 2006-05-12 17:30:42 +0000 |
|---|---|---|
| committer | Felix Domke <tmbinc@elitedvb.net> | 2006-05-12 17:30:42 +0000 |
| commit | 62b5ec90e68742957e88889c2b3c606a8a536e09 (patch) | |
| tree | 8ea63a951c58ced66d753a48ecda6e77b3cf439c /lib/dvb/pesparse.h | |
| parent | d80bb0a6b9862171d9901b6b19347b5e9f6279cd (diff) | |
| download | enigma2-62b5ec90e68742957e88889c2b3c606a8a536e09.tar.gz enigma2-62b5ec90e68742957e88889c2b3c606a8a536e09.zip | |
match declaration to signal
Diffstat (limited to 'lib/dvb/pesparse.h')
| -rw-r--r-- | lib/dvb/pesparse.h | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/lib/dvb/pesparse.h b/lib/dvb/pesparse.h index f2f59f94..1b49ddde 100644 --- a/lib/dvb/pesparse.h +++ b/lib/dvb/pesparse.h @@ -1,13 +1,15 @@ #ifndef __lib_dvb_pesparse_h #define __lib_dvb_pesparse_h +#include <asm/types.h> + class ePESParser { public: ePESParser(); void setStreamID(unsigned char id); - void processData(unsigned char *data, int len); - virtual void processPESPacket(unsigned char *pkt, int len) = 0; + void processData(const __u8 *data, int len); + virtual void processPESPacket(__u8 *pkt, int len) = 0; private: unsigned char m_pes_buffer[65536]; int m_pes_position, m_pes_length; |
