diff options
author | Klaus Schmidinger <vdr@tvdr.de> | 2013-12-25 13:12:07 +0100 |
---|---|---|
committer | Klaus Schmidinger <vdr@tvdr.de> | 2013-12-25 13:12:07 +0100 |
commit | 21c8829783f7f4d6b7bc13bc405196182910c3e6 (patch) | |
tree | c597275aa9cdb3d90baa375191f56be906d7102f | |
parent | 20791e4d95ab30d40da0a51dac3c7a35a89103d8 (diff) | |
download | vdr-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
-rw-r--r-- | CONTRIBUTORS | 4 | ||||
-rw-r--r-- | HISTORY | 2 | ||||
-rw-r--r-- | device.h | 4 |
3 files changed, 8 insertions, 2 deletions
diff --git a/CONTRIBUTORS b/CONTRIBUTORS index be72ac80..0f7ebe4b 100644 --- a/CONTRIBUTORS +++ b/CONTRIBUTORS @@ -3221,3 +3221,7 @@ Harald Koenig <koenig@tat.physik.uni-tuebingen.de> Guido Cordaro <guido.cordaro@tiscali.it> for adding maximum signal strength value for TechniSat SkyStar 2 DVB-S rev 2.3P + +Thomas Reufer <thomas@reufer.ch> + for making it clear that the Data parameter in cDevice::StillPicture() may point to a + series of packets, not just a single one @@ -8076,3 +8076,5 @@ Video Disk Recorder Revision History caller to have it display only a certain subset of the recordings (thanks to Lars Hanisch). - Added handling UTF-8 'umlaut' characters to cKbdRemote (thanks to Lars Hanisch). +- Made it clear that the Data parameter in cDevice::StillPicture() may point to a + series of packets, not just a single one (thanks to Thomas Reufer). @@ -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. |