diff options
author | Thomas Reufer <thomas@reufer.ch> | 2015-04-27 19:46:38 +0200 |
---|---|---|
committer | Thomas Reufer <thomas@reufer.ch> | 2015-04-27 19:46:38 +0200 |
commit | 3e785f99d1d72baa539c3278f2f4439fc5970b6d (patch) | |
tree | 329411ba65fbe95ba885083a67627877fbda7126 | |
parent | 2a95cb122bff5922b0528281c0e6d07ed3e88ef7 (diff) | |
download | vdr-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.c | 5 |
1 files changed, 3 insertions, 2 deletions
@@ -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; |