Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(45)

Unified Diff: webrtc/test/testsupport/frame_writer.h

Issue 2990563002: Add Jpeg frame writer for test support. (Closed)
Patch Set: Implemented Sprang@ comments. Created 3 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « webrtc/test/DEPS ('k') | webrtc/test/testsupport/jpeg_frame_writer.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webrtc/test/testsupport/frame_writer.h
diff --git a/webrtc/test/testsupport/frame_writer.h b/webrtc/test/testsupport/frame_writer.h
index 76298498ac68bc27ae407316639c0e36c75fb52d..148f23338cec42223b015e9c165a9aca5be293d1 100644
--- a/webrtc/test/testsupport/frame_writer.h
+++ b/webrtc/test/testsupport/frame_writer.h
@@ -15,6 +15,7 @@
#include <string>
+#include "webrtc/api/video/video_frame.h"
#include "webrtc/typedefs.h"
namespace webrtc {
@@ -82,6 +83,20 @@ class Y4mFrameWriterImpl : public YuvFrameWriterImpl {
const int frame_rate_;
};
+// LibJpeg is not available on iOS
+#if !defined(is_ios)
+class JpegFrameWriter {
+ public:
+ JpegFrameWriter(const std::string &output_filename);
+ bool WriteFrame(const VideoFrame& input_frame, int quality);
+
+ private:
+ bool frame_written_;
+ const std::string output_filename_;
+ FILE* output_file_;
+};
+#endif
+
} // namespace test
} // namespace webrtc
« no previous file with comments | « webrtc/test/DEPS ('k') | webrtc/test/testsupport/jpeg_frame_writer.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698