-
Notifications
You must be signed in to change notification settings - Fork 71
/
Copy pathcommon.cpp
183 lines (144 loc) · 5.13 KB
/
common.cpp
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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
#include <cstdio>
#include <cstring>
#include <iostream>
#include <tuple>
#include <utility>
#include <vector>
#include <argp.h>
#include "common.h"
#include "kernels.h"
using std::make_tuple;
using std::tuple;
using std::string;
using std::vector;
using std::tie;
// Program documentation.
static char doc[] = "Xilinx FPGA Convolution Tutorial";
// A description of the arguments we accept.
static char args_doc[] = "XCL_BINARY_FILE INPUT_FILE";
static char default_kernel_name[] = "";
// The options we understand.
static struct argp_option options[] = {
{"gray", 'g', 0, 0, "Convert input to grayscale"},
{"output", 'o', "FILE", 0, "Output file (default: output.mp4)"},
{"scale", 's', "WIDTH HEIGHT", 0,
"The input will be resized to this before being processed"},
{"quiet", 'q', 0, 0, "Display verbose output"},
{"nframes", 'n', "NUM", 0, "Number of frames to process"},
{"kernel_name", 'k', "KERNEL_NAME", 0, "The kernel to launch"},
{"ncomputeunits", 'c', "NUM", 0, "Number of compute units"},
{0}};
char default_output[] = "output.mp4";
const char bar[] = "###################################";
namespace {
tuple<int, int, int>
get_video_size(string path) {
string command("ffprobe -v error -show_entries stream=width,height,nb_frames -of default=nw=1:nk=1:nokey=1:noprint_wrappers=1 " + path);
FILE* size_stream = popen(command.c_str(), "r");
int width = 0, height = 0, frames=0;
fscanf(size_stream, "%d", &width);
fscanf(size_stream, "%d", &height);
fscanf(size_stream, "%d", &frames);
pclose(size_stream);
return make_tuple(width, height, frames);
}
// Parse a single option.
static error_t
parse_opt (int key, char *arg, struct argp_state *state) {
struct arguments *arguments = (struct arguments*)state->input;
switch (key) {
case 'g':
arguments->gray = true;
break;
case 'o':
arguments->output_file = arg;
break;
case 's':
arguments->width = atoi(arg);
arguments->height = atoi(state->argv[state->next]);
state->next++;
break;
case 'n':
arguments->nframes = atoi(arg);
break;
case 'q':
arguments->verbose = false;
break;
case 'k':
arguments->kernel_name = arg;
break;
case 'c':
arguments->ncompute_units = atoi(arg);
break;
case ARGP_KEY_ARG:
if(strstr(arg, "xclbin")) {
arguments->binary_file = arg;
} else {
arguments->input_file = arg;
}
break;
default:
return ARGP_ERR_UNKNOWN;
}
return 0;
}
} // anonymous namespace
static struct argp argp = { options, parse_opt, args_doc, doc };
void print_progress(int cnt, int total) {
int bar_length = 35;
int elements = cnt+1;
float percent = float(elements)/(total);
int bar_elements = float(bar_length) * percent;
printf("\r[%-*.*s] %3.f %%", bar_length, bar_elements, &(bar[bar_length - bar_elements]), percent * 100);
fflush(stdout);
}
arguments parse_args(int argc, char* argv[]) {
arguments arguments;
arguments.output_file = default_output;
arguments.gray = false;
arguments.verbose = true;
arguments.width = -1;
arguments.height = -1;
arguments.nframes = -1;
arguments.binary_file = nullptr;
arguments.kernel_name = default_kernel_name;
arguments.ncompute_units = 1;
argp_parse (&argp, argc, argv, 0, 0, &arguments);
int input_width, input_height, input_frames;
tie(input_width, input_height, input_frames) = get_video_size(arguments.input_file);
arguments.in_width = input_width;
arguments.in_height = input_height;
if(arguments.width == -1) { arguments.width = input_width; }
if(arguments.height == -1) { arguments.height = input_height; }
if(arguments.nframes == -1) { arguments.nframes = input_frames; }
if (arguments.verbose) {
printf("input: %s\noutput: %s\n", arguments.input_file, arguments.output_file);
printf("video size: %dx%d\n", input_width, input_height);
if(arguments.width == -1 || arguments.height == -1) {
printf("scaled size: %dx%d\n", arguments.width, arguments.height);
}
printf("nframes: %d\n", arguments.nframes);
}
return arguments;
}
tuple<FILE*, FILE*>
get_streams(arguments &args) {
string inCommand;
inCommand.resize(2048);
snprintf(&inCommand.front(), 2048,
"ffmpeg -v error -hide_banner -i %s -f image2pipe -vcodec rawvideo -vf scale=w=%d:h=%d -vframes %d -pix_fmt rgba -",
args.input_file, args.width, args.height, args.nframes);
string outCommand;
outCommand.resize(2048);
snprintf(&outCommand.front(), 2048,
"ffmpeg -v error -hide_banner -y -f rawvideo -vcodec rawvideo -pix_fmt %s -s %dx%d -framerate 25 -i - -f mp4 -q:v 5 -an -codec mpeg4 %s",
(args.gray) ? "gray" : "rgba", args.width, args.height, args.output_file);
if(args.verbose) {
printf("IN COMMAND: %s\n"
"OUT COMMAND: %s\n", inCommand.c_str(), outCommand.c_str());
if(args.binary_file) printf("Binary Path: %s\n", args.binary_file);
}
FILE* streamIn = popen(inCommand.c_str(), "r");
FILE* streamOut = popen(outCommand.c_str(), "w");
return make_tuple(streamIn, streamOut);
}