source: roaraudio/libroarpulse/sample.c @ 3433:5fb9bfd5e810

Last change on this file since 3433:5fb9bfd5e810 was 3421:829b4fb6d821, checked in by phi, 14 years ago

added float types

File size: 5.4 KB
Line 
1//sample.c:
2
3/*
4 *      Copyright (C) Philipp 'ph3-der-loewe' Schafft - 2010
5 *  The code (may) include prototypes and comments (and maybe
6 *  other code fragements) from libpulse*. They are mostly copyrighted by:
7 *  Lennart Poettering <poettering@users.sourceforge.net> and
8 *  Pierre Ossman <drzeus@drzeus.cx>
9 *
10 *  This file is part of libroarpulse a part of RoarAudio,
11 *  a cross-platform sound system for both, home and professional use.
12 *  See README for details.
13 *
14 *  This file is free software; you can redistribute it and/or modify
15 *  it under the terms of the GNU General Public License version 3
16 *  as published by the Free Software Foundation.
17 *
18 *  RoarAudio is distributed in the hope that it will be useful,
19 *  but WITHOUT ANY WARRANTY; without even the implied warranty of
20 *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
21 *  GNU General Public License for more details.
22 *
23 *  You should have received a copy of the GNU General Public License
24 *  along with this software; see the file COPYING.  If not, write to
25 *  the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
26 *
27 *  NOTE for everyone want's to change something and send patches:
28 *  read README and HACKING! There a addition information on
29 *  the license of this document you need to read before you send
30 *  any patches.
31 *
32 *  NOTE for uses of non-GPL (LGPL,...) software using libesd, libartsc
33 *  or libpulse*:
34 *  The libs libroaresd, libroararts and libroarpulse link this libroar
35 *  and are therefore GPL. Because of this it may be illigal to use
36 *  them with any software that uses libesd, libartsc or libpulse*.
37 */
38
39#include <libroarpulse/libroarpulse.h>
40
41/** Return the amount of bytes playback of a second of audio with the specified sample type takes */
42size_t pa_bytes_per_second(const pa_sample_spec *spec);
43
44/** Return the size of a frame with the specific sample type */
45size_t pa_frame_size(const pa_sample_spec *spec) {
46 if ( spec == NULL )
47  return 0;
48
49 return pa_sample_size(spec) * spec->channels;
50}
51
52/** Return the size of a sample with the specific sample type */
53size_t pa_sample_size(const pa_sample_spec *spec) {
54 if ( spec == NULL )
55  return -1;
56
57 switch (spec->format) {
58  case PA_SAMPLE_ALAW:
59  case PA_SAMPLE_ULAW:
60  case PA_SAMPLE_U8:
61    return 1;
62   break;
63  case PA_SAMPLE_S16LE:
64  case PA_SAMPLE_S16BE:
65    return 2;
66   break;
67  default:
68    return 0;
69   break;
70 }
71
72 return 0;
73}
74
75/** Calculate the time the specified bytes take to play with the specified sample type */
76pa_usec_t pa_bytes_to_usec(uint64_t length, const pa_sample_spec *spec) {
77 if ( spec == NULL )
78  return 0;
79
80 return (pa_usec_t) (((double) length/pa_frame_size(spec)*1000000)/spec->rate);
81}
82
83/** Calculates the number of bytes that are required for the specified time. \since 0.9 */
84size_t pa_usec_to_bytes(pa_usec_t t, const pa_sample_spec *spec) {
85 if ( spec == NULL )
86  return 0;
87
88 return (size_t) (((double) t * spec->rate / 1000000))*pa_frame_size(spec);
89}
90
91/** Return non-zero when the sample type specification is valid */
92int pa_sample_spec_valid(const pa_sample_spec *spec) {
93 if ( spec == NULL )
94  return 0;
95
96 if ( spec->channels < 1 || spec->channels > ROAR_MAX_CHANNELS )
97  return 0;
98
99 if ( spec->format < 0 || spec->format > PA_SAMPLE_MAX )
100  return 0;
101
102 return 1;
103}
104
105/** Return non-zero when the two sample type specifications match */
106int pa_sample_spec_equal(const pa_sample_spec*a, const pa_sample_spec*b) {
107 if ( a->rate != b->rate )
108  return 0;
109
110 if ( a->channels != b->channels )
111  return 0;
112
113 if ( a->format != b->format )
114  return 0;
115
116 return 1;
117}
118
119/** Return a descriptive string for the specified sample format. \since 0.8 */
120static struct {
121 pa_sample_format_t format;
122 const char * name;
123} _roar_pa_format[] = {
124 {PA_SAMPLE_U8,        "u8"       },
125 {PA_SAMPLE_ALAW,      "aLaw"     },
126 {PA_SAMPLE_ULAW,      "uLaw"     },
127 {PA_SAMPLE_S16LE,     "s16le"    },
128 {PA_SAMPLE_S16BE,     "s16be"    },
129 {PA_SAMPLE_FLOAT32LE, "float32le"},
130 {PA_SAMPLE_FLOAT32BE, "float32be"},
131 {PA_SAMPLE_INVALID,   NULL       }
132};
133
134const char *pa_sample_format_to_string(pa_sample_format_t f) {
135 int i;
136
137 for (i = 0; _roar_pa_format[i].name != NULL; i++)
138  if ( _roar_pa_format[i].format == f )
139   return _roar_pa_format[i].name;
140
141 return NULL;
142}
143
144/** Parse a sample format text. Inverse of pa_sample_format_to_string() */
145pa_sample_format_t pa_parse_sample_format(const char *format) {
146 int i;
147
148 for (i = 0; _roar_pa_format[i].name != NULL; i++)
149  if ( !strcasecmp(_roar_pa_format[i].name, format) )
150   return _roar_pa_format[i].format;
151
152 return PA_SAMPLE_INVALID;
153}
154
155/** Maximum required string length for pa_sample_spec_snprint() */
156#define PA_SAMPLE_SPEC_SNPRINT_MAX 32
157
158/** Pretty print a sample type specification to a string */
159char* pa_sample_spec_snprint(char *s, size_t l, const pa_sample_spec *spec) {
160 if ( s == NULL || l == 0 || spec == NULL )
161  return NULL;
162
163 if ( pa_sample_spec_valid(spec) ) {
164  snprintf(s, l, "%s %uch %uHz", pa_sample_format_to_string(spec->format), spec->channels, spec->rate);
165 } else {
166  snprintf(s, l, "Invalid");
167 }
168
169 return s;
170}
171
172/** Pretty print a byte size value. (i.e. "2.5 MiB") */
173char* pa_bytes_snprint(char *s, size_t l, unsigned v) {
174 double val = v;
175 int    i;
176 const char pre[] = "KMGTP";
177
178 if ( v <= 1024 ) {
179  snprintf(s, l, "%u B", v);
180  return s;
181 }
182
183 for (i = 0; pre[i] != 0; i++) {
184  val /= 1024;
185  if ( val <= 1024 ) {
186   snprintf(s, l, "%0.1f %ciB", val, pre[i]);
187   return s;
188  }
189 }
190
191 snprintf(s, l, "%0.1f %ciB", val*1024., pre[i-1]);
192 return s;
193}
194
195//ll
Note: See TracBrowser for help on using the repository browser.