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

Commit 05074020 authored by Chris Manton's avatar Chris Manton
Browse files

legacy: stack: Properly include stack/include/bt_hdr

Bug: 197478351
Tag: #refactor
Test: gd/cert/run

Change-Id: I028b984fc6262ef8905a84864bfe8cbed159c5f5
parent f1a61ebe
Loading
Loading
Loading
Loading
+2 −3
Original line number Diff line number Diff line
@@ -23,19 +23,18 @@

#define LOG_TAG "a2dp_aac"

#include "bt_target.h"

#include "a2dp_aac.h"

#include <base/logging.h>
#include <string.h>

#include <base/logging.h>
#include "a2dp_aac_decoder.h"
#include "a2dp_aac_encoder.h"
#include "bt_utils.h"
#include "osi/include/log.h"
#include "osi/include/osi.h"
#include "osi/include/properties.h"
#include "stack/include/bt_hdr.h"

#define A2DP_AAC_DEFAULT_BITRATE 320000  // 320 kbps
#define A2DP_AAC_MIN_BITRATE 64000       // 64 kbps
+1 −0
Original line number Diff line number Diff line
@@ -24,6 +24,7 @@
#include "a2dp_aac.h"
#include "osi/include/allocator.h"
#include "osi/include/log.h"
#include "stack/include/bt_hdr.h"

#define DECODE_BUF_LEN (8 * 2 * 1024)

+3 −3
Original line number Diff line number Diff line
@@ -18,18 +18,18 @@

#include "a2dp_aac_encoder.h"

#include <aacenc_lib.h>
#include <base/logging.h>
#include <inttypes.h>
#include <stdio.h>
#include <string.h>

#include <aacenc_lib.h>
#include <base/logging.h>

#include "a2dp_aac.h"
#include "common/time_util.h"
#include "osi/include/allocator.h"
#include "osi/include/log.h"
#include "osi/include/osi.h"
#include "stack/include/bt_hdr.h"

//
// Encoder for AAC Source Codec
+1 −0
Original line number Diff line number Diff line
@@ -38,6 +38,7 @@
#include "bta/av/bta_av_int.h"
#include "osi/include/log.h"
#include "osi/include/properties.h"
#include "stack/include/bt_hdr.h"

/* The Media Type offset within the codec info byte array */
#define A2DP_MEDIA_TYPE_OFFSET 1
+2 −3
Original line number Diff line number Diff line
@@ -25,19 +25,18 @@

#define LOG_TAG "a2dp_sbc"

#include "bt_target.h"

#include "a2dp_sbc.h"

#include <base/logging.h>
#include <string.h>

#include <base/logging.h>
#include "a2dp_sbc_decoder.h"
#include "a2dp_sbc_encoder.h"
#include "bt_utils.h"
#include "embdrv/sbc/encoder/include/sbc_encoder.h"
#include "osi/include/log.h"
#include "osi/include/osi.h"
#include "stack/include/bt_hdr.h"

#define A2DP_SBC_MAX_BITPOOL 53

Loading