diff options
| author | Andreas Monzner <andreas.monzner@multimedia-labs.de> | 2007-01-15 23:30:57 +0000 |
|---|---|---|
| committer | Andreas Monzner <andreas.monzner@multimedia-labs.de> | 2007-01-15 23:30:57 +0000 |
| commit | 25b95b17bf075eb648f0053901f299e8717990d2 (patch) | |
| tree | 1b01f5767e0b2974c0ebe8a8e850bb24e75c89de /lib | |
| parent | d4a3610bf6cc725b724d6ca2677ae086387f0c76 (diff) | |
| download | enigma2-25b95b17bf075eb648f0053901f299e8717990d2.tar.gz enigma2-25b95b17bf075eb648f0053901f299e8717990d2.zip | |
make code inline
Diffstat (limited to 'lib')
| -rw-r--r-- | lib/dvb/radiotext.cpp | 2 | ||||
| -rw-r--r-- | lib/dvb/radiotext.h | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/lib/dvb/radiotext.cpp b/lib/dvb/radiotext.cpp index 34a5acd6..87498da9 100644 --- a/lib/dvb/radiotext.cpp +++ b/lib/dvb/radiotext.cpp @@ -136,7 +136,7 @@ void eDVBRadioTextParser::processPESPacket(__u8 *data, int len) } } -void eDVBRadioTextParser::gotAncillaryByte(__u8 data) +inline void eDVBRadioTextParser::gotAncillaryByte(__u8 data) { buf[bytesread]=data; bytesread+=1; diff --git a/lib/dvb/radiotext.h b/lib/dvb/radiotext.h index 11fa7e48..b4ae0e26 100644 --- a/lib/dvb/radiotext.h +++ b/lib/dvb/radiotext.h @@ -20,7 +20,7 @@ public: private: void abortNonAvail(); void processPESPacket(__u8 *pkt, int len); - void gotAncillaryByte(__u8 data); + inline void gotAncillaryByte(__u8 data); ePtr<iDVBPESReader> m_pes_reader; ePtr<eConnection> m_read_connection; Signal0<void> m_updated_radiotext; |
