format: Fix unknown doxygen command \second
[profile/ivi/pulseaudio.git] / src / pulse / format.h
1 #ifndef fooformathfoo
2 #define fooformathfoo
3
4 /***
5   This file is part of PulseAudio.
6
7   Copyright 2011 Intel Corporation
8   Copyright 2011 Collabora Multimedia
9   Copyright 2011 Arun Raghavan <arun.raghavan@collabora.co.uk>
10
11   PulseAudio is free software; you can redistribute it and/or modify
12   it under the terms of the GNU Lesser General Public License as published
13   by the Free Software Foundation; either version 2.1 of the License,
14   or (at your option) any later version.
15
16   PulseAudio is distributed in the hope that it will be useful, but
17   WITHOUT ANY WARRANTY; without even the implied warranty of
18   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
19   General Public License for more details.
20
21   You should have received a copy of the GNU Lesser General Public License
22   along with PulseAudio; if not, write to the Free Software
23   Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
24   USA.
25 ***/
26
27 #include <pulse/cdecl.h>
28 #include <pulse/gccmacro.h>
29 #include <pulse/proplist.h>
30 #include <pulse/sample.h>
31 #include <pulse/channelmap.h>
32
33 PA_C_DECL_BEGIN
34
35 /** Represents the type of encoding used in a stream or accepted by a sink. \since 1.0 */
36 typedef enum pa_encoding {
37     PA_ENCODING_ANY,
38     /**< Any encoding format, PCM or compressed */
39
40     PA_ENCODING_PCM,
41     /**< Any PCM format */
42
43     PA_ENCODING_AC3_IEC61937,
44     /**< AC3 data encapsulated in IEC 61937 header/padding */
45
46     PA_ENCODING_EAC3_IEC61937,
47     /**< EAC3 data encapsulated in IEC 61937 header/padding */
48
49     PA_ENCODING_MPEG_IEC61937,
50     /**< MPEG-1 or MPEG-2 (Part 3, not AAC) data encapsulated in IEC 61937 header/padding */
51
52     PA_ENCODING_DTS_IEC61937,
53     /**< DTS data encapsulated in IEC 61937 header/padding */
54
55     PA_ENCODING_MAX,
56     /**< Valid encoding types must be less than this value */
57
58     PA_ENCODING_INVALID = -1,
59     /**< Represents an invalid encoding */
60 } pa_encoding_t;
61
62 /** Returns a printable string representing the given encoding type. \since 1.0 */
63 const char *pa_encoding_to_string(pa_encoding_t e) PA_GCC_CONST;
64
65 /** Converts a string of the form returned by \a pa_encoding_to_string() back to a \a pa_encoding_t. \since 1.0 */
66 pa_encoding_t pa_encoding_from_string(const char *encoding);
67
68 /** Represents the format of data provided in a stream or processed by a sink. \since 1.0 */
69 typedef struct pa_format_info {
70     pa_encoding_t encoding;
71     /**< The encoding used for the format */
72
73     pa_proplist *plist;
74     /**< Additional encoding-specific properties such as sample rate, bitrate, etc. */
75 } pa_format_info;
76
77 /** Allocates a new \a pa_format_info structure. Clients must initialise at least the encoding field themselves. */
78 pa_format_info* pa_format_info_new(void);
79
80 /** Returns a new \a pa_format_info struct and representing the same format as \a src */
81 pa_format_info* pa_format_info_copy(const pa_format_info *src);
82
83 /** Frees a \a pa_format_info structure */
84 void pa_format_info_free(pa_format_info *f);
85
86 /** Returns non-zero when the format info structure is valid */
87 int pa_format_info_valid(const pa_format_info *f);
88
89 /** Returns non-zero when the format info structure represents a PCM (i.e. uncompressed data) format */
90 int pa_format_info_is_pcm(const pa_format_info *f);
91
92 /** Returns non-zero if the format represented by \a first is a subset of
93  * the format represented by \a second. This means that \a second must
94  * have all the fields that \a first does, but the reverse need not
95  * be true. This is typically expected to be used to check if a
96  * stream's format is compatible with a given sink. In such a case,
97  * \a first would be the sink's format and \a second would be the
98  * stream's.*/
99 int pa_format_info_is_compatible(pa_format_info *first, pa_format_info *second);
100
101 /** Maximum required string length for
102  * pa_format_info_snprint(). Please note that this value can change
103  * with any release without warning and without being considered API
104  * or ABI breakage. You should not use this definition anywhere where
105  * it might become part of an ABI. \since 1.0 */
106 #define PA_FORMAT_INFO_SNPRINT_MAX 256
107
108 /** Return a human-readable string representing the given format. \since 1.0 */
109 char *pa_format_info_snprint(char *s, size_t l, const pa_format_info *f);
110
111 /** Parse a human-readable string of the form generated by
112  * \a pa_format_info_snprint() into a pa_format_info structure. \since 1.0 */
113 pa_format_info* pa_format_info_from_string(const char *str);
114
115 /** Sets an integer property on the given format info */
116 void pa_format_info_set_prop_int(pa_format_info *f, const char *key, int value);
117 /** Sets a property with a list of integer values on the given format info */
118 void pa_format_info_set_prop_int_array(pa_format_info *f, const char *key, const int *values, int n_values);
119 /** Sets a property which can have any value in a given integer range on the given format info */
120 void pa_format_info_set_prop_int_range(pa_format_info *f, const char *key, int min, int max);
121 /** Sets a string property on the given format info */
122 void pa_format_info_set_prop_string(pa_format_info *f, const char *key, const char *value);
123 /** Sets a property with a list of string values on the given format info */
124 void pa_format_info_set_prop_string_array(pa_format_info *f, const char *key, const char **values, int n_values);
125
126 /** Convenience method to set the sample format as a property on the given format */
127 void pa_format_info_set_sample_format(pa_format_info *f, pa_sample_format_t sf);
128 /** Convenience method to set the sampling rate as a property on the given format */
129 void pa_format_info_set_rate(pa_format_info *f, int rate);
130 /** Convenience method to set the number of channels as a property on the given format */
131 void pa_format_info_set_channels(pa_format_info *f, int channels);
132 /** Convenience method to set the channel map as a property on the given format */
133 void pa_format_info_set_channel_map(pa_format_info *f, const pa_channel_map *map);
134
135 PA_C_DECL_END
136
137 #endif