summaryrefslogtreecommitdiff
path: root/device.h
diff options
context:
space:
mode:
authorKlaus Schmidinger <vdr@tvdr.de>2013-12-25 13:12:07 +0100
committerKlaus Schmidinger <vdr@tvdr.de>2013-12-25 13:12:07 +0100
commit21c8829783f7f4d6b7bc13bc405196182910c3e6 (patch)
treec597275aa9cdb3d90baa375191f56be906d7102f /device.h
parent20791e4d95ab30d40da0a51dac3c7a35a89103d8 (diff)
downloadvdr-21c8829783f7f4d6b7bc13bc405196182910c3e6.tar.gz
vdr-21c8829783f7f4d6b7bc13bc405196182910c3e6.tar.bz2
Made it clear that the Data parameter in cDevice::StillPicture() may point to a series of packets, not just a single one
Diffstat (limited to 'device.h')
-rw-r--r--device.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/device.h b/device.h
index a9e88329..16aa59df 100644
--- a/device.h
+++ b/device.h
@@ -4,7 +4,7 @@
* See the main source file 'vdr.c' for copyright information and
* how to reach the author.
*
- * $Id: device.h 3.3 2013/10/10 13:23:30 kls Exp $
+ * $Id: device.h 3.4 2013/12/25 13:08:44 kls Exp $
*/
#ifndef __DEVICE_H
@@ -723,7 +723,7 @@ public:
///< all registered cAudio objects are notified.
virtual void StillPicture(const uchar *Data, int Length);
///< Displays the given I-frame as a still picture.
- ///< Data points either to TS (first byte is 0x47) or PES (first byte
+ ///< Data points either to a series of TS (first byte is 0x47) or PES (first byte
///< is 0x00) data of the given Length. The default implementation
///< converts TS to PES and calls itself again, allowing a derived class
///< to display PES if it can't handle TS directly.