[76ea1b7] | 1 | /*
|
---|
| 2 | * Copyright (c) 2013 Jan Vesely
|
---|
| 3 | * All rights reserved.
|
---|
| 4 | *
|
---|
| 5 | * Redistribution and use in source and binary forms, with or without
|
---|
| 6 | * modification, are permitted provided that the following conditions
|
---|
| 7 | * are met:
|
---|
| 8 | *
|
---|
| 9 | * - Redistributions of source code must retain the above copyright
|
---|
| 10 | * notice, this list of conditions and the following disclaimer.
|
---|
| 11 | * - Redistributions in binary form must reproduce the above copyright
|
---|
| 12 | * notice, this list of conditions and the following disclaimer in the
|
---|
| 13 | * documentation and/or other materials provided with the distribution.
|
---|
| 14 | * - The name of the author may not be used to endorse or promote products
|
---|
| 15 | * derived from this software without specific prior written permission.
|
---|
| 16 | *
|
---|
| 17 | * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
|
---|
| 18 | * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
|
---|
| 19 | * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
|
---|
| 20 | * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
|
---|
| 21 | * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
|
---|
| 22 | * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
---|
| 23 | * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
---|
| 24 | * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
---|
| 25 | * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
|
---|
| 26 | * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
---|
| 27 | */
|
---|
| 28 |
|
---|
| 29 | /** @addtogroup audio
|
---|
| 30 | * @brief HelenOS sound server
|
---|
| 31 | * @{
|
---|
| 32 | */
|
---|
| 33 | /** @file
|
---|
| 34 | */
|
---|
| 35 |
|
---|
| 36 | #include <malloc.h>
|
---|
| 37 | #include "audio_data.h"
|
---|
| 38 |
|
---|
| 39 | static void ref_inc(audio_data_t *adata)
|
---|
| 40 | {
|
---|
| 41 | assert(adata);
|
---|
| 42 | assert(atomic_get(&adata->refcount) > 0);
|
---|
| 43 | atomic_inc(&adata->refcount);
|
---|
| 44 | }
|
---|
| 45 |
|
---|
| 46 | static void ref_dec(audio_data_t *adata)
|
---|
| 47 | {
|
---|
| 48 | assert(adata);
|
---|
| 49 | assert(atomic_get(&adata->refcount) > 0);
|
---|
| 50 | atomic_count_t refc = atomic_predec(&adata->refcount);
|
---|
| 51 | if (refc == 0) {
|
---|
| 52 | free(adata->data);
|
---|
| 53 | free(adata);
|
---|
| 54 | }
|
---|
| 55 | }
|
---|
| 56 |
|
---|
[5029c788] | 57 | audio_data_t *audio_data_create(const void *data, size_t size,
|
---|
| 58 | pcm_format_t format)
|
---|
| 59 | {
|
---|
| 60 | audio_data_t *adata = malloc(sizeof(audio_data_t));
|
---|
| 61 | if (adata) {
|
---|
| 62 | adata->data = data;
|
---|
| 63 | adata->size = size;
|
---|
| 64 | adata->format = format;
|
---|
| 65 | atomic_set(&adata->refcount, 1);
|
---|
| 66 | }
|
---|
| 67 | return adata;
|
---|
| 68 | }
|
---|
| 69 |
|
---|
| 70 | void audio_data_unref(audio_data_t *adata)
|
---|
| 71 | {
|
---|
| 72 | ref_dec(adata);
|
---|
| 73 | }
|
---|
| 74 |
|
---|
| 75 | audio_data_link_t *audio_data_link_create(audio_data_t *adata)
|
---|
[76ea1b7] | 76 | {
|
---|
| 77 | assert(adata);
|
---|
| 78 | audio_data_link_t *link = malloc(sizeof(audio_data_link_t));
|
---|
| 79 | if (link) {
|
---|
| 80 | ref_inc(adata);
|
---|
| 81 | link->adata = adata;
|
---|
| 82 | link->position = 0;
|
---|
| 83 | }
|
---|
| 84 | return link;
|
---|
| 85 | }
|
---|
| 86 |
|
---|
[5029c788] | 87 | audio_data_link_t * audio_data_link_create_data(const void *data, size_t size,
|
---|
| 88 | pcm_format_t format)
|
---|
[76ea1b7] | 89 | {
|
---|
| 90 | audio_data_link_t *link = NULL;
|
---|
[5029c788] | 91 | audio_data_t *adata = audio_data_create(data, size, format);
|
---|
[76ea1b7] | 92 | if (adata) {
|
---|
[5029c788] | 93 | link = audio_data_link_create(adata);
|
---|
[76ea1b7] | 94 | /* This will either return refcount to 1 or clean adata if
|
---|
| 95 | * cloning failed */
|
---|
[5029c788] | 96 | audio_data_unref(adata);
|
---|
[76ea1b7] | 97 | }
|
---|
| 98 | return link;
|
---|
| 99 | }
|
---|
| 100 |
|
---|
| 101 | void audio_data_link_destroy(audio_data_link_t *link)
|
---|
| 102 | {
|
---|
| 103 | assert(link);
|
---|
| 104 | assert(!link_in_use(&link->link));
|
---|
| 105 | ref_dec(link->adata);
|
---|
| 106 | free(link);
|
---|
| 107 | }
|
---|
| 108 |
|
---|
[5029c788] | 109 | size_t audio_data_link_available_frames(audio_data_link_t *alink)
|
---|
| 110 | {
|
---|
| 111 | assert(alink);
|
---|
| 112 | assert(alink->adata);
|
---|
| 113 | return pcm_format_size_to_frames(alink->adata->size - alink->position,
|
---|
| 114 | &alink->adata->format);
|
---|
| 115 | }
|
---|
| 116 |
|
---|
[76ea1b7] | 117 | /**
|
---|
| 118 | * @}
|
---|
| 119 | */
|
---|