diff options
author | Johns <johns98@gmx.net> | 2015-06-30 10:12:09 +0200 |
---|---|---|
committer | Johns <johns98@gmx.net> | 2015-06-30 10:12:09 +0200 |
commit | ec58e456072d962a18cb50f4324d266ba4a2aae8 (patch) | |
tree | 1dab1b0faa267b7b73de336f5a5876a2632608ec /softhddev.h | |
parent | 396d5fac055aae8afeb4626d2b56e4bf989f8fd6 (diff) | |
download | vdr-plugin-softhddevice-ec58e456072d962a18cb50f4324d266ba4a2aae8.tar.gz vdr-plugin-softhddevice-ec58e456072d962a18cb50f4324d266ba4a2aae8.tar.bz2 |
Fix bug: wrong and crash, if vdr draws pixmaps outside OSD.
Diffstat (limited to 'softhddev.h')
-rw-r--r-- | softhddev.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/softhddev.h b/softhddev.h index a793503..efb2e25 100644 --- a/softhddev.h +++ b/softhddev.h @@ -1,7 +1,7 @@ /// /// @file softhddev.h @brief software HD device plugin header file. /// -/// Copyright (c) 2011 - 2014 by Johns. All Rights Reserved. +/// Copyright (c) 2011 - 2015 by Johns. All Rights Reserved. /// /// Contributor(s): /// @@ -34,7 +34,8 @@ extern "C" /// C plugin close osd extern void OsdClose(void); /// C plugin draw osd pixmap - extern void OsdDrawARGB(int, int, int, int, const uint8_t *); + extern void OsdDrawARGB(int, int, int, int, int, const uint8_t *, int, + int); /// C plugin play audio packet extern int PlayAudio(const uint8_t *, int, uint8_t); |