From 5e2130f6f7d4c92aaef0d96cec26ca1264417b49 Mon Sep 17 00:00:00 2001 From: jasker5183 Date: Mon, 8 Feb 2021 18:28:47 +0000 Subject: [PATCH] v4l2-monitor.conf Formatting/Punctuation Fixes --- src/daemon/media-session.d/v4l2-monitor.conf | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) diff --git a/src/daemon/media-session.d/v4l2-monitor.conf b/src/daemon/media-session.d/v4l2-monitor.conf index 882d5af03..397ead2de 100644 --- a/src/daemon/media-session.d/v4l2-monitor.conf +++ b/src/daemon/media-session.d/v4l2-monitor.conf @@ -1,21 +1,22 @@ -# v4l2-monitor config file +# V4L2 monitor config file # + properties = { } rules = [ - # an array of matches/actions to evaluate + # An array of matches/actions to evaluate. { - # rules for matching a device or node. It is an array of + # Rules for matching a device or node. It is an array of # properties that all need to match the regexp. If any of the # matches work, the actions are executed for the object. matches = [ { - # this matches all devices + # This matches all devices. device.name = "~v4l2_device.*" } ] actions = { - # actions can update properties on the matched object. + # Actions can update properties on the matched object. update-props = { #device.nick = "My Device" } @@ -24,11 +25,11 @@ rules = [ { matches = [ { - # matches all sinks + # Matches all sinks. node.name = "~v4l2_input.*" } { - # matches all sources + # Matches all sources. node.name = "~v4l2_output.*" } ]