summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTomi Valkeinen <tomi.valkeinen@ti.com>2016-03-09 10:29:23 +0200
committerTomi Valkeinen <tomi.valkeinen@ti.com>2016-03-11 12:45:10 +0200
commit1c7a7a15af186866ce90d5f62eeb25f506be599f (patch)
treebd2726afb519c42e384b909a22ed8bea7b2929fc
parenta41cbe24c45975aab44389e7e894582ee2622806 (diff)
kmsview: show multiple frames
-rw-r--r--tests/kmsview.cpp38
1 files changed, 30 insertions, 8 deletions
diff --git a/tests/kmsview.cpp b/tests/kmsview.cpp
index cafd160..7bd67a4 100644
--- a/tests/kmsview.cpp
+++ b/tests/kmsview.cpp
@@ -1,5 +1,6 @@
#include <cstdio>
#include <fstream>
+#include <unistd.h>
#include "kms++.h"
@@ -8,6 +9,17 @@
using namespace std;
using namespace kms;
+static void read_frame(ifstream& is, DumbFramebuffer* fb, Crtc* crtc, Plane* plane)
+{
+ is.read((char*)fb->map(0), fb->size(0));
+
+ int r = crtc->set_plane(plane, *fb,
+ 0, 0, fb->width(), fb->height(),
+ 0, 0, fb->width(), fb->height());
+
+ ASSERT(r == 0);
+}
+
int main(int argc, char** argv)
{
if (argc != 5) {
@@ -22,6 +34,14 @@ int main(int argc, char** argv)
auto pixfmt = FourCCToPixelFormat(modestr);
+
+ ifstream is(filename, ifstream::binary);
+
+ is.seekg(0, std::ios::end);
+ unsigned fsize = is.tellg();
+ is.seekg(0);
+
+
Card card;
auto conn = card.get_first_connected_connector();
@@ -29,10 +49,6 @@ int main(int argc, char** argv)
auto fb = new DumbFramebuffer(card, w, h, pixfmt);
- ifstream is(filename, ifstream::binary);
- is.read((char*)fb->map(0), fb->size(0));
- is.close();
-
Plane* plane = 0;
for (Plane* p : crtc->get_possible_planes()) {
@@ -48,14 +64,20 @@ int main(int argc, char** argv)
FAIL_IF(!plane, "available plane not found");
- int r = crtc->set_plane(plane, *fb,
- 0, 0, w, h,
- 0, 0, w, h);
- ASSERT(r == 0);
+ unsigned num_frames = fsize / fb->size(0);
+ printf("file size %u, frames %u\n", fsize, num_frames);
+
+ for (unsigned i = 0; i < num_frames; ++i) {
+ printf("frame %d\n", i);
+ read_frame(is, fb, crtc, plane);
+ usleep(1000*50);
+ }
printf("press enter to exit\n");
+ is.close();
+
getchar();
delete fb;