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

Commit 1c7bf573 authored by Fyodor Kyslov's avatar Fyodor Kyslov Committed by Android (Google) Code Review
Browse files

Merge changes from topic "AV1Enc"

* changes:
  AV1 Encoder. Fixing idents
  Add AV1 Encoder to the registry and XMLs
  Implement AV1 Encoder via Codec2 interface
parents 734fd6a9 a056c626
Loading
Loading
Loading
Loading
+20 −0
Original line number Diff line number Diff line
@@ -23,3 +23,23 @@ cc_library {
    srcs: ["C2SoftAomDec.cpp"],
    static_libs: ["libaom"],
}

cc_library {
    name: "libcodec2_soft_av1enc",
    defaults: [
        "libcodec2_soft-defaults",
        "libcodec2_soft_sanitize_all-defaults",
    ],

    static_libs: ["libaom"],

    srcs: ["C2SoftAomEnc.cpp"],

    export_include_dirs: ["."],

    apex_available: [
        "//apex_available:platform",
        "com.android.media.swcodec",
    ],

}
Loading