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

Commit 308f2b28 authored by Andy Hung's avatar Andy Hung Committed by Gerrit Code Review
Browse files

Merge "Remove modules that depended on webrtc_legacy"

parents 731c31ec f683462e
Loading
Loading
Loading
Loading
+0 −30
Original line number Diff line number Diff line
// audio preprocessing wrapper
cc_library_shared {
    name: "libaudiopreprocessing_legacy",

    vendor: true,

    relative_install_path: "soundfx",

    srcs: ["PreProcessing.cpp"],

    shared_libs: [
        "libwebrtc_audio_preprocessing",
        "libspeexresampler",
        "libutils",
        "liblog",
    ],

    cflags: [
        "-DWEBRTC_POSIX",
        "-DWEBRTC_LEGACY",
        "-fvisibility=hidden",
        "-Wall",
        "-Werror",
    ],

    header_libs: [
        "libaudioeffects",
        "libhardware_headers",
    ],
}

cc_library_shared {
    name: "libaudiopreprocessing",
    vendor: true,
Loading