summaryrefslogtreecommitdiff
path: root/v4l2-mfc-encoder/args.h
diff options
context:
space:
mode:
Diffstat (limited to 'v4l2-mfc-encoder/args.h')
-rw-r--r--v4l2-mfc-encoder/args.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/v4l2-mfc-encoder/args.h b/v4l2-mfc-encoder/args.h
index 757cb2f..f63b99e 100644
--- a/v4l2-mfc-encoder/args.h
+++ b/v4l2-mfc-encoder/args.h
@@ -25,6 +25,8 @@
#include "common.h"
+#define MAX_CTRLS 100
+
struct options {
char *in_name;
char *mfc_name;
@@ -34,7 +36,8 @@ struct options {
int height;
int duration;
int rate;
- int bitrate;
+ int nctrls;
+ int ctrls[MAX_CTRLS][2];
};
void print_usage(char const *name);