summaryrefslogtreecommitdiff
path: root/stan/v4l2-decode/args.c
blob: d78f710b743db6804f81ce5f931ab5ff14129a21 (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
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
/*
 * V4L2 Codec decoding example application
 * Kamil Debski <k.debski@samsung.com>
 *
 * Argument parser
 *
 * Copyright 2012 Samsung Electronics Co., Ltd.
 * Copyright (c) 2015 Linaro Ltd.
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 * http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 *
 */

#include <stdio.h>
#include <string.h>
#include <unistd.h>
#include <stdlib.h>
#include <linux/videodev2.h>

#include "common.h"
#include "parser.h"


void print_usage(char *name)
{
	printf("Usage:\n");
	printf("\t%s\n", name);
	printf("\t-c <codec> - The codec of the encoded stream, "
	       "available codecs: mpeg4, h264\n");
	printf("\t-d use dmabuf instead of mmap\n");
	printf("\t-i <file> - Input file name\n");
	printf("\t-m <device> - video decoder device (e.g. /dev/video0)\n");
	printf("\t-w video width\n");
	printf("\t-h video height\n");
	printf("\t-f save frames on disk\n");

	printf("\n");
}

int get_codec(char *str)
{
	if (strncasecmp("mpeg4", str, 5) == 0) {
		return V4L2_PIX_FMT_MPEG4;
	} else if (strncasecmp("h264", str, 5) == 0) {
		return V4L2_PIX_FMT_H264;
	} else if (strncasecmp("h263", str, 5) == 0) {
		return V4L2_PIX_FMT_H263;
	} else if (strncasecmp("xvid", str, 5) == 0) {
		return V4L2_PIX_FMT_XVID;
	} else if (strncasecmp("mpeg2", str, 5) == 0) {
		return V4L2_PIX_FMT_MPEG2;
	} else if (strncasecmp("mpeg1", str, 5) == 0) {
		return V4L2_PIX_FMT_MPEG1;
	}
	return 0;
}

int parse_args(struct instance *i, int argc, char **argv)
{
	int c;

	while ((c = getopt(argc, argv, "w:h:c:di:mf:")) != -1) {
		switch (c) {
		case 'c':
			i->codec = get_codec(optarg);
			break;
		case 'd':
			i->video.cap_use_dmabuf = 1;
			break;
		case 'i':
			i->file_name = optarg;
			break;
		case 'm':
			i->video.name = optarg;
			break;
		case 'w':
			i->width = atoi(optarg);
			break;
		case 'h':
			i->height = atoi(optarg);
			break;
		case 'f':
			i->save_frames = 1;
			i->save_path = optarg;
			break;
		default:
			err("Bad argument");
			return -1;
		}
	}

	if (!i->file_name) {
		err("The following arguments are required: -i -m -c");
		return -1;
	}

	if (!i->codec) {
		err("Unknown or not set codec (-c)");
		return -1;
	}

	return 0;
}