FreeRDP/libfreerdp/codec/jpeg.c

65 lines
1.5 KiB
C
Raw Normal View History

/**
2012-10-09 07:02:04 +04:00
* FreeRDP: A Remote Desktop Protocol Implementation
* Compressed jpeg
*
* Copyright 2012 Jay Sorg <jay.sorg@gmail.com>
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
2022-02-16 13:20:38 +03:00
#include <freerdp/config.h>
#include <winpr/stream.h>
2024-02-02 15:01:36 +03:00
#include <winpr/image.h>
2012-10-19 06:05:06 +04:00
#include <freerdp/codec/color.h>
2012-10-19 06:05:06 +04:00
#include <freerdp/codec/jpeg.h>
#ifdef WITH_JPEG
2024-02-02 15:01:36 +03:00
/* jpeg decompress */
BOOL jpeg_decompress(const BYTE* input, BYTE* output, int width, int height, int size, int bpp)
{
2024-02-02 15:01:36 +03:00
BOOL rc = FALSE;
2024-02-02 15:01:36 +03:00
if (bpp != 24)
return FALSE;
2024-02-02 15:01:36 +03:00
wImage* image = winpr_image_new();
if (!image)
goto fail;
2024-02-02 15:01:36 +03:00
if (winpr_image_read_buffer(image, input, size) <= 0)
goto fail;
2024-02-02 15:01:36 +03:00
if ((image->width != width) || (image->height != height) || (image->bitsPerPixel != bpp))
goto fail;
2024-02-02 15:01:36 +03:00
memcpy(output, image->data, 1ull * image->scanline * image->height);
rc = TRUE;
2024-02-02 15:01:36 +03:00
fail:
winpr_image_free(image, TRUE);
return rc;
}
2012-07-26 22:15:41 +04:00
#else
2024-02-02 15:01:36 +03:00
BOOL jpeg_decompress(const BYTE* input, BYTE* output, int width, int height, int size, int bpp)
2012-07-26 22:15:41 +04:00
{
return 0;
}
#endif