diff options
author | Klaus Schmidinger <vdr@tvdr.de> | 2021-06-21 20:13:55 +0200 |
---|---|---|
committer | Klaus Schmidinger <vdr@tvdr.de> | 2021-06-21 20:13:55 +0200 |
commit | 8c7d387e8650d82883685602708fe05c6b655a8b (patch) | |
tree | 583a9b69303a650d4a8f5e005f6f582298c1dcca /pat.h | |
parent | 6c5a448dec029f4d72629662cb2d1869dfec3f35 (diff) | |
download | vdr-8c7d387e8650d82883685602708fe05c6b655a8b.tar.gz vdr-8c7d387e8650d82883685602708fe05c6b655a8b.tar.bz2 |
Fixed triggering the PAT filter
Diffstat (limited to 'pat.h')
-rw-r--r-- | pat.h | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -4,7 +4,7 @@ * See the main source file 'vdr.c' for copyright information and * how to reach the author. * - * $Id: pat.h 5.2 2021/06/11 09:38:38 kls Exp $ + * $Id: pat.h 5.3 2021/06/21 20:13:55 kls Exp $ */ #ifndef __PAT_H @@ -41,7 +41,7 @@ protected: public: cPatFilter(void); virtual void SetStatus(bool On); - void Trigger(int); // triggers reading the PMT PIDs that are currently not requested (dummy parameter for backwards compatibility, value is ignored) + void Trigger(int = 0); // triggers reading the PMT PIDs that are currently not requested (dummy parameter for backwards compatibility, value is ignored) void Request(int Sid); // requests permanent reading of the PMT PID for this SID void Release(int Sid); // releases permanent reading of the PMT PID for this SID }; |