From f2597df949f8ff7426da0d22e9c17a343e173384 Mon Sep 17 00:00:00 2001 From: Matthias Ringwald Date: Tue, 19 Nov 2019 17:11:36 +0100 Subject: [PATCH] a2dp_sink_demo: set nominal factor to 1.00 --- example/a2dp_sink_demo.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/example/a2dp_sink_demo.c b/example/a2dp_sink_demo.c index ee55b2654..654eb2c0d 100644 --- a/example/a2dp_sink_demo.c +++ b/example/a2dp_sink_demo.c @@ -480,7 +480,7 @@ static void handle_l2cap_media_data_packet(uint8_t seid, uint8_t *packet, uint16 uint32_t resampling_factor; // nomimal factor (fixed-point 2^16) and compensation offset - uint32_t nomimal_factor = 0x0FF80; + uint32_t nomimal_factor = 0x10000; uint32_t compensation = 0x00100; if (sbc_frames_in_buffer < OPTIMAL_FRAMES_MIN){