From 3faa6619878f82c5799d750f3751bfc735e9848e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E9=83=91=E9=98=B3=E5=BA=B7?= <2126483838@qq.com> Date: Thu, 20 Feb 2025 21:46:52 +0800 Subject: [PATCH 1/2] myfirst commit --- audio/alaw.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/audio/alaw.c b/audio/alaw.c index 5cf0018557..3e8a650536 100644 --- a/audio/alaw.c +++ b/audio/alaw.c @@ -26,7 +26,7 @@ /* length of test inputs */ #define LEN ((size_t)8) - +#decode zyk's first forktest /* input pcm for test */ int16_t pcm[LEN] = {1000, -1000, 1234, 3200, -1314, 0, 32767, -32768}; From 14cb45510e1d54bf8fcbd7d6aaedc1907c07bfa8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E9=83=91=E9=98=B3=E5=BA=B7?= <2126483838@qq.com> Date: Thu, 20 Feb 2025 21:52:24 +0800 Subject: [PATCH 2/2] myfirst commit --- .idea/.gitignore | 8 ++++++++ .idea/C.iml | 9 +++++++++ .idea/modules.xml | 8 ++++++++ .idea/vcs.xml | 6 ++++++ audio/alaw.c | 5 +++++ 5 files changed, 36 insertions(+) create mode 100644 .idea/.gitignore create mode 100644 .idea/C.iml create mode 100644 .idea/modules.xml create mode 100644 .idea/vcs.xml diff --git a/.idea/.gitignore b/.idea/.gitignore new file mode 100644 index 0000000000..13566b81b0 --- /dev/null +++ b/.idea/.gitignore @@ -0,0 +1,8 @@ +# Default ignored files +/shelf/ +/workspace.xml +# Editor-based HTTP Client requests +/httpRequests/ +# Datasource local storage ignored files +/dataSources/ +/dataSources.local.xml diff --git a/.idea/C.iml b/.idea/C.iml new file mode 100644 index 0000000000..5e764c4f0b --- /dev/null +++ b/.idea/C.iml @@ -0,0 +1,9 @@ + + + + + + + + + \ No newline at end of file diff --git a/.idea/modules.xml b/.idea/modules.xml new file mode 100644 index 0000000000..a0bac1c87e --- /dev/null +++ b/.idea/modules.xml @@ -0,0 +1,8 @@ + + + + + + + + \ No newline at end of file diff --git a/.idea/vcs.xml b/.idea/vcs.xml new file mode 100644 index 0000000000..35eb1ddfbb --- /dev/null +++ b/.idea/vcs.xml @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/audio/alaw.c b/audio/alaw.c index 3e8a650536..21b19fd3d3 100644 --- a/audio/alaw.c +++ b/audio/alaw.c @@ -23,6 +23,11 @@ #include /// for assert #include /// for appropriate size int types #include /// for IO operations +#include /// for IO operations +#include /// for IO operations +#include /// for IO operations +#include /// for IO operations +#include /// for IO operations /* length of test inputs */ #define LEN ((size_t)8)