diff options
author | Klaus Schmidinger <vdr@tvdr.de> | 2003-12-24 10:30:35 +0100 |
---|---|---|
committer | Klaus Schmidinger <vdr@tvdr.de> | 2003-12-24 10:30:35 +0100 |
commit | 6c4e6cc666da440c2f09e4cab9ab9b8ca99e5213 (patch) | |
tree | 318631b1603be9c5ae92d6a5338f72ec797c3f47 /pat.h | |
parent | 1d32f7c0597da0d773a8eb718a171ac6dacc73ad (diff) | |
download | vdr-6c4e6cc666da440c2f09e4cab9ab9b8ca99e5213.tar.gz vdr-6c4e6cc666da440c2f09e4cab9ab9b8ca99e5213.tar.bz2 |
Now the CA descriptors are sent to the CAM in the 'program' or 'ES level' sections
Diffstat (limited to 'pat.h')
-rw-r--r-- | pat.h | 6 |
1 files changed, 4 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 1.1 2003/12/21 14:56:03 kls Exp $ + * $Id: pat.h 1.2 2003/12/24 10:08:22 kls Exp $ */ #ifndef __PAT_H @@ -25,12 +25,14 @@ public: virtual void SetStatus(bool On); }; -int GetCaDescriptors(int Source, int Transponder, int ServiceId, const unsigned short *CaSystemIds, int BufSize, uchar *Data); +int GetCaDescriptors(int Source, int Transponder, int ServiceId, const unsigned short *CaSystemIds, int BufSize, uchar *Data, bool &StreamFlag); ///< Gets all CA descriptors for a given channel. ///< Copies all available CA descriptors for the given Source, Transponder and ServiceId ///< into the provided buffer at Data (at most BufSize bytes). Only those CA descriptors ///< are copied that match one of the given CA system IDs. ///< \return Returns the number of bytes copied into Data (0 if no CA descriptors are ///< available), or -1 if BufSize was too small to hold all CA descriptors. + ///< The return value in StreamFlag tells whether these CA descriptors are to be used + ///< for the individual streams. #endif //__PAT_H |