Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit f7b3e2e2 authored by Iliyan Malchev's avatar Iliyan Malchev
Browse files

libcameraservice: call put_parameters on camera HAL



Change-Id: I492d1034ade50f9e157141debaa9783a90a04a91
Signed-off-by: default avatarIliyan Malchev <malchev@google.com>
parent 804b3d76
Loading
Loading
Loading
Loading
+4 −1
Original line number Diff line number Diff line
@@ -386,6 +386,9 @@ public:
        if (mDevice->ops->get_parameters) {
            char *temp = mDevice->ops->get_parameters(mDevice);
            String8 str_parms(temp);
            if (mDevice->ops->put_parameters)
                mDevice->ops->put_parameters(mDevice, temp);
            else
                free(temp);
            parms.unflatten(str_parms);
        }