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

Commit 44d9d63e authored by Yo Chiang's avatar Yo Chiang
Browse files

DO NOT MERGE Disable example codec2-service by default

`android.hardware.media.c2@1.0-service` is an example codec2 service,
developers who wish to implement codec2 can use this code as a skeleton.

`android.hardware.media.c2@1.0-service` is not to be used directly
without customization. Mark it as "enabled: false" so it wouldn't affect
build.

Bug: 7456955
Bug: 159780061
Test: TH
Change-Id: I4a1acb4754b51c5d792dae3c96a4d6eaa5c01016
parent 7c44826e
Loading
Loading
Loading
Loading
+9 −0
Original line number Diff line number Diff line
// This is an example of an empty Codec2.0 service.
//
// To use this, make a copy of this whole directory and rename modules
// accordingly. The contents of "vendor.cpp" and files in the subdirectory
// "seccomp_policy" may also need to be modified.

cc_binary {
    name: "android.hardware.media.c2@1.0-service",
    defaults: ["hidl_defaults"],
@@ -33,5 +39,8 @@ cc_binary {
    },

    compile_multilib: "32",

    // Remove this line to enable this module.
    enabled: false,
}