forked from apache/nuttx-apps
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
system/nxrecorder: add amr offload record support
Signed-off-by: jinxiuxu <jinxiuxu@xiaomi.com>
- Loading branch information
1 parent
4439b24
commit 518b1ae
Showing
6 changed files
with
228 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,67 @@ | ||
/**************************************************************************** | ||
* apps/system/nxrecorder/nxrecorder_amr.c | ||
* | ||
* Licensed to the Apache Software Foundation (ASF) under one or more | ||
* contributor license agreements. See the NOTICE file distributed with | ||
* this work for additional information regarding copyright ownership. The | ||
* ASF licenses this file to you under the Apache License, Version 2.0 (the | ||
* "License"); you may not use this file except in compliance with the | ||
* License. You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT | ||
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the | ||
* License for the specific language governing permissions and limitations | ||
* under the License. | ||
* | ||
****************************************************************************/ | ||
|
||
/**************************************************************************** | ||
* Included Files | ||
****************************************************************************/ | ||
|
||
#include <sys/types.h> | ||
|
||
#include <stdio.h> | ||
#include <unistd.h> | ||
|
||
#include <nuttx/audio/audio.h> | ||
|
||
#include "system/nxrecorder.h" | ||
|
||
/**************************************************************************** | ||
* Private Type Declarations | ||
****************************************************************************/ | ||
|
||
static const uint8_t AMR_NB[6] = "#!AMR\n"; | ||
static const uint8_t AMR_WB[9] = "#!AMR-WB\n"; | ||
|
||
/**************************************************************************** | ||
* Public Functions | ||
****************************************************************************/ | ||
|
||
/**************************************************************************** | ||
* Name: nxrecorder_record_amr | ||
* | ||
* nxrecorder_record_amr() add amr file header | ||
* | ||
****************************************************************************/ | ||
|
||
int nxrecorder_write_amr(int fd, uint32_t samplerate, | ||
uint8_t chans, uint8_t bps) | ||
{ | ||
const uint8_t *data; | ||
int size; | ||
|
||
if (samplerate != 8000 && samplerate != 16000) | ||
{ | ||
return -EINVAL; | ||
} | ||
|
||
data = samplerate == 16000 ? &AMR_WB[0] : &AMR_NB[0]; | ||
size = samplerate == 16000 ? sizeof(AMR_WB) : sizeof(AMR_NB); | ||
|
||
return write(fd, data, size); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,67 @@ | ||
/**************************************************************************** | ||
* apps/system/nxrecorder/nxrecorder_common.c | ||
* | ||
* Licensed to the Apache Software Foundation (ASF) under one or more | ||
* contributor license agreements. See the NOTICE file distributed with | ||
* this work for additional information regarding copyright ownership. The | ||
* ASF licenses this file to you under the Apache License, Version 2.0 (the | ||
* "License"); you may not use this file except in compliance with the | ||
* License. You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT | ||
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the | ||
* License for the specific language governing permissions and limitations | ||
* under the License. | ||
* | ||
****************************************************************************/ | ||
|
||
/**************************************************************************** | ||
* Included Files | ||
****************************************************************************/ | ||
|
||
#include <sys/types.h> | ||
|
||
#include <assert.h> | ||
#include <debug.h> | ||
#include <stdint.h> | ||
#include <stdio.h> | ||
#include <stdlib.h> | ||
#include <unistd.h> | ||
|
||
#include <nuttx/audio/audio.h> | ||
|
||
#include "system/nxrecorder.h" | ||
|
||
/**************************************************************************** | ||
* Public Functions | ||
****************************************************************************/ | ||
|
||
/**************************************************************************** | ||
* Name: nxrecorder_write_common | ||
* | ||
* Performs common function to write data to apb buffer | ||
* | ||
* Input Parameters: | ||
* fd - recording file descriptor | ||
* apb - ap buffer | ||
* | ||
* Returned Value: | ||
* OK if apb buffer write successfully. | ||
* | ||
****************************************************************************/ | ||
|
||
int nxrecorder_write_common(int fd, FAR struct ap_buffer_s *apb) | ||
{ | ||
int ret = 0; | ||
|
||
ret = write(fd, apb->samp, apb->nbytes); | ||
if (ret < 0) | ||
{ | ||
auderr("ERROR: precorder write failed: %d\n", ret); | ||
} | ||
|
||
return ret; | ||
} |