Made it clear that the Data parameter in cDevice::StillPicture() may point to a series of packets, not just a single one

This commit is contained in:
Klaus Schmidinger 2013-12-25 13:12:07 +01:00
parent 20791e4d95
commit 21c8829783
3 changed files with 8 additions and 2 deletions

View File

@ -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

View File

@ -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).

View File

@ -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.