summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThomas Reufer <thomas@reufer.ch>2015-04-27 19:46:38 +0200
committerThomas Reufer <thomas@reufer.ch>2015-04-27 19:46:38 +0200
commit3e785f99d1d72baa539c3278f2f4439fc5970b6d (patch)
tree329411ba65fbe95ba885083a67627877fbda7126
parent2a95cb122bff5922b0528281c0e6d07ed3e88ef7 (diff)
downloadvdr-plugin-rpihddevice-3e785f99d1d72baa539c3278f2f4439fc5970b6d.tar.gz
vdr-plugin-rpihddevice-3e785f99d1d72baa539c3278f2f4439fc5970b6d.tar.bz2
extended error message in case of cached OSD image exceeds maximum allowed size
-rw-r--r--ovgosd.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/ovgosd.c b/ovgosd.c
index 3d0a7c9..c9963e5 100644
--- a/ovgosd.c
+++ b/ovgosd.c
@@ -1687,8 +1687,9 @@ public:
if (image.Width() > m_maxImageSize.Width() ||
image.Height() > m_maxImageSize.Height())
{
- ELOG("[OpenVG] cannot store image of %dpx x %dpx, "
- "maximum size is %dpx x %dpx!",
+ DLOG("[OpenVG] cannot store image of %dpx x %dpx "
+ "(maximum size is %dpx x %dpx) - falling back to "
+ "cOsdProvider::StoreImageData()",
image.Width(), image.Height(),
m_maxImageSize.Width(), m_maxImageSize.Height());
return 0;