diff options
| author | Johns <johns98@gmx.net> | 2012-01-24 16:37:11 +0100 |
|---|---|---|
| committer | Johns <johns98@gmx.net> | 2012-01-24 16:37:11 +0100 |
| commit | 037f582badb9c1b9defc83a737bd1e5ed458473c (patch) | |
| tree | 6e109110e60ef51e6a421525a7b707c33f816cca /softhddevice.cpp | |
| parent | 6ca4d3c44fe75d0ad475d214d55d73b9b4699cc4 (diff) | |
| download | vdr-plugin-softhddevice-037f582badb9c1b9defc83a737bd1e5ed458473c.tar.gz vdr-plugin-softhddevice-037f582badb9c1b9defc83a737bd1e5ed458473c.tar.bz2 | |
Fix still picture handling.
Diffstat (limited to 'softhddevice.cpp')
| -rw-r--r-- | softhddevice.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/softhddevice.cpp b/softhddevice.cpp index 4bdb6a3..a841316 100644 --- a/softhddevice.cpp +++ b/softhddevice.cpp @@ -795,8 +795,8 @@ void cSoftHdDevice::SetVolumeDevice(int volume) */ void cSoftHdDevice::StillPicture(const uchar * data, int length) { - dsyslog("[softhddev]%s: %s\n", __FUNCTION__, - data[0] == 0x47 ? "ts" : "pes"); + dsyslog("[softhddev]%s: %s %p %d\n", __FUNCTION__, + data[0] == 0x47 ? "ts" : "pes", data, length); if (data[0] == 0x47) { // ts sync cDevice::StillPicture(data, length); |
