Tyler Chatow | e024145 | 2019-03-08 21:07:50 -0800 | [diff] [blame^] | 1 | #ifndef Y2019_IMAGE_STREAMER_FLIP_IMAGE_H_ |
2 | #define Y2019_IMAGE_STREAMER_FLIP_IMAGE_H_ | ||||
3 | |||||
4 | #include <stddef.h> | ||||
5 | #include <stdio.h> | ||||
6 | #include "third_party/libjpeg/jerror.h" | ||||
7 | #include "third_party/libjpeg/jpeglib.h" | ||||
8 | |||||
9 | void flip_image(const char *input, const int input_size, JOCTET *buffer, | ||||
10 | unsigned int *buffer_size); | ||||
11 | |||||
12 | #endif // Y2019_IMAGE_STREAMER_FLIP_IMAGE_H |