]> git.sesse.net Git - nageru/blobdiff - futatabi/jpeg_frame.h
Log a warning when we kill a client that is not keeping up.
[nageru] / futatabi / jpeg_frame.h
index edc7381663e0f60ab4909b200c7d495c595d1b64..6fd0d4b9d05cfb685495ae8e86287b61efb09f4f 100644 (file)
@@ -2,6 +2,7 @@
 #define _JPEG_FRAME_H 1
 
 #include <memory>
+#include <string>
 
 struct Frame {
        bool is_semiplanar = false;
@@ -11,6 +12,7 @@ struct Frame {
        unsigned width, height;
        unsigned chroma_subsampling_x, chroma_subsampling_y;
        unsigned pitch_y, pitch_chroma;
+       std::string exif_data;
 };
 
 #endif  // !defined(_JPEG_FRAME_H)