]> git.sesse.net Git - nageru/blob - flags.cpp
Support switching Y'CbCr coefficients midway, which will allow doing the Right Thing...
[nageru] / flags.cpp
1 #include "flags.h"
2
3 #include <getopt.h>
4 #include <stdio.h>
5 #include <stdlib.h>
6 #include <string.h>
7
8 #include <utility>
9
10 using namespace std;
11
12 Flags global_flags;
13
14 // Long options that have no corresponding short option.
15 enum LongOption {
16         OPTION_HELP = 1000,
17         OPTION_MULTICHANNEL,
18         OPTION_MIDI_MAPPING,
19         OPTION_FAKE_CARDS_AUDIO,
20         OPTION_HTTP_UNCOMPRESSED_VIDEO,
21         OPTION_HTTP_X264_VIDEO,
22         OPTION_X264_PRESET,
23         OPTION_X264_TUNE,
24         OPTION_X264_SPEEDCONTROL,
25         OPTION_X264_SPEEDCONTROL_VERBOSE,
26         OPTION_X264_BITRATE,
27         OPTION_X264_VBV_BUFSIZE,
28         OPTION_X264_VBV_MAX_BITRATE,
29         OPTION_X264_PARAM,
30         OPTION_HTTP_MUX,
31         OPTION_HTTP_COARSE_TIMEBASE,
32         OPTION_HTTP_AUDIO_CODEC,
33         OPTION_HTTP_AUDIO_BITRATE,
34         OPTION_FLAT_AUDIO,
35         OPTION_GAIN_STAGING,
36         OPTION_DISABLE_LOCUT,
37         OPTION_ENABLE_LOCUT,
38         OPTION_DISABLE_GAIN_STAGING_AUTO,
39         OPTION_ENABLE_GAIN_STAGING_AUTO,
40         OPTION_DISABLE_COMPRESSOR,
41         OPTION_ENABLE_COMPRESSOR,
42         OPTION_DISABLE_LIMITER,
43         OPTION_ENABLE_LIMITER,
44         OPTION_DISABLE_MAKEUP_GAIN_AUTO,
45         OPTION_ENABLE_MAKEUP_GAIN_AUTO,
46         OPTION_DISABLE_ALSA_OUTPUT,
47         OPTION_NO_FLUSH_PBOS,
48         OPTION_PRINT_VIDEO_LATENCY,
49         OPTION_MAX_INPUT_QUEUE_FRAMES,
50         OPTION_AUDIO_QUEUE_LENGTH_MS,
51         OPTION_OUTPUT_YCBCR_COEFFICIENTS,
52         OPTION_OUTPUT_BUFFER_FRAMES,
53         OPTION_OUTPUT_SLOP_FRAMES,
54         OPTION_TIMECODE_STREAM,
55         OPTION_TIMECODE_STDOUT,
56         OPTION_10_BIT_INPUT,
57 };
58
59 void usage()
60 {
61         fprintf(stderr, "Usage: nageru [OPTION]...\n");
62         fprintf(stderr, "\n");
63         fprintf(stderr, "      --help                      print usage information\n");
64         fprintf(stderr, "  -w, --width                     output width in pixels (default 1280)\n");
65         fprintf(stderr, "  -h, --height                    output height in pixels (default 720)\n");
66         fprintf(stderr, "  -c, --num-cards                 set number of input cards (default 2)\n");
67         fprintf(stderr, "  -o, --output-card=CARD          also output signal to the given card (default none)\n");
68         fprintf(stderr, "  -t, --theme=FILE                choose theme (default theme.lua)\n");
69         fprintf(stderr, "  -I, --theme-dir=DIR             search for theme in this directory (can be given multiple times)\n");
70         fprintf(stderr, "  -v, --va-display=SPEC           VA-API device for H.264 encoding\n");
71         fprintf(stderr, "                                    ($DISPLAY spec or /dev/dri/render* path)\n");
72         fprintf(stderr, "  -m, --map-signal=SIGNAL,CARD    set a default card mapping (can be given multiple times)\n");
73         fprintf(stderr, "  -M, --input-mapping=FILE        start with the given audio input mapping (implies --multichannel)\n");
74         fprintf(stderr, "      --multichannel              start in multichannel audio mapping mode\n");
75         fprintf(stderr, "      --midi-mapping=FILE         start with the given MIDI controller mapping (implies --multichannel)\n");
76         fprintf(stderr, "      --fake-cards-audio          make fake (disconnected) cards output a simple tone\n");
77         fprintf(stderr, "      --http-uncompressed-video   send uncompressed NV12 video to HTTP clients\n");
78         fprintf(stderr, "      --http-x264-video           send x264-compressed video to HTTP clients\n");
79         fprintf(stderr, "      --x264-preset               x264 quality preset (default " X264_DEFAULT_PRESET ")\n");
80         fprintf(stderr, "      --x264-tune                 x264 tuning (default " X264_DEFAULT_TUNE ", can be blank)\n");
81         fprintf(stderr, "      --x264-speedcontrol         try to match x264 preset to available CPU speed\n");
82         fprintf(stderr, "      --x264-speedcontrol-verbose  output speedcontrol debugging statistics\n");
83         fprintf(stderr, "      --x264-bitrate              x264 bitrate (in kilobit/sec, default %d)\n",
84                 DEFAULT_X264_OUTPUT_BIT_RATE);
85         fprintf(stderr, "      --x264-vbv-bufsize          x264 VBV size (in kilobits, 0 = one-frame VBV,\n");
86         fprintf(stderr, "                                  default: same as --x264-bitrate, that is, one-second VBV)\n");
87         fprintf(stderr, "      --x264-vbv-max-bitrate      x264 local max bitrate (in kilobit/sec per --vbv-bufsize,\n");
88         fprintf(stderr, "                                  0 = no limit, default: same as --x264-bitrate, i.e., CBR)\n");
89         fprintf(stderr, "      --x264-param=NAME[,VALUE]   set any x264 parameter, for fine tuning\n");
90         fprintf(stderr, "      --http-mux=NAME             mux to use for HTTP streams (default " DEFAULT_STREAM_MUX_NAME ")\n");
91         fprintf(stderr, "      --http-audio-codec=NAME     audio codec to use for HTTP streams\n");
92         fprintf(stderr, "                                  (default is to use the same as for the recording)\n");
93         fprintf(stderr, "      --http-audio-bitrate=KBITS  audio codec bit rate to use for HTTP streams\n");
94         fprintf(stderr, "                                  (default is %d, ignored unless --http-audio-codec is set)\n",
95                 DEFAULT_AUDIO_OUTPUT_BIT_RATE / 1000);
96         fprintf(stderr, "      --http-coarse-timebase      use less timebase for HTTP (recommended for muxers\n");
97         fprintf(stderr, "                                  that handle large pts poorly, like e.g. MP4)\n");
98         fprintf(stderr, "      --flat-audio                start with most audio processing turned off\n");
99         fprintf(stderr, "                                    (can be overridden by e.g. --enable-limiter)\n");
100         fprintf(stderr, "      --gain-staging=DB           set initial gain staging to the given value\n");
101         fprintf(stderr, "                                    (--disable-gain-staging-auto)\n");
102         fprintf(stderr, "      --disable-locut             turn off locut filter (also --enable)\n");
103         fprintf(stderr, "      --disable-gain-staging-auto  turn off automatic gain staging (also --enable)\n");
104         fprintf(stderr, "      --disable-compressor        turn off regular compressor (also --enable)\n");
105         fprintf(stderr, "      --disable-limiter           turn off limiter (also --enable)\n");
106         fprintf(stderr, "      --disable-makeup-gain-auto  turn off auto-adjustment of final makeup gain (also --enable)\n");
107         fprintf(stderr, "      --disable-alsa-output       disable audio monitoring via ALSA\n");
108         fprintf(stderr, "      --no-flush-pbos             do not explicitly signal texture data uploads\n");
109         fprintf(stderr, "                                    (will give display corruption, but makes it\n");
110         fprintf(stderr, "                                    possible to run with apitrace in real time)\n");
111         fprintf(stderr, "      --print-video-latency       print out measurements of video latency on stdout\n");
112         fprintf(stderr, "      --max-input-queue-frames=FRAMES  never keep more than FRAMES frames for each card\n");
113         fprintf(stderr, "                                    (default 6, minimum 1)\n");
114         fprintf(stderr, "      --audio-queue-length-ms=MS  length of audio resampling queue (default 100.0)\n");
115         fprintf(stderr, "      --output-ycbcr-coefficients={rec601,rec709,auto}\n");
116         fprintf(stderr, "                                  Y'CbCr coefficient standard of output (default auto)\n");
117         fprintf(stderr, "                                    auto is rec601, unless --output-card is used\n");
118         fprintf(stderr, "                                    and a Rec. 709 mode (typically HD modes) is in use\n");
119         fprintf(stderr, "      --output-buffer-frames=NUM  number of frames in output buffer for --output-card,\n");
120         fprintf(stderr, "                                    can be fractional (default 6.0); note also\n");
121         fprintf(stderr, "                                    the audio queue can't be much longer than this\n");
122         fprintf(stderr, "      --output-slop-frames=NUM    if more less than this number of frames behind for\n");
123         fprintf(stderr, "                                    --output-card, try to submit anyway instead of\n");
124         fprintf(stderr, "                                    dropping the frame (default 0.5)\n");
125         fprintf(stderr, "      --timecode-stream           show timestamp and timecode in stream\n");
126         fprintf(stderr, "      --timecode-stdout           show timestamp and timecode on standard output\n");
127         fprintf(stderr, "      --10-bit-input              use 10-bit video input (requires compute shaders)\n");
128 }
129
130 void parse_flags(int argc, char * const argv[])
131 {
132         static const option long_options[] = {
133                 { "help", no_argument, 0, OPTION_HELP },
134                 { "width", required_argument, 0, 'w' },
135                 { "height", required_argument, 0, 'h' },
136                 { "num-cards", required_argument, 0, 'c' },
137                 { "output-card", required_argument, 0, 'o' },
138                 { "theme", required_argument, 0, 't' },
139                 { "theme-dir", required_argument, 0, 'I' },
140                 { "map-signal", required_argument, 0, 'm' },
141                 { "input-mapping", required_argument, 0, 'M' },
142                 { "va-display", required_argument, 0, 'v' },
143                 { "multichannel", no_argument, 0, OPTION_MULTICHANNEL },
144                 { "midi-mapping", required_argument, 0, OPTION_MIDI_MAPPING },
145                 { "fake-cards-audio", no_argument, 0, OPTION_FAKE_CARDS_AUDIO },
146                 { "http-uncompressed-video", no_argument, 0, OPTION_HTTP_UNCOMPRESSED_VIDEO },
147                 { "http-x264-video", no_argument, 0, OPTION_HTTP_X264_VIDEO },
148                 { "x264-preset", required_argument, 0, OPTION_X264_PRESET },
149                 { "x264-tune", required_argument, 0, OPTION_X264_TUNE },
150                 { "x264-speedcontrol", no_argument, 0, OPTION_X264_SPEEDCONTROL },
151                 { "x264-speedcontrol-verbose", no_argument, 0, OPTION_X264_SPEEDCONTROL_VERBOSE },
152                 { "x264-bitrate", required_argument, 0, OPTION_X264_BITRATE },
153                 { "x264-vbv-bufsize", required_argument, 0, OPTION_X264_VBV_BUFSIZE },
154                 { "x264-vbv-max-bitrate", required_argument, 0, OPTION_X264_VBV_MAX_BITRATE },
155                 { "x264-param", required_argument, 0, OPTION_X264_PARAM },
156                 { "http-mux", required_argument, 0, OPTION_HTTP_MUX },
157                 { "http-coarse-timebase", no_argument, 0, OPTION_HTTP_COARSE_TIMEBASE },
158                 { "http-audio-codec", required_argument, 0, OPTION_HTTP_AUDIO_CODEC },
159                 { "http-audio-bitrate", required_argument, 0, OPTION_HTTP_AUDIO_BITRATE },
160                 { "flat-audio", no_argument, 0, OPTION_FLAT_AUDIO },
161                 { "gain-staging", required_argument, 0, OPTION_GAIN_STAGING },
162                 { "disable-locut", no_argument, 0, OPTION_DISABLE_LOCUT },
163                 { "enable-locut", no_argument, 0, OPTION_ENABLE_LOCUT },
164                 { "disable-gain-staging-auto", no_argument, 0, OPTION_DISABLE_GAIN_STAGING_AUTO },
165                 { "enable-gain-staging-auto", no_argument, 0, OPTION_ENABLE_GAIN_STAGING_AUTO },
166                 { "disable-compressor", no_argument, 0, OPTION_DISABLE_COMPRESSOR },
167                 { "enable-compressor", no_argument, 0, OPTION_ENABLE_COMPRESSOR },
168                 { "disable-limiter", no_argument, 0, OPTION_DISABLE_LIMITER },
169                 { "enable-limiter", no_argument, 0, OPTION_ENABLE_LIMITER },
170                 { "disable-makeup-gain-auto", no_argument, 0, OPTION_DISABLE_MAKEUP_GAIN_AUTO },
171                 { "enable-makeup-gain-auto", no_argument, 0, OPTION_ENABLE_MAKEUP_GAIN_AUTO },
172                 { "disable-alsa-output", no_argument, 0, OPTION_DISABLE_ALSA_OUTPUT },
173                 { "no-flush-pbos", no_argument, 0, OPTION_NO_FLUSH_PBOS },
174                 { "print-video-latency", no_argument, 0, OPTION_PRINT_VIDEO_LATENCY },
175                 { "max-input-queue-frames", required_argument, 0, OPTION_MAX_INPUT_QUEUE_FRAMES },
176                 { "audio-queue-length-ms", required_argument, 0, OPTION_AUDIO_QUEUE_LENGTH_MS },
177                 { "output-ycbcr-coefficients", required_argument, 0, OPTION_OUTPUT_YCBCR_COEFFICIENTS },
178                 { "output-buffer-frames", required_argument, 0, OPTION_OUTPUT_BUFFER_FRAMES },
179                 { "output-slop-frames", required_argument, 0, OPTION_OUTPUT_SLOP_FRAMES },
180                 { "timecode-stream", no_argument, 0, OPTION_TIMECODE_STREAM },
181                 { "timecode-stdout", no_argument, 0, OPTION_TIMECODE_STDOUT },
182                 { "10-bit-input", no_argument, 0, OPTION_10_BIT_INPUT },
183                 { 0, 0, 0, 0 }
184         };
185         vector<string> theme_dirs;
186         string output_ycbcr_coefficients = "auto";
187         for ( ;; ) {
188                 int option_index = 0;
189                 int c = getopt_long(argc, argv, "c:t:I:v:m:M:w:h:", long_options, &option_index);
190
191                 if (c == -1) {
192                         break;
193                 }
194                 switch (c) {
195                 case 'w':
196                         global_flags.width = atoi(optarg);
197                         break;
198                 case 'h':
199                         global_flags.height = atoi(optarg);
200                         break;
201                 case 'c':
202                         global_flags.num_cards = atoi(optarg);
203                         break;
204                 case 'o':
205                         global_flags.output_card = atoi(optarg);
206                         break;
207                 case 't':
208                         global_flags.theme_filename = optarg;
209                         break;
210                 case 'I':
211                         theme_dirs.push_back(optarg);
212                         break;
213                 case 'm': {
214                         char *ptr = strchr(optarg, ',');
215                         if (ptr == nullptr) {
216                                 fprintf(stderr, "ERROR: Invalid argument '%s' to --map-signal (needs a signal and a card number, separated by comma)\n", optarg);
217                                 exit(1);
218                         }
219                         *ptr = '\0';
220                         const int signal_num = atoi(optarg);
221                         const int card_num = atoi(ptr + 1);
222                         if (global_flags.default_stream_mapping.count(signal_num)) {
223                                 fprintf(stderr, "ERROR: Signal %d already mapped to card %d\n",
224                                         signal_num, global_flags.default_stream_mapping[signal_num]);
225                                 exit(1);
226                         }
227                         global_flags.default_stream_mapping[signal_num] = card_num;
228                         break;
229                 }
230                 case 'M':
231                         global_flags.input_mapping_filename = optarg;
232                         break;
233                 case OPTION_MULTICHANNEL:
234                         global_flags.multichannel_mapping_mode = true;
235                         break;
236                 case 'v':
237                         global_flags.va_display = optarg;
238                         break;
239                 case OPTION_MIDI_MAPPING:
240                         global_flags.midi_mapping_filename = optarg;
241                         global_flags.multichannel_mapping_mode = true;
242                         break;
243                 case OPTION_FAKE_CARDS_AUDIO:
244                         global_flags.fake_cards_audio = true;
245                         break;
246                 case OPTION_HTTP_UNCOMPRESSED_VIDEO:
247                         global_flags.uncompressed_video_to_http = true;
248                         break;
249                 case OPTION_HTTP_MUX:
250                         global_flags.stream_mux_name = optarg;
251                         break;
252                 case OPTION_HTTP_COARSE_TIMEBASE:
253                         global_flags.stream_coarse_timebase = true;
254                         break;
255                 case OPTION_HTTP_AUDIO_CODEC:
256                         global_flags.stream_audio_codec_name = optarg;
257                         break;
258                 case OPTION_HTTP_AUDIO_BITRATE:
259                         global_flags.stream_audio_codec_bitrate = atoi(optarg) * 1000;
260                         break;
261                 case OPTION_HTTP_X264_VIDEO:
262                         global_flags.x264_video_to_http = true;
263                         break;
264                 case OPTION_X264_PRESET:
265                         global_flags.x264_preset = optarg;
266                         break;
267                 case OPTION_X264_TUNE:
268                         global_flags.x264_tune = optarg;
269                         break;
270                 case OPTION_X264_SPEEDCONTROL:
271                         global_flags.x264_speedcontrol = true;
272                         break;
273                 case OPTION_X264_SPEEDCONTROL_VERBOSE:
274                         global_flags.x264_speedcontrol_verbose = true;
275                         break;
276                 case OPTION_X264_BITRATE:
277                         global_flags.x264_bitrate = atoi(optarg);
278                         break;
279                 case OPTION_X264_VBV_BUFSIZE:
280                         global_flags.x264_vbv_buffer_size = atoi(optarg);
281                         break;
282                 case OPTION_X264_VBV_MAX_BITRATE:
283                         global_flags.x264_vbv_max_bitrate = atoi(optarg);
284                         break;
285                 case OPTION_X264_PARAM:
286                         global_flags.x264_extra_param.push_back(optarg);
287                         break;
288                 case OPTION_FLAT_AUDIO:
289                         // If --flat-audio is given, turn off everything that messes with the sound,
290                         // except the final makeup gain.
291                         global_flags.locut_enabled = false;
292                         global_flags.gain_staging_auto = false;
293                         global_flags.compressor_enabled = false;
294                         global_flags.limiter_enabled = false;
295                         break;
296                 case OPTION_GAIN_STAGING:
297                         global_flags.initial_gain_staging_db = atof(optarg);
298                         global_flags.gain_staging_auto = false;
299                         break;
300                 case OPTION_DISABLE_LOCUT:
301                         global_flags.locut_enabled = false;
302                         break;
303                 case OPTION_ENABLE_LOCUT:
304                         global_flags.locut_enabled = true;
305                         break;
306                 case OPTION_DISABLE_GAIN_STAGING_AUTO:
307                         global_flags.gain_staging_auto = false;
308                         break;
309                 case OPTION_ENABLE_GAIN_STAGING_AUTO:
310                         global_flags.gain_staging_auto = true;
311                         break;
312                 case OPTION_DISABLE_COMPRESSOR:
313                         global_flags.compressor_enabled = false;
314                         break;
315                 case OPTION_ENABLE_COMPRESSOR:
316                         global_flags.compressor_enabled = true;
317                         break;
318                 case OPTION_DISABLE_LIMITER:
319                         global_flags.limiter_enabled = false;
320                         break;
321                 case OPTION_ENABLE_LIMITER:
322                         global_flags.limiter_enabled = true;
323                         break;
324                 case OPTION_DISABLE_MAKEUP_GAIN_AUTO:
325                         global_flags.final_makeup_gain_auto = false;
326                         break;
327                 case OPTION_ENABLE_MAKEUP_GAIN_AUTO:
328                         global_flags.final_makeup_gain_auto = true;
329                         break;
330                 case OPTION_DISABLE_ALSA_OUTPUT:
331                         global_flags.enable_alsa_output = false;
332                         break;
333                 case OPTION_NO_FLUSH_PBOS:
334                         global_flags.flush_pbos = false;
335                         break;
336                 case OPTION_PRINT_VIDEO_LATENCY:
337                         global_flags.print_video_latency = true;
338                         break;
339                 case OPTION_MAX_INPUT_QUEUE_FRAMES:
340                         global_flags.max_input_queue_frames = atoi(optarg);
341                         break;
342                 case OPTION_AUDIO_QUEUE_LENGTH_MS:
343                         global_flags.audio_queue_length_ms = atof(optarg);
344                         break;
345                 case OPTION_OUTPUT_YCBCR_COEFFICIENTS:
346                         output_ycbcr_coefficients = optarg;
347                         break;
348                 case OPTION_OUTPUT_BUFFER_FRAMES:
349                         global_flags.output_buffer_frames = atof(optarg);
350                         break;
351                 case OPTION_OUTPUT_SLOP_FRAMES:
352                         global_flags.output_slop_frames = atof(optarg);
353                         break;
354                 case OPTION_TIMECODE_STREAM:
355                         global_flags.display_timecode_in_stream = true;
356                         break;
357                 case OPTION_TIMECODE_STDOUT:
358                         global_flags.display_timecode_on_stdout = true;
359                         break;
360                 case OPTION_10_BIT_INPUT:
361                         global_flags.ten_bit_input = true;
362                         break;
363                 case OPTION_HELP:
364                         usage();
365                         exit(0);
366                 default:
367                         fprintf(stderr, "Unknown option '%s'\n", argv[option_index]);
368                         fprintf(stderr, "\n");
369                         usage();
370                         exit(1);
371                 }
372         }
373
374         if (global_flags.uncompressed_video_to_http &&
375             global_flags.x264_video_to_http) {
376                 fprintf(stderr, "ERROR: --http-uncompressed-video and --http-x264-video are mutually incompatible\n");
377                 exit(1);
378         }
379         if (global_flags.num_cards <= 0) {
380                 fprintf(stderr, "ERROR: --num-cards must be at least 1\n");
381                 exit(1);
382         }
383         if (global_flags.output_card < -1 ||
384             global_flags.output_card >= global_flags.num_cards) {
385                 fprintf(stderr, "ERROR: --output-card points to a nonexistant card\n");
386                 exit(1);
387         }
388         if (global_flags.x264_speedcontrol) {
389                 if (!global_flags.x264_preset.empty() && global_flags.x264_preset != "faster") {
390                         fprintf(stderr, "WARNING: --x264-preset is overridden by --x264-speedcontrol (implicitly uses \"faster\" as base preset)\n");
391                 }
392                 global_flags.x264_preset = "faster";
393         } else if (global_flags.x264_preset.empty()) {
394                 global_flags.x264_preset = X264_DEFAULT_PRESET;
395         }
396         if (!theme_dirs.empty()) {
397                 global_flags.theme_dirs = theme_dirs;
398         }
399
400         // In reality, we could probably do with any even value (we subsample
401         // by two in some places), but it's better to be on the safe side
402         // wrt. video codecs and such. (I'd set 16 if I could, but 1080 isn't
403         // divisible by 16.)
404         if (global_flags.width <= 0 || (global_flags.width % 8) != 0 ||
405             global_flags.height <= 0 || (global_flags.height % 8) != 0) {
406                 fprintf(stderr, "ERROR: --width and --height must be positive integers divisible by 8\n");
407                 exit(1);
408         }
409
410         for (pair<int, int> mapping : global_flags.default_stream_mapping) {
411                 if (mapping.second >= global_flags.num_cards) {
412                         fprintf(stderr, "ERROR: Signal %d mapped to card %d, which doesn't exist (try adjusting --num-cards)\n",
413                                 mapping.first, mapping.second);
414                         exit(1);
415                 }
416         }
417
418         // Rec. 709 would be the sane thing to do, but it seems many players
419         // just default to BT.601 coefficients no matter what. We _do_ set
420         // the right flags, so that a player that works properly doesn't have
421         // to guess, but it's frequently ignored. See discussions
422         // in e.g. https://trac.ffmpeg.org/ticket/4978; the situation with
423         // browsers is complicated and depends on things like hardware acceleration
424         // (https://bugs.chromium.org/p/chromium/issues/detail?id=333619 for
425         // extensive discussion). VLC generally fixed this as part of 3.0.0
426         // (see e.g. https://github.com/videolan/vlc/commit/bc71288b2e38c07d6921472824b92eef1aa85f7e
427         // and https://github.com/videolan/vlc/commit/c3fc2683a9cde1d42674ebf9935dced05733a215),
428         // but earlier versions were pretty random.
429         //
430         // On the other hand, HDMI/SDI output typically requires Rec. 709 for
431         // HD resolutions (with no way of signaling anything else), which is
432         // a conflicting demand. In this case, we typically let the HDMI/SDI
433         // output win if it is active, but the user can override this.
434         if (output_ycbcr_coefficients == "auto") {
435                 // Essentially: BT.709 if HDMI/SDI output is on, otherwise BT.601.
436                 global_flags.ycbcr_rec709_coefficients = false;
437                 global_flags.ycbcr_auto_coefficients = true;
438         } else if (output_ycbcr_coefficients == "rec709") {
439                 global_flags.ycbcr_rec709_coefficients = true;
440                 global_flags.ycbcr_auto_coefficients = false;
441         } else if (output_ycbcr_coefficients == "rec601") {
442                 global_flags.ycbcr_rec709_coefficients = false;
443                 global_flags.ycbcr_auto_coefficients = false;
444         } else {
445                 fprintf(stderr, "ERROR: --output-ycbcr-coefficients must be “rec601”, “rec709” or “auto”\n");
446                 exit(1);
447         }
448
449         if (global_flags.output_buffer_frames < 0.0f) {
450                 // Actually, even zero probably won't make sense; there is some internal
451                 // delay to the card.
452                 fprintf(stderr, "ERROR: --output-buffer-frames can't be negative.\n");
453                 exit(1);
454         }
455         if (global_flags.output_slop_frames < 0.0f) {
456                 fprintf(stderr, "ERROR: --output-slop-frames can't be negative.\n");
457                 exit(1);
458         }
459         if (global_flags.max_input_queue_frames < 1) {
460                 fprintf(stderr, "ERROR: --max-input-queue-frames must be at least 1.\n");
461                 exit(1);
462         }
463         if (global_flags.max_input_queue_frames > 10) {
464                 fprintf(stderr, "WARNING: --max-input-queue-frames has little effect over 10.\n");
465         }
466 }