5 #ifndef LIBMPO_MPODATASRC_H
6 #define LIBMPO_MPODATASRC_H
14 struct jpeg_source_mgr pub;
18 boolean start_of_file;
19 size_t buffer_file_offset;
26 my_jpeg_stdio_src (j_decompress_ptr cinfo, FILE * infile);
30 if(src->pub.next_input_byte)
32 return src->buffer_file_offset + (src->pub.next_input_byte - src->buffer);
34 else return src->buffer_file_offset;
37 #endif //LIBMPO_MPODATASRC_H
Definition: mpodatasrc.h:13