summaryrefslogtreecommitdiff
path: root/src/ast_video_puller_test.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/ast_video_puller_test.cpp')
-rw-r--r--src/ast_video_puller_test.cpp5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/ast_video_puller_test.cpp b/src/ast_video_puller_test.cpp
index f84b302ebf..a69f47b72b 100644
--- a/src/ast_video_puller_test.cpp
+++ b/src/ast_video_puller_test.cpp
@@ -5,6 +5,7 @@
#include <ast_jpeg_decoder.hpp>
#include <ast_video_puller.hpp>
+
#include <chrono>
#include <fstream>
#include <iomanip>
@@ -27,7 +28,7 @@ TEST(AstvideoPuller, BasicRead)
}
else
{
- FILE *fp =
+ FILE* fp =
fopen("test_resources/ubuntu_444_800x600_0chrom_0lum.bin", "rb");
if (fp)
{
@@ -47,7 +48,7 @@ TEST(AstvideoPuller, BasicRead)
}
}
- FILE *fp = fopen("/tmp/screendata.bin", "wb");
+ FILE* fp = fopen("/tmp/screendata.bin", "wb");
fwrite(out.buffer.data(), sizeof(char), out.buffer.size(), fp);
fclose(fp);