1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149
|
From: Jochen Friedrich <jochen@scram.de>
Subject: Correct manual page markup
Forwarded: yes
--- a/man/gsm.3
+++ b/man/gsm.3
@@ -3,7 +3,6 @@
.\" Universitaet Berlin. See the accompanying file "COPYRIGHT" for
.\" details. THERE IS ABSOLUTELY NO WARRANTY FOR THIS SOFTWARE.
.\"
-.PU
.TH GSM 3
.SH NAME
gsm_create, gsm_destroy, gsm_encode, gsm_decode \(em GSM\ 06.10 lossy sound compression
--- a/man/gsm_explode.3
+++ b/man/gsm_explode.3
@@ -3,7 +3,6 @@
.\" Universitaet Berlin. See the accompanying file "COPYRIGHT" for
.\" details. THERE IS ABSOLUTELY NO WARRANTY FOR THIS SOFTWARE.
.\"
-.PU
.TH GSM_EXPLODE 3
.SH NAME
gsm_explode, gsm_implode \(em GSM\ 06.10 supplementary
--- a/man/gsm_option.3
+++ b/man/gsm_option.3
@@ -3,7 +3,6 @@
.\" Universitaet Berlin. See the accompanying file "COPYRIGHT" for
.\" details. THERE IS ABSOLUTELY NO WARRANTY FOR THIS SOFTWARE.
.\"
-.PU
.TH GSM_OPTION 3
.SH NAME
gsm_option \(em customizing the GSM 06.10 implementation
@@ -39,22 +38,22 @@ The following options are defined:
.I GSM_OPT_VERBOSE
Verbosity level.
.br
-.in+5
+.RS
This option is only supported if the library was compiled
with debugging turned on, and may be used by developers of
compression algorithms to aid debugging.
.br
The verbosity level can be changed at any time during encoding or decoding.
-.in-5
+.RE
.sp
.PP
.I GSM_OPT_FAST
Faster compression algorithm.
.br
-.in+5
+.RS
This implementation offers a not strictly standard-compliant, but
faster compression algorithm that is compatible with the regular
-method and does not noticably degrade audio quality.
+method and does not noticeably degrade audio quality.
.br
The value passed to
.br
@@ -70,19 +69,18 @@ if it is not available, gsm_option will
to set or query it.
.br
This option can be set any time during encoding or decoding.
-.in-5
-.ne 5
+.RE
.sp
.PP
.I GSM_OPT_LTP_CUT
Enable, disable, or query the LTP cut-off optimization.
.br
-.in+5
+.RS
During encoding, the search for the long-term correlation
lag forms the bottleneck of the algorithm.
The ltp-cut option enables an approximation that disregards most
of the samples for purposes of finding that correlation,
-and hence speeds up the encoding at a noticable loss in quality.
+and hence speeds up the encoding at a noticeable loss in quality.
.br
The value passed to
.br
@@ -95,12 +93,13 @@ turns the optimization on if nonzero, an
This option can be set any time during encoding
or decoding; it will only affect the encoding pass, not
the decoding.
+.RE
.sp
.PP
.I GSM_OPT_WAV49
WAV-style byte ordering.
.br
-.in+5
+.RS
A WAV file of type #49 contains GSM 06.10-encoded frames.
Unfortunately, the framing and code ordering of the WAV version
are incompatible with the native ones of this GSM 06.10 library.
@@ -131,12 +130,13 @@ well-worn rest of the it.
.br
Thanks to Jeff Chilton for the detective work and first free
implementation of this version of the GSM 06.10 encoding.
+.RE
.sp
.PP
.I GSM_OPT_FRAME_CHAIN
Query or set the chaining byte.
.br
-.in+5
+.RS
Between the two frames of a WAV-style encoding, the GSM 06.10 library
must keep track of one half-byte that is technically part of the first
frame, but will be written as the first four bits of the second.
@@ -148,13 +148,14 @@ and optionally set by,
.fi
.br
This option can be queried and set at any time.
+.RE
.sp
.PP
.I GSM_OPT_FRAME_INDEX
Query or set the current frame's index in a format's
alternating list of frames.
.br
-.in+5
+.RS
The WAV #49 framing uses two alternating types of frames.
Which type the next GSM-coded frame belongs to can be queried, or,
when decoding, announced, using
@@ -173,7 +174,7 @@ Used in combination with the
option, it can be used to position on arbitrary GSM frames
within a format like WAV #49 (not accounting for the lost
internal GSM state).
-.in-5
+.RE
.SH "RETURN VALUE"
gsm_option() returns -1 if an option is not supported, the
previous value of the option otherwise.
--- a/man/gsm_print.3
+++ b/man/gsm_print.3
@@ -3,7 +3,6 @@
.\" Universitaet Berlin. See the accompanying file "COPYRIGHT" for
.\" details. THERE IS ABSOLUTELY NO WARRANTY FOR THIS SOFTWARE.
.\"
-.PU
.TH GSM_PRINT 3
.SH NAME
gsm_print \(em GSM\ 06.10 supplementary function for debugging
|