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.cpp2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/ast_video_puller_test.cpp b/src/ast_video_puller_test.cpp
index ef1cbe3b6d..b1f94e7579 100644
--- a/src/ast_video_puller_test.cpp
+++ b/src/ast_video_puller_test.cpp
@@ -14,7 +14,6 @@
#include <gtest/gtest.h>
TEST(AstvideoPuller, BasicRead) {
- std::cout << "Started\n";
AstVideo::RawVideoBuffer out;
bool have_hardware = false;
if (access("/dev/video", F_OK) != -1) {
@@ -43,7 +42,6 @@ TEST(AstvideoPuller, BasicRead) {
fwrite(out.buffer.data(), sizeof(char), out.buffer.size(), fp);
AstVideo::AstJpegDecoder d;
- std::cout << "MODE " << static_cast<int>(out.mode);
d.decode(out.buffer, out.width, out.height, out.mode, out.y_selector,
out.uv_selector);
}