Home
last modified time | relevance | path

Searched refs:MyOptIndex (Results 1 – 6 of 6) sorted by relevance

/drivers/peripheral/codec/test/demo/v2.0/src/
Dcommand_parse.cpp20 {"width", required_argument, nullptr, static_cast<int>(MyOptIndex::OPT_INDEX_WIDTH)},
21 {"height", required_argument, nullptr, static_cast<int>(MyOptIndex::OPT_INDEX_HEIGHT)},
22 {"in", required_argument, nullptr, static_cast<int>(MyOptIndex::OPT_INDEX_INPUT)},
23 {"out", required_argument, nullptr, static_cast<int>(MyOptIndex::OPT_INDEX_OUTPUT)},
24 {"color", optional_argument, nullptr, static_cast<int>(MyOptIndex::OPT_INDEX_COLOR)},
25 {"nocopy", no_argument, nullptr, static_cast<int>(MyOptIndex::OPT_INDEX_BUFFER_HANDLE)},
26 {"HEVC", no_argument, nullptr, static_cast<int>(MyOptIndex::OPT_INDEX_HEVC)},
27 {"MPEG4", no_argument, nullptr, static_cast<int>(MyOptIndex::OPT_INDEX_MPEG4)},
28 {"VP9", no_argument, nullptr, static_cast<int>(MyOptIndex::OPT_INDEX_VP9)},
29 {"help", no_argument, nullptr, static_cast<int>(MyOptIndex::OPT_INDEX_HELP)},
[all …]
/drivers/peripheral/codec/test/demo/idl/src/
Dcommand_parse.cpp18 enum class MyOptIndex { enum
33 {"width", required_argument, 0, static_cast<int>(MyOptIndex::OPT_INDEX_WIDTH)}, in Parse()
34 {"height", required_argument, 0, static_cast<int>(MyOptIndex::OPT_INDEX_HEIGHT)}, in Parse()
35 {"in", required_argument, 0, static_cast<int>(MyOptIndex::OPT_INDEX_INPUT)}, in Parse()
36 {"out", required_argument, 0, static_cast<int>(MyOptIndex::OPT_INDEX_OUTPUT)}, in Parse()
37 {"nocopy", no_argument, nullptr, static_cast<int>(MyOptIndex::OPT_INDEX_BUFFER_HANDLE)}, in Parse()
38 {"HEVC", no_argument, nullptr, static_cast<int>(MyOptIndex::OPT_INDEX_HEVC)}, in Parse()
39 {"help", no_argument, nullptr, static_cast<int>(MyOptIndex::OPT_INDEX_HELP)}, in Parse()
40 {0, 0, 0, static_cast<int>(MyOptIndex::OPT_INDEX_UNKONWN)} in Parse()
46 MyOptIndex index = (MyOptIndex)c; in Parse()
[all …]
/drivers/peripheral/codec/test/demo/adapter/src/
Dcommand_adapter_parse.cpp20 enum class MyOptIndex { enum
37 {"width", required_argument, 0, (int)MyOptIndex::OPT_INDEX_WIDTH }, in Parse()
38 {"height", required_argument, 0, (int)MyOptIndex::OPT_INDEX_HEIGHT }, in Parse()
39 {"in", required_argument, 0, (int)MyOptIndex::OPT_INDEX_INPUT }, in Parse()
40 {"out", required_argument, 0, (int)MyOptIndex::OPT_INDEX_OUTPUT }, in Parse()
41 {"help", no_argument, NULL, (int)MyOptIndex::OPT_INDEX_HELP }, in Parse()
42 {0, 0, 0, (int)MyOptIndex::OPT_INDEX_UNKONWN} in Parse()
48 MyOptIndex index = (MyOptIndex)c; in Parse()
50 case MyOptIndex::OPT_INDEX_BUFFER_HANDLE: in Parse()
53 case MyOptIndex::OPT_INDEX_HEVC: in Parse()
[all …]
/drivers/peripheral/codec/test/demo/jpeg/src/
Dcommand_parse.cpp21 {"width", required_argument, nullptr, static_cast<int>(MyOptIndex::OPT_INDEX_WIDTH)},
22 {"height", required_argument, nullptr, static_cast<int>(MyOptIndex::OPT_INDEX_HEIGHT)},
23 {"in", required_argument, nullptr, static_cast<int>(MyOptIndex::OPT_INDEX_INPUT)},
24 {"out", required_argument, nullptr, static_cast<int>(MyOptIndex::OPT_INDEX_OUTPUT)},
25 {"help", no_argument, nullptr, static_cast<int>(MyOptIndex::OPT_INDEX_HELP)},
26 {nullptr, 0, nullptr, static_cast<int>(MyOptIndex::OPT_INDEX_UNKONWN)}};
37 MyOptIndex index = static_cast<MyOptIndex>(c); in Parse()
39 case MyOptIndex::OPT_INDEX_INPUT: in Parse()
42 case MyOptIndex::OPT_INDEX_OUTPUT: in Parse()
45 case MyOptIndex::OPT_INDEX_WIDTH: in Parse()
[all …]
/drivers/peripheral/codec/test/demo/v2.0/include/
Dcommand_parse.h21 enum class MyOptIndex { enum
54 void ParseCodingType(const MyOptIndex index, CommandOpt &opt);
/drivers/peripheral/codec/test/demo/jpeg/include/
Dcommand_parse.h22 enum class MyOptIndex { enum