OSDN Git Service

6f90ed590e440af4c8d7e142114cf775f900820a
[trx-305dsp/dsp.git] / trx305 / kernel / tools / blackfin-vdsp / talkthrough_ezkit_bf533 / processing.c
1 #include "t_services.h"\r
2 #include "kernel_id.h"\r
3 #include "talkthrough.h"\r
4 #include "ad1836a.h"\r
5 \r
6 \r
7 void processData(struct CODEC_BUFFER *rx_buf, struct CODEC_BUFFER *tx_buf)\r
8 {\r
9     int sample, slot;\r
10     \r
11 \r
12     for ( sample = 0; sample < SAMPLE_PER_INTR; sample++ )\r
13         for ( slot =0; slot < 8; slot ++ )\r
14             tx_buf->data[sample][slot] = rx_buf->data[sample][slot];\r
15     \r
16 }\r