source: roaraudio/doc/man3/roar_str2codec.3 @ 784:e281050a0057

Last change on this file since 784:e281050a0057 was 784:e281050a0057, checked in by phi, 16 years ago

added manpage for roar_codec2str() and roar_str2codec()

File size: 1002 bytes
Line 
1.\" roar_simple_play.3:
2
3.TH "roar_str2codec" "3" "July 2008" "RoarAudio" "System Manager's Manual: RoarAuido"
4
5.SH NAME
6roar_str2codec \- Get codec ID by codec name
7
8roar_codec2str \- Get codec name by ID
9
10.SH SYNOPSIS
11
12 #include <roaraudio.h>
13
14 int    roar_str2codec (char * codec);
15 char * roar_codec2str (int    codec);
16
17.SH "DESCRIPTION"
18\fBroar_str2codec\fR converts a string to a RoarAudio Codec ID. It also supports some common aliases.
19\fBroar_codec2str\fR is the reverse operation of \fBroar_str2codec\fR: It get's a name by the ID given.
20If a \fBcodec\fR is valid the following should be true:
21 roar_str2codec(roar_codec2str(codec)) == codec
22
23Note that because of aliasing and case insensitivity the revers operation needs not to be true.
24
25.SH "RETURN VALUE"
26On success \fBroar_str2codec\fR returns a codec ID.  On error, -1 is returned.
27\fBroar_codec2str\fR returns the name of the codec or NULL on error.
28
29.SH "EXAMPLES"
30FIXME
31
32.SH "SEE ALSO"
33\fBlibroar\fR(7),
34\fBRoarAudio\fR(7).
35
36.\" ll
Note: See TracBrowser for help on using the repository browser.