<?xml version="1.0" encoding="UTF-8" ?>
<?xml-stylesheet type="text/xsl" href="https://test-devzone.nordicsemi.com/cfs-file/__key/system/syndication/rss.xsl" media="screen"?><rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:wfw="http://wellformedweb.org/CommentAPI/" xmlns:atom="http://www.w3.org/2005/Atom"><channel><title>nRF5340 Audio DK Application Codecs</title><link>https://test-devzone.nordicsemi.com/f/nordic-q-a/88938/nrf5340-audio-dk-application-codecs</link><description>Hello, 
 
 I wonder, is it possible that disabling all the codecs ? or can we use some custom codec ? 
 
 I just want to see the data on the headset ,which comes over ble from the gateway , without and with codecs. 
 ps: it is mandatory that ble audio</description><dc:language>en-US</dc:language><generator>Telligent Community 13 Non-Production</generator><lastBuildDate>Wed, 15 Jun 2022 08:05:09 GMT</lastBuildDate><atom:link rel="self" type="application/rss+xml" href="https://test-devzone.nordicsemi.com/f/nordic-q-a/88938/nrf5340-audio-dk-application-codecs" /><item><title>RE: nRF5340 Audio DK Application Codecs</title><link>https://test-devzone.nordicsemi.com/thread/372496?ContentTypeID=1</link><pubDate>Wed, 15 Jun 2022 08:05:09 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:f7e25b15-dea6-444e-b6d2-1ec523c146b7</guid><dc:creator>user116847</dc:creator><description>&lt;p&gt;Thank you for your help Amanda.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: nRF5340 Audio DK Application Codecs</title><link>https://test-devzone.nordicsemi.com/thread/372482?ContentTypeID=1</link><pubDate>Wed, 15 Jun 2022 07:24:56 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:d4b974a8-947e-4e52-9f7a-a2a9abb54450</guid><dc:creator>user77782</dc:creator><description>&lt;p&gt;Hi,&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;Are you using &lt;a href="http://developer.nordicsemi.com/nRF_Connect_SDK/doc/latest/nrf/applications/nrf5340_audio/README.html#application-modes"&gt;CIS or BIS&lt;/a&gt;?&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;We haven&amp;#39;t tested if 240 bytes per packet will run properly on CIS or BIS without codec, but you can try.&amp;nbsp;&amp;nbsp;&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;You can modify the encode/decode function here for bypassing LC3/SBC&lt;/p&gt;
&lt;p&gt;&lt;a title="https://github.com/nrfconnect/sdk-nrf/blob/main/applications/nrf5340_audio/src/audio/sw_codec_select.c#l57" href="https://github.com/nrfconnect/sdk-nrf/blob/main/applications/nrf5340_audio/src/audio/sw_codec_select.c#L57" rel="noopener noreferrer" target="_blank"&gt;https://github.com/nrfconnect/sdk-nrf/blob/main/applications/nrf5340_audio/src/audio/sw_codec_select.c#L57&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;-Amanda&lt;/span&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: nRF5340 Audio DK Application Codecs</title><link>https://test-devzone.nordicsemi.com/thread/372414?ContentTypeID=1</link><pubDate>Tue, 14 Jun 2022 13:58:33 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:81f4b04b-c190-4f00-b51f-5d1a554c48d9</guid><dc:creator>user116847</dc:creator><description>&lt;p&gt;What if i have 240byte of audio frame for per frame without codec ? Because of this case,&amp;nbsp; i do not want to use any of the codecs. So, what is the ways of disabling all the codecs.&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&amp;nbsp;&lt;/p&gt;
&lt;div class="content"&gt;
&lt;p&gt;ps: it is mandatory that ble audio mode.&lt;/p&gt;
&lt;div&gt;&lt;/div&gt;
&lt;/div&gt;
&lt;div class="actions footer"&gt;
&lt;div class="navigation-list" id="fragment-684_postActions-349a39e0-396f-4713-bfae-b29c01fe4cf4"&gt;
&lt;div class="container"&gt;&lt;/div&gt;
&lt;/div&gt;
&lt;/div&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: nRF5340 Audio DK Application Codecs</title><link>https://test-devzone.nordicsemi.com/thread/372393?ContentTypeID=1</link><pubDate>Tue, 14 Jun 2022 12:57:08 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:7356366b-bfd7-4988-845b-ac5e055e57a5</guid><dc:creator>user77782</dc:creator><description>&lt;p&gt;Hi,&amp;nbsp;&lt;/p&gt;
[quote user=""]is it possible that disabling all the codecs ?[/quote]
&lt;p&gt;Disabling all codecs, means we are going to transmit &amp;quot;raw audio frame&amp;quot; without any compression.&amp;nbsp;That would need huge bandwidth. For now, we are using 48KSpS, 10ms audio frame, and 16 bits depth per channel in the default setting. That&amp;nbsp;means the raw data per channel and per frame is 960 bytes. And this is something we cannot send in one packet. With LC3, the encoded data is 120 bytes (only 1/8) But if you just would like to see dummy data, then it should need some works because now the decoded data frame is tied with the audio synchronization feature closely.&lt;/p&gt;
[quote user=""]can we use some custom codec ?[/quote]
&lt;p&gt;Yes, &lt;a href="https://github.com/nrfconnect/sdk-nrf/blob/main/applications/nrf5340_audio/src/audio/sw_codec_select.c"&gt;sw_codec_select.c&lt;/a&gt; is the middle layer in which you can replace the codec by yourself.&lt;/p&gt;
&lt;p&gt;Regards,&lt;br /&gt;Amanda&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item></channel></rss>