2013-05-19 23:12:28 +02:00
|
|
|
/****************************************************************************
|
2018-05-29 21:21:26 +02:00
|
|
|
* libs/libc/audio/lib_buffer.c
|
2013-05-19 23:12:28 +02:00
|
|
|
*
|
2021-04-10 08:50:57 +02:00
|
|
|
* 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
|
2013-05-19 23:12:28 +02:00
|
|
|
*
|
2021-04-10 08:50:57 +02:00
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
2013-05-19 23:12:28 +02:00
|
|
|
*
|
2021-04-10 08:50:57 +02:00
|
|
|
* 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.
|
2013-05-19 23:12:28 +02:00
|
|
|
*
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* Included Files
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
#include <nuttx/config.h>
|
|
|
|
|
|
|
|
#include <sys/types.h>
|
|
|
|
#include <stdint.h>
|
|
|
|
#include <stdbool.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <assert.h>
|
|
|
|
#include <errno.h>
|
|
|
|
#include <debug.h>
|
|
|
|
|
2013-05-21 21:13:05 +02:00
|
|
|
#include <nuttx/audio/audio.h>
|
2013-05-19 23:12:28 +02:00
|
|
|
#include <nuttx/usb/audio.h>
|
|
|
|
|
2015-12-30 00:31:17 +01:00
|
|
|
#include "libc.h"
|
2013-11-10 19:22:01 +01:00
|
|
|
|
2013-05-19 23:12:28 +02:00
|
|
|
#if defined(CONFIG_AUDIO)
|
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* Private Functions
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* Name: apb_semtake
|
|
|
|
*
|
|
|
|
* Take an Audio Pipeline Buffer.
|
|
|
|
*
|
|
|
|
****************************************************************************/
|
|
|
|
|
2013-10-27 14:44:53 +01:00
|
|
|
static void apb_semtake(FAR struct ap_buffer_s *apb)
|
2013-05-19 23:12:28 +02:00
|
|
|
{
|
2017-11-08 13:25:13 +01:00
|
|
|
int ret;
|
|
|
|
|
2013-05-19 23:12:28 +02:00
|
|
|
/* Take the semaphore (perhaps waiting) */
|
|
|
|
|
2017-10-08 19:52:32 +02:00
|
|
|
while (_SEM_WAIT(&apb->sem) < 0)
|
2013-05-19 23:12:28 +02:00
|
|
|
{
|
|
|
|
/* The only case that an error should occr here is if
|
|
|
|
* the wait was awakened by a signal.
|
|
|
|
*/
|
|
|
|
|
2018-02-20 19:24:53 +01:00
|
|
|
DEBUGASSERT(_SEM_ERRNO(ret) == EINTR || _SEM_ERRNO(ret) == ECANCELED);
|
2017-11-08 13:25:13 +01:00
|
|
|
UNUSED(ret);
|
2013-05-19 23:12:28 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* Name: apb_semgive
|
|
|
|
****************************************************************************/
|
|
|
|
|
2017-10-08 19:52:32 +02:00
|
|
|
#define apb_semgive(b) _SEM_POST(&b->sem)
|
2013-05-19 23:12:28 +02:00
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* Name: apb_alloc
|
|
|
|
*
|
|
|
|
* Allocate an Audio Pipeline Buffer for use in the Audio sub-system. This
|
|
|
|
* will perform the actual allocate based on buffer data format, number of
|
|
|
|
* channels, etc. and prepare the buffer for consumption.
|
|
|
|
*
|
|
|
|
****************************************************************************/
|
|
|
|
|
2013-11-10 19:22:01 +01:00
|
|
|
int apb_alloc(FAR struct audio_buf_desc_s *bufdesc)
|
2013-05-19 23:12:28 +02:00
|
|
|
{
|
2013-10-27 14:44:53 +01:00
|
|
|
uint32_t bufsize;
|
|
|
|
int ret;
|
2014-08-01 00:36:09 +02:00
|
|
|
struct ap_buffer_s *apb;
|
2013-05-19 23:12:28 +02:00
|
|
|
|
2020-04-21 10:55:41 +02:00
|
|
|
DEBUGASSERT(bufdesc->u.pbuffer != NULL);
|
2013-10-27 14:44:53 +01:00
|
|
|
|
|
|
|
/* Perform a user mode allocation */
|
|
|
|
|
|
|
|
bufsize = sizeof(struct ap_buffer_s) + bufdesc->numbytes;
|
2014-08-01 00:36:09 +02:00
|
|
|
apb = lib_umalloc(bufsize);
|
2020-04-21 10:55:41 +02:00
|
|
|
*bufdesc->u.pbuffer = apb;
|
2013-10-27 14:44:53 +01:00
|
|
|
|
|
|
|
/* Test if the allocation was successful or not */
|
|
|
|
|
2020-04-21 10:55:41 +02:00
|
|
|
if (*bufdesc->u.pbuffer == NULL)
|
2013-11-10 19:22:01 +01:00
|
|
|
{
|
|
|
|
ret = -ENOMEM;
|
|
|
|
}
|
2013-10-27 14:44:53 +01:00
|
|
|
else
|
|
|
|
{
|
|
|
|
/* Populate the buffer contents */
|
|
|
|
|
2014-08-01 00:36:09 +02:00
|
|
|
memset(apb, 0, bufsize);
|
|
|
|
apb->i.channels = 1;
|
|
|
|
apb->crefs = 1;
|
|
|
|
apb->nmaxbytes = bufdesc->numbytes;
|
|
|
|
apb->nbytes = 0;
|
|
|
|
apb->flags = 0;
|
2018-08-27 15:45:27 +02:00
|
|
|
apb->samp = (FAR uint8_t *)(apb + 1);
|
2013-10-27 14:44:53 +01:00
|
|
|
#ifdef CONFIG_AUDIO_MULTI_SESSION
|
2014-08-01 00:36:09 +02:00
|
|
|
apb->session = bufdesc->session;
|
2013-10-27 14:44:53 +01:00
|
|
|
#endif
|
2014-08-01 00:36:09 +02:00
|
|
|
|
2020-02-01 08:17:32 +01:00
|
|
|
_SEM_INIT(&apb->sem, 0, 1);
|
2013-10-27 14:44:53 +01:00
|
|
|
ret = sizeof(struct audio_buf_desc_s);
|
|
|
|
}
|
|
|
|
|
|
|
|
return ret;
|
2013-05-19 23:12:28 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* Name: apb_free
|
|
|
|
*
|
|
|
|
* Free's a previously allocated or referenced Audio Pipeline Buffer
|
|
|
|
*
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
void apb_free(FAR struct ap_buffer_s *apb)
|
|
|
|
{
|
2013-11-10 19:22:01 +01:00
|
|
|
int refcount;
|
2013-10-27 14:44:53 +01:00
|
|
|
|
2013-05-19 23:12:28 +02:00
|
|
|
/* Perform a reference count decrement and possibly release the memory */
|
|
|
|
|
2013-10-27 14:44:53 +01:00
|
|
|
apb_semtake(apb);
|
|
|
|
refcount = apb->crefs--;
|
|
|
|
apb_semgive(apb);
|
|
|
|
|
2013-11-10 19:22:01 +01:00
|
|
|
if (refcount <= 1)
|
2013-10-27 14:44:53 +01:00
|
|
|
{
|
2016-06-11 19:59:51 +02:00
|
|
|
audinfo("Freeing %p\n", apb);
|
2020-02-01 08:17:32 +01:00
|
|
|
_SEM_DESTROY(&apb->sem);
|
2013-11-10 19:22:01 +01:00
|
|
|
lib_ufree(apb);
|
2013-10-27 14:44:53 +01:00
|
|
|
}
|
2013-05-19 23:12:28 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* Name: apb_reference
|
|
|
|
*
|
|
|
|
* Claim a reference to an Audio Pipeline Buffer. Each call to apb_reference
|
|
|
|
* will increment the reference count and must have a matching apb_free
|
|
|
|
* call. When the refcount decrements to zero, the buffer will be freed.
|
|
|
|
*
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
void apb_reference(FAR struct ap_buffer_s *apb)
|
|
|
|
{
|
2013-10-27 14:44:53 +01:00
|
|
|
/* Do we need any thread protection here? Almost certaily... */
|
|
|
|
|
|
|
|
apb_semtake(apb);
|
|
|
|
apb->crefs++;
|
|
|
|
apb_semgive(apb);
|
2013-05-19 23:12:28 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
#endif /* CONFIG_AUDIO */
|