blob: c3b8e13e1dee963e56fa80f61fce49a77c1a4c44 [file] [log] [blame]
Brian Silverman5b3e51e2013-03-29 22:53:44 -07001// for jpeglib.h
2#include <stdio.h>
Brian Silverman6ae77dd2013-03-29 22:28:08 -07003
Brian Silverman8f1018b2013-11-17 21:35:15 -08004#include "libjpeg/include/jpeglib.h"
Brian Silverman6ae77dd2013-03-29 22:28:08 -07005
Brian Silverman6ae77dd2013-03-29 22:28:08 -07006namespace frc971 {
7namespace vision {
8
9void decompress_add_huff_table (j_decompress_ptr cinfo,
10 JHUFF_TBL **htblptr, const UINT8 *bits, const UINT8 *val);
11
12void standard_huff_tables (j_decompress_ptr cinfo);
13
14void process_jpeg(unsigned char *out,unsigned char *image,size_t size);
15
16} // namespace vision
17} // namespace frc971