source: mainline/uspace/srv/audio/hound/audio_data.c@ 5029c788

lfn serial ticket/834-toolchain-update topic/msim-upgrade topic/simplify-dev-export
Last change on this file since 5029c788 was 5029c788, checked in by Jan Vesely <jano.vesely@…>, 12 years ago

hound: add connection fifo, implement stream mixing

  • Property mode set to 100644
File size: 3.2 KB
RevLine 
[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
39static 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
46static 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]57audio_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
70void audio_data_unref(audio_data_t *adata)
71{
72 ref_dec(adata);
73}
74
75audio_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]87audio_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
101void 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]109size_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 */
Note: See TracBrowser for help on using the repository browser.