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, |
Austin Schuh | 9c03a53 | 2019-03-17 18:14:45 -0700 | [diff] [blame] | 10 | unsigned int *buffer_size, bool flip_image); |
Tyler Chatow | e024145 | 2019-03-08 21:07:50 -0800 | [diff] [blame] | 11 | |
| 12 | #endif // Y2019_IMAGE_STREAMER_FLIP_IMAGE_H |