summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authoranbr <vdr07@deltab.de>2015-03-22 14:32:15 +0100
committeranbr <vdr07@deltab.de>2015-03-22 14:32:15 +0100
commit8594d975a7d62a684cf7663bc405a341b9cb9a6e (patch)
treec908be52a160ebeafefd859ef1b8f24f7301c96b
parentd66838647de0422384507eee906868d96c5c5315 (diff)
downloadxxv-8594d975a7d62a684cf7663bc405a341b9cb9a6e.tar.gz
xxv-8594d975a7d62a684cf7663bc405a341b9cb9a6e.tar.bz2
Fix typo
-rw-r--r--contrib/vdr2jpeg/ffm.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/contrib/vdr2jpeg/ffm.cpp b/contrib/vdr2jpeg/ffm.cpp
index 769b460..24c1e16 100644
--- a/contrib/vdr2jpeg/ffm.cpp
+++ b/contrib/vdr2jpeg/ffm.cpp
@@ -41,7 +41,7 @@ bool decode (const char* szMPVfile,
ss << " -an -i '" << szMPVfile << "'";
if(width > 0 && height > 0) {
- ss << " -vf scale=" << width << "x" << height;
+ ss << " -vf scale=" << width << ":" << height;
} else if(height > 0) { // Nur Höhe wurde definiert
ss << " -vf scale=-1:" << height;
} else if(width > 0) { // Nur Weite wurde definiert