summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKlaus Schmidinger <vdr@tvdr.de>2017-03-19 10:48:52 +0100
committerKlaus Schmidinger <vdr@tvdr.de>2017-03-19 10:48:52 +0100
commit31b0feae145a943e4fb99d5fa2e2f83466516606 (patch)
treec489a83ab41808fa47493f657db5f78e06b16a94
parent2cc25e65f445162fad126f4e4b29bc380e002c0f (diff)
downloadvdr-31b0feae145a943e4fb99d5fa2e2f83466516606.tar.gz
vdr-31b0feae145a943e4fb99d5fa2e2f83466516606.tar.bz2
Added some remarks
-rw-r--r--ci.h4
-rw-r--r--mtd.h3
2 files changed, 4 insertions, 3 deletions
diff --git a/ci.h b/ci.h
index 2e99a1b6..78d4087d 100644
--- a/ci.h
+++ b/ci.h
@@ -4,7 +4,7 @@
* See the main source file 'vdr.c' for copyright information and
* how to reach the author.
*
- * $Id: ci.h 4.3 2017/03/18 14:18:37 kls Exp $
+ * $Id: ci.h 4.4 2017/03/19 10:48:14 kls Exp $
*/
#ifndef __CI_H
@@ -185,7 +185,7 @@ protected:
///< requires a CAM that supports MCD ("Multi Channel Decryption").
int MtdPutData(uchar *Data, int Count);
///< Sends at most Count bytes of the given Data to the individual MTD CAM slots
- ///< that are using this CAM.
+ ///< that are using this CAM. Data must point to the beginning of a TS packet.
///< Returns the number of bytes actually processed.
public:
bool McdAvailable(void) { return RepliesToQuery(); }
diff --git a/mtd.h b/mtd.h
index 9dd016be..9375b682 100644
--- a/mtd.h
+++ b/mtd.h
@@ -4,7 +4,7 @@
* See the main source file 'vdr.c' for copyright information and
* how to reach the author.
*
- * $Id: mtd.h 1.1 2017/03/17 16:06:34 kls Exp $
+ * $Id: mtd.h 1.2 2017/03/19 10:48:52 kls Exp $
*/
#ifndef __MTD_H
@@ -124,6 +124,7 @@ public:
int Put(const uchar *Data, int Count);
///< Puts at most Count bytes of Data into the CAM slot which's index is
///< derived from the PID of the TS packets.
+ ///< Data must point to the beginning of a TS packet.
///< Returns the number of bytes actually stored.
int Priority(void);
///< Returns the maximum priority of any of the active MTD CAM slots.