Message ID | 20220620014305.26778-11-laurent.pinchart@ideasonboard.com |
---|---|
State | Accepted |
Headers | show |
Series |
|
Related | show |
Hi Laurent, On Mon, Jun 20, 2022 at 04:43:03AM +0300, Laurent Pinchart wrote: > Add a skeleton for the IMX219 tuning file, with data for the BLC > algorithm. > > Signed-off-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com> Reviewed-by: Paul Elder <paul.elder@ideasonboard.com> > --- > src/ipa/rkisp1/data/imx219.yaml | 13 +++++++++++++ > src/ipa/rkisp1/data/meson.build | 1 + > 2 files changed, 14 insertions(+) > create mode 100644 src/ipa/rkisp1/data/imx219.yaml > > diff --git a/src/ipa/rkisp1/data/imx219.yaml b/src/ipa/rkisp1/data/imx219.yaml > new file mode 100644 > index 000000000000..232d8ae8d58b > --- /dev/null > +++ b/src/ipa/rkisp1/data/imx219.yaml > @@ -0,0 +1,13 @@ > +# SPDX-License-Identifier: CC0-1.0 > +%YAML 1.2 > +--- > +version: 1 > +algorithms: > + - Agc: > + - Awb: > + - BlackLevelCorrection: > + R: 256 > + Gr: 256 > + Gb: 256 > + B: 256 > +... > diff --git a/src/ipa/rkisp1/data/meson.build b/src/ipa/rkisp1/data/meson.build > index e5b945966625..53ef7fe28e1d 100644 > --- a/src/ipa/rkisp1/data/meson.build > +++ b/src/ipa/rkisp1/data/meson.build > @@ -1,6 +1,7 @@ > # SPDX-License-Identifier: CC0-1.0 > > conf_files = files([ > + 'imx219.yaml', > 'uncalibrated.yaml', > ]) >
diff --git a/src/ipa/rkisp1/data/imx219.yaml b/src/ipa/rkisp1/data/imx219.yaml new file mode 100644 index 000000000000..232d8ae8d58b --- /dev/null +++ b/src/ipa/rkisp1/data/imx219.yaml @@ -0,0 +1,13 @@ +# SPDX-License-Identifier: CC0-1.0 +%YAML 1.2 +--- +version: 1 +algorithms: + - Agc: + - Awb: + - BlackLevelCorrection: + R: 256 + Gr: 256 + Gb: 256 + B: 256 +... diff --git a/src/ipa/rkisp1/data/meson.build b/src/ipa/rkisp1/data/meson.build index e5b945966625..53ef7fe28e1d 100644 --- a/src/ipa/rkisp1/data/meson.build +++ b/src/ipa/rkisp1/data/meson.build @@ -1,6 +1,7 @@ # SPDX-License-Identifier: CC0-1.0 conf_files = files([ + 'imx219.yaml', 'uncalibrated.yaml', ])
Add a skeleton for the IMX219 tuning file, with data for the BLC algorithm. Signed-off-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com> --- src/ipa/rkisp1/data/imx219.yaml | 13 +++++++++++++ src/ipa/rkisp1/data/meson.build | 1 + 2 files changed, 14 insertions(+) create mode 100644 src/ipa/rkisp1/data/imx219.yaml