This is an automatic generated email to let you know that the following patch were queued at the http://git.linuxtv.org/cgit.cgi/v4l-utils.git tree:
Subject: mc_nextgen_test: enable ALSA interfaces and add new alsa types Author: Mauro Carvalho Chehab <[email protected]> Date: Sat Mar 5 08:56:07 2016 -0300 Two extra ALSA interface types were added on the latest version of the ALSA patchset, with got merged upstream. Add support for them. Signed-off-by: Mauro Carvalho Chehab <[email protected]> contrib/test/mc_nextgen_test.c | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) --- http://git.linuxtv.org/cgit.cgi/v4l-utils.git/commit/?id=1388c0a35da467a71f2e9d8a30f9e79e8d4eabff diff --git a/contrib/test/mc_nextgen_test.c b/contrib/test/mc_nextgen_test.c index 22f3240b20ad..a62fd13efd47 100644 --- a/contrib/test/mc_nextgen_test.c +++ b/contrib/test/mc_nextgen_test.c @@ -180,6 +180,7 @@ static inline const char *intf_type(uint32_t intf_type) return "CA"; case MEDIA_INTF_T_DVB_NET: return "dvbnet"; + case MEDIA_INTF_T_V4L_VIDEO: return "video"; case MEDIA_INTF_T_V4L_VBI: @@ -190,7 +191,7 @@ static inline const char *intf_type(uint32_t intf_type) return "v4l2-subdev"; case MEDIA_INTF_T_V4L_SWRADIO: return "swradio"; -#if 0 + case MEDIA_INTF_T_ALSA_PCM_CAPTURE: return "pcm-capture"; case MEDIA_INTF_T_ALSA_PCM_PLAYBACK: @@ -203,7 +204,10 @@ static inline const char *intf_type(uint32_t intf_type) return "rawmidi"; case MEDIA_INTF_T_ALSA_HWDEP: return "hwdep"; -#endif + case MEDIA_INTF_T_ALSA_SEQUENCER: + return "sequencer"; + case MEDIA_INTF_T_ALSA_TIMER: + return "ALSA timer"; default: return "unknown_intf"; } _______________________________________________ linuxtv-commits mailing list [email protected] http://www.linuxtv.org/cgi-bin/mailman/listinfo/linuxtv-commits
