mirror of
https://github.com/tuxbox-fork-migrations/recycled-ni-neutrino.git
synced 2025-09-02 10:21:04 +02:00
eitd/SIsections.cpp: add SIsectionTIME, parse TOT/TDT using libdvbsi++
Origin commit data
------------------
Branch: ni/coolstream
Commit: b5113a173d
Author: [CST] Focus <focus.cst@gmail.com>
Date: 2012-03-02 (Fri, 02 Mar 2012)
------------------
No further description and justification available within origin commit message!
------------------
This commit was generated by Migit
This commit is contained in:
@@ -89,4 +89,20 @@ public:
|
||||
|
||||
};
|
||||
|
||||
class SIsectionTIME
|
||||
{
|
||||
private:
|
||||
time_t dvbtime;
|
||||
int parsed;
|
||||
void parse(uint8_t *buf);
|
||||
public:
|
||||
SIsectionTIME(uint8_t *buf)
|
||||
{
|
||||
parsed = 0;
|
||||
parse(buf);
|
||||
}
|
||||
time_t getTime() { return dvbtime; }
|
||||
int is_parsed(void) const { return parsed; }
|
||||
};
|
||||
|
||||
#endif // SISECTIONS_HPP
|
||||
|
Reference in New Issue
Block a user