mirror of
https://github.com/thorvg/thorvg.git
synced 2025-06-15 04:24:28 +00:00
tvg_loader: Convert tvgJpgd.h EOL to LF
This makes it consistent with the rest of the codebase.
This commit is contained in:
parent
a5f5cd6d98
commit
4e14e30447
1 changed files with 35 additions and 35 deletions
|
@ -1,35 +1,35 @@
|
||||||
/*
|
/*
|
||||||
* Copyright (c) 2021 - 2022 Samsung Electronics Co., Ltd. All rights reserved.
|
* Copyright (c) 2021 - 2022 Samsung Electronics Co., Ltd. All rights reserved.
|
||||||
|
|
||||||
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||||
* of this software and associated documentation files (the "Software"), to deal
|
* of this software and associated documentation files (the "Software"), to deal
|
||||||
* in the Software without restriction, including without limitation the rights
|
* in the Software without restriction, including without limitation the rights
|
||||||
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||||
* copies of the Software, and to permit persons to whom the Software is
|
* copies of the Software, and to permit persons to whom the Software is
|
||||||
* furnished to do so, subject to the following conditions:
|
* furnished to do so, subject to the following conditions:
|
||||||
|
|
||||||
* The above copyright notice and this permission notice shall be included in all
|
* The above copyright notice and this permission notice shall be included in all
|
||||||
* copies or substantial portions of the Software.
|
* copies or substantial portions of the Software.
|
||||||
|
|
||||||
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||||
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||||
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||||
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||||
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||||
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
||||||
* SOFTWARE.
|
* SOFTWARE.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
// jpgd.h - C++ class for JPEG decompression.
|
// jpgd.h - C++ class for JPEG decompression.
|
||||||
// Public domain, Rich Geldreich <richgel99@gmail.com>
|
// Public domain, Rich Geldreich <richgel99@gmail.com>
|
||||||
#ifndef _TVG_JPGD_H_
|
#ifndef _TVG_JPGD_H_
|
||||||
#define _TVG_JPGD_H_
|
#define _TVG_JPGD_H_
|
||||||
|
|
||||||
class jpeg_decoder;
|
class jpeg_decoder;
|
||||||
|
|
||||||
jpeg_decoder* jpgdHeader(const char* data, int size, int* width, int* height);
|
jpeg_decoder* jpgdHeader(const char* data, int size, int* width, int* height);
|
||||||
jpeg_decoder* jpgdHeader(const char* filename, int* width, int* height);
|
jpeg_decoder* jpgdHeader(const char* filename, int* width, int* height);
|
||||||
unsigned char* jpgdDecompress(jpeg_decoder* decoder);
|
unsigned char* jpgdDecompress(jpeg_decoder* decoder);
|
||||||
void jpgdDelete(jpeg_decoder* decoder);
|
void jpgdDelete(jpeg_decoder* decoder);
|
||||||
|
|
||||||
#endif //_TVG_JPGD_H_
|
#endif //_TVG_JPGD_H_
|
||||||
|
|
Loading…
Add table
Reference in a new issue