From: Lennart Poettering Date: Fri, 3 Oct 2008 15:45:55 +0000 (+0200) Subject: increase PA_CVOLUME_SNPRINT_MAX to a proper value and document that it is not conside... X-Git-Tag: submit/2.0-panda/20130828.192557~2613 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=28af9944fe0560229efdcf9f0180568fd5a444c3;p=profile%2Fivi%2Fpulseaudio-panda.git increase PA_CVOLUME_SNPRINT_MAX to a proper value and document that it is not considered part of the ABI --- diff --git a/src/pulse/channelmap.h b/src/pulse/channelmap.h index 8ea3dae..d7d19d7 100644 --- a/src/pulse/channelmap.h +++ b/src/pulse/channelmap.h @@ -204,7 +204,11 @@ const char* pa_channel_position_to_string(pa_channel_position_t pos) PA_GCC_PURE /** Return a human readable text label for the specified channel position. \since 0.9.7 */ const char* pa_channel_position_to_pretty_string(pa_channel_position_t pos); -/** The maximum length of strings returned by pa_channel_map_snprint() */ +/** The maximum length of strings returned by + * pa_channel_map_snprint(). Please note that this value can change + * with any release without warning and without being considered API + * or ABI breakage. You should not use this definition anywhere where + * it might become part of an ABI. */ #define PA_CHANNEL_MAP_SNPRINT_MAX 336 /** Make a humand readable string from the specified channel map */ diff --git a/src/pulse/sample.h b/src/pulse/sample.h index 0053bf0..3c7dd0e 100644 --- a/src/pulse/sample.h +++ b/src/pulse/sample.h @@ -249,7 +249,11 @@ const char *pa_sample_format_to_string(pa_sample_format_t f) PA_GCC_PURE; /** Parse a sample format text. Inverse of pa_sample_format_to_string() */ pa_sample_format_t pa_parse_sample_format(const char *format) PA_GCC_PURE; -/** Maximum required string length for pa_sample_spec_snprint() */ +/** Maximum required string length for + * pa_sample_spec_snprint(). Please note that this value can change + * with any release without warning and without being considered API + * or ABI breakage. You should not use this definition anywhere where + * it might become part of an ABI. */ #define PA_SAMPLE_SPEC_SNPRINT_MAX 32 /** Pretty print a sample type specification to a string */ diff --git a/src/pulse/volume.h b/src/pulse/volume.h index 90fb59e..9f6e5f0 100644 --- a/src/pulse/volume.h +++ b/src/pulse/volume.h @@ -130,8 +130,12 @@ pa_cvolume* pa_cvolume_init(pa_cvolume *a); /** Set the volume of all channels to the specified parameter */ pa_cvolume* pa_cvolume_set(pa_cvolume *a, unsigned channels, pa_volume_t v); -/** Maximum length of the strings returned by pa_cvolume_snprint() */ -#define PA_CVOLUME_SNPRINT_MAX 64 +/** Maximum length of the strings returned by + * pa_cvolume_snprint(). Please note that this value can change with + * any release without warning and without being considered API or ABI + * breakage. You should not use this definition anywhere where it + * might become part of an ABI.*/ +#define PA_CVOLUME_SNPRINT_MAX 320 /** Pretty print a volume structure */ char *pa_cvolume_snprint(char *s, size_t l, const pa_cvolume *c);