-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathjpeger.h
More file actions
56 lines (46 loc) · 1.66 KB
/
jpeger.h
File metadata and controls
56 lines (46 loc) · 1.66 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
/*
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/
Author: Marius O. Chincisan
First Release: September 16 - 29 2016
*/
#ifndef JPEGER_H
#define JPEGER_H
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <stdint.h>
#include <string>
#include "encoder.h"
#include <time.h>
#include <jpeglib.h>
#include <jerror.h>
class jpeger : public encoder
{
public:
jpeger(int q, bool bw);
virtual ~jpeger();
bool init(const dims_t&);
uint32_t convert420(const uint8_t* fmt420, int insz, int w,int h, const uint8_t** pjpeg);
uint32_t convertBW(const uint8_t* uint8buf, int insz, int w, int h, const uint8_t** pjpeg);
private:
int _put_jpeg_yuv420p_memory(const uint8_t *pyuv420,int width, int height, int jpg_quality, struct tm *tm);
void _jpeg_mem_dest(j_compress_ptr cinfo);
public:
uint8_t* _image=nullptr;
int _jpgq = 0;
uint32_t _imgsize = 0;
unsigned long _memsz = 0;
bool _bandw = false;
struct jpeg_compress_struct _cinfo;
struct jpeg_error_mgr _jerr;
};
#endif // JPEGER_H