diff options
author | Johns <johns98@gmx.net> | 2012-01-23 20:04:15 +0100 |
---|---|---|
committer | Johns <johns98@gmx.net> | 2012-01-23 20:04:15 +0100 |
commit | 5f43803236e9ce08dba301bbdea67fb88c208950 (patch) | |
tree | ebce861b8847f0127f8d9367a617e387e265a52d /softhddev.c | |
parent | 993d831190cce6d8582300f74a2ce3acedc40b20 (diff) | |
download | vdr-plugin-softhddevice-5f43803236e9ce08dba301bbdea67fb88c208950.tar.gz vdr-plugin-softhddevice-5f43803236e9ce08dba301bbdea67fb88c208950.tar.bz2 |
VDPAU: Add primitive software scaler to grab image
Diffstat (limited to 'softhddev.c')
-rw-r--r-- | softhddev.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/softhddev.c b/softhddev.c index 102f9f1..758ef0d 100644 --- a/softhddev.c +++ b/softhddev.c @@ -830,8 +830,7 @@ uint8_t *GrabImage(int *size, int jpeg, int quality, int width, int height) return NULL; } if (width != -1 && height != -1) { - Error(_("softhddev: scaling not supported\n")); - return NULL; + Warning(_("softhddev: scaling unsupported\n")); } return VideoGrab(size, &width, &height); } |