licornea_tools
camera_mpeg.h
Go to the documentation of this file.
1 #ifndef LICORNEA_CAMERA_MPEG_H_
2 #define LICORNEA_CAMERA_MPEG_H_
3 
4 #include <iosfwd>
5 
6 namespace tlz {
7 
8 struct camera;
9 
10 bool read_camera_mpeg(std::istream& input, camera&, bool convert = true);
11 void write_camera_mpeg(std::ostream& output, const camera&, bool convert = true);
12 
13 }
14 
15 #endif
bool read_camera_mpeg(std::istream &input, camera &cam, bool convert)
Definition: camera_mpeg.cc:9
void write_camera_mpeg(std::ostream &output, const camera &orig_cam, bool convert)
Definition: camera_mpeg.cc:35