diff options
author | Jay Sorg <jay.sorg@gmail.com> | 2014-03-16 22:03:05 -0700 |
---|---|---|
committer | Jay Sorg <jay.sorg@gmail.com> | 2014-03-16 22:03:05 -0700 |
commit | 63032b000daeaaeb1eed75abc1c70066c9e02581 (patch) | |
tree | 24a1ce3d172124627799376d2e10c791c86a294b | |
parent | 50a1b1fdb975bfa29ff45897db63885362e34615 (diff) | |
download | xrdp-proprietary-63032b000daeaaeb1eed75abc1c70066c9e02581.tar.gz xrdp-proprietary-63032b000daeaaeb1eed75abc1c70066c9e02581.zip |
libxrdp: fix for when not compiling with turbo jpeg
-rw-r--r-- | libxrdp/xrdp_jpeg_compress.c | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/libxrdp/xrdp_jpeg_compress.c b/libxrdp/xrdp_jpeg_compress.c index a8c46a2d..e4ce64fe 100644 --- a/libxrdp/xrdp_jpeg_compress.c +++ b/libxrdp/xrdp_jpeg_compress.c @@ -398,6 +398,15 @@ xrdp_jpeg_compress(void *handle, char *in_data, int width, int height, } /*****************************************************************************/ +int APP_CC +xrdp_codec_jpeg_compress(void *handle, int format, char *inp_data, int width, + int height, int stride, int x, int y, int cx, int cy, + int quality, char *out_data, int *io_len) +{ + return 0; +} + +/*****************************************************************************/ void *APP_CC xrdp_jpeg_init(void) { |