diff options
author | Mauro Carvalho Chehab <mchehab@osg.samsung.com> | 2016-01-27 17:24:11 -0200 |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab@osg.samsung.com> | 2016-01-28 08:22:14 -0200 |
commit | 430f1296ef93771390b06d62fa9ecbeef3c2ce20 (patch) | |
tree | 8ee9290b14492b0f079fda8d0a94bdf7904dbdec /contrib | |
parent | 9cdbdecf0c64f5e6b8da7d2ae019cfa8ab972cef (diff) |
mc_nextgen_test: add support for IF decoders
This is needed to describe tuners like Philips MK3 ones
and by audio IF decoders like msp3400.
Signed-off-by: Mauro Carvalho Chehab <mchehab@osg.samsung.com>
Diffstat (limited to 'contrib')
-rw-r--r-- | contrib/test/mc_nextgen_test.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/contrib/test/mc_nextgen_test.c b/contrib/test/mc_nextgen_test.c index 14a0917b..92685c9e 100644 --- a/contrib/test/mc_nextgen_test.c +++ b/contrib/test/mc_nextgen_test.c @@ -240,6 +240,10 @@ static inline const char *ent_function(uint32_t function) return "ATV decoder"; case MEDIA_ENT_F_TUNER: return "tuner"; + case MEDIA_ENT_F_IF_VID_DECODER: + return "IF video decoder"; + case MEDIA_ENT_F_IF_AUD_DECODER: + return "IF sound decoder"; case MEDIA_ENT_F_V4L2_SUBDEV_UNKNOWN: default: return "unknown entity type"; |