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

Commit d0a41af2 authored by Jakub Pawlowski's avatar Jakub Pawlowski
Browse files

Move lc3_enc -> lc3

This folder will contain LC3 decoder too.

Bug: 150670922
Change-Id: I8ea21f44813c1c388e8ee2fd6190331d180b60db
parent ea49b3c9
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -516,7 +516,7 @@ cc_test {
        "libbt-protos-lite",
        "libosi",
        "liblc3codec",
        "liblc3encoder",
        "liblc3",
    ],
    sanitize: {
        cfi: true,
+1 −1
Original line number Diff line number Diff line
@@ -34,7 +34,7 @@
#include "device/include/controller.h"
#include "devices.h"
#include "embdrv/lc3_dec/Api/Lc3Decoder.hpp"
#include "embdrv/lc3_enc/include/lc3.h"
#include "embdrv/lc3/include/lc3.h"
#include "gatt/bta_gattc_int.h"
#include "le_audio_types.h"
#include "osi/include/osi.h"
+1 −1
Original line number Diff line number Diff line
@@ -244,7 +244,7 @@ cc_test {
        "libFraunhoferAAC",
        "libg722codec",
        "liblc3codec",
        "liblc3encoder",
        "liblc3",
        "libbtdevice",
        "libbt-hci",
        "libudrv-uipc",
+3 −3
Original line number Diff line number Diff line
@@ -8,7 +8,7 @@ package {
}

cc_library_static {
    name: "liblc3encoder",
    name: "liblc3",
    host_supported: true,
    apex_available: [

@@ -48,13 +48,13 @@ cc_library_static {
}

cc_fuzz {
  name: "liblc3encoder_fuzzer",
  name: "liblc3_fuzzer",

  srcs: [
    "fuzzer/liblc3encoder_fuzzer.cpp",
  ],

  static_libs: [
    "liblc3encoder",
    "liblc3",
  ],
}
Loading