summaryrefslogtreecommitdiff
path: root/src/getvideo_main.cpp
blob: 7055d35dfce3e07d07bcfcc79dbd1d431a1a02aa (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
#include <fcntl.h>
#include <unistd.h>
#include <chrono>
#include <fstream>
#include <iomanip>
#include <iostream>
#include <thread>
#include <vector>

#include <cstdio>
#include <cstdlib>

//#define BUILD_CIMG
#ifdef BUILD_CIMG
#define cimg_display 0
#include <CImg.h>
#endif

#include <ast_jpeg_decoder.hpp>
#include <ast_video_puller.hpp>

int main() {
  ast_video::RawVideoBuffer out;
  bool have_hardware = false;
  if (access("/dev/video", F_OK) != -1) {
    ast_video::SimpleVideoPuller p;
    p.initialize();
    out = p.readVideo();
  } else {
    FILE *fp = fopen("/home/ed/screendata.bin", "rb");
    if (fp != nullptr) {
      size_t newLen = fread(out.buffer.data(), sizeof(char),
                            out.buffer.size() * sizeof(long), fp);
      if (ferror(fp) != 0) {
        fputs("Error reading file", stderr);
      }
      fclose(fp);
      out.buffer.resize(newLen);
      out.mode = ast_video::YuvMode::YUV444;
      out.width = 800;
      out.height = 600;
      out.ySelector = 0;
      out.uvSelector = 0;
    }
  }

  FILE *fp = fopen("/tmp/screendata.bin", "wb");
  fwrite(out.buffer.data(), sizeof(char), out.buffer.size(), fp);

  ast_video::AstJpegDecoder d;
  d.decode(out.buffer, out.width, out.height, out.mode, out.ySelector,
           out.uvSelector);
#ifdef BUILD_CIMG
  cimg_library::CImg<unsigned char> image(out.width, out.height, 1,
                                          3 /*numchannels*/);
  for (int y = 0; y < out.height; y++) {
    for (int x = 0; x < out.width; x++) {
      auto pixel = d.outBuffer[x + (y * out.width)];
      image(x, y, 0) = pixel.r;
      image(x, y, 1) = pixel.g;
      image(x, y, 2) = pixel.b;
    }
  }
  image.save("/tmp/file2.bmp");
#endif

  std::cout << "Done!\n";

  return 1;
}