blob: 7c31774aa4f4c388257bc0707c8610fa0b615e67 [file] [log] [blame]
Tyler Chatowe0241452019-03-08 21:07:50 -08001#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
9void flip_image(const char *input, const int input_size, JOCTET *buffer,
Austin Schuh9c03a532019-03-17 18:14:45 -070010 unsigned int *buffer_size, bool flip_image);
Tyler Chatowe0241452019-03-08 21:07:50 -080011
12#endif // Y2019_IMAGE_STREAMER_FLIP_IMAGE_H