diff options
author | Jochen Dolze <vdr@dolze.de> | 2012-09-28 23:25:34 +0200 |
---|---|---|
committer | Jochen Dolze <vdr@dolze.de> | 2012-09-28 23:25:34 +0200 |
commit | 71bcd626abd6f79bb8521837efd94461ec811545 (patch) | |
tree | 14dbb1ae4830b630fed083f9a3d344df8c244d47 /command/markad-standalone.h | |
parent | 82920ea01d29d74894dae87a868e63b8d0acb717 (diff) | |
download | vdr-plugin-markad-71bcd626abd6f79bb8521837efd94461ec811545.tar.gz vdr-plugin-markad-71bcd626abd6f79bb8521837efd94461ec811545.tar.bz2 |
Added speedup for decoding H264/H262
Added fix for OSD message
Added fix for 'ALERT: stopping before end of broadcast'
Code cleanups
Diffstat (limited to 'command/markad-standalone.h')
-rw-r--r-- | command/markad-standalone.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/command/markad-standalone.h b/command/markad-standalone.h index 0a339e7..b213983 100644 --- a/command/markad-standalone.h +++ b/command/markad-standalone.h @@ -16,6 +16,7 @@ #include "streaminfo.h" #include "marks.h" +#define trcs(c) bind_textdomain_codeset("markad",c) #define tr(s) dgettext("markad",s) #define IGNORE_VIDEOINFO 1 @@ -34,7 +35,7 @@ private: char *msg; pthread_t tid; static void *send(void *osd); - bool readreply(int fd); + bool readreply(int fd, char **reply=NULL); public: int Send(const char *format, ...); cOSDMessage(const char *Host, int Port); @@ -220,7 +221,7 @@ unsigned Descriptor_Length: int skipped; // skipped bytes in whole file bool inBroadCast; // are we in a broadcast (or ad)? - time_t GetBroadcastStart(time_t start, int fd); + time_t GetBroadcastStart(time_t start, int bstart, int fd); void CheckIndexGrowing(); char *indexFile; int sleepcnt; |