forked from knik0/faac
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlibfaac.html
210 lines (176 loc) · 4.79 KB
/
libfaac.html
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
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
<html>
<head>
<title>FAAC - ISO/MPEG 2/4 AAC Encoder Library</title>
</head>
<body>
<h3>
<center>
FAAC - ISO/MPEG 2/4 AAC Encoder Library version 1.0<br>
(<a href="http://www.audiocoding.com/">www.audiocoding.com</a>)
</center>
</h3>
<h4>
Contents
</h4>
<menu>
<li><a href="#scope">Scope</a>
<li><a href="#interface">Interface description</a>
<li><a href="#usage">Usage</a>
<menu>
<li><a href="#callseq">Calling sequence</a>
</menu>
<li><a href="#funcref">Function reference</a>
<menu>
<li><a href="#init">Initialization / De-initialization</a>
<menu>
<li><a href="#encopen">faacEncOpen()</a>
<li><a href="#encclose">faacEncClose()</a>
</menu>
<li><a href="#encconf">Encoder configuration</a>
<menu>
<li><a href="#getconf">faacEncGetCurrentConfiguration()</a>
<li><a href="#setconfig">faacEncSetConfiguration()</a>
</menu>
<li><a href="#encfunc">Encoding functions</a>
<menu>
<li><a href="#encenc">faacEncEncode()</a>
</menu>
</menu>
<li><a href="#datastruct">Data structures reference</a>
<menu>
<li><a href="#encconfig">faacEncConfiguration</a>
</menu>
</menu>
<a name="scope">
<h4>Scope</h4>
This document describes the interface and usage of the
FAAC - ISO/MPEG 2/4 AAC Encoder Library
Developed for the Freeware Advanced Audio Coding project.
<a name="interface">
<h4>Interface description</h4>
The ISO/MPEG 2/4 AAC Encoder Library provides a high-level
interface for encoding MPEG2 and MPEG4 ISO AAC files. The
following header file is provided for usage in C/C++ programs:<br><br>
<b>faac.h</b>: function prototypes<br><br>
The encoder core resides in a statically linkable library called
libfaac.lib <i>(Microsoft Window</i>s) or libfaac.a <i>(UNI</i>X). There
are various example programs that show how to use the library.
<a name="usage">
<h4>Usage</h4>
<a name="callseq">
<h4>Calling sequence</h4>
For encoding AAC bitstreams the following calling sequence is
mandatory:<br>
<menu>
<li>Call <i>faacEncOpen()</i>
for every encoder instance you need.
<li>To set encoder options, call <i>faacEncGetCurrentConfiguration()</i>,
change the parameters in the structure accessible by the returned pointer
and then call <i>faacEncSetConfiguration()</i>.
<li>As long as there are still samples left to encode, call
<i>faacEncEncode()</i>
to encode the data.
The encoder returns
the bitstream data in a client-supplied buffer.
<li>
Once you call
<i>faacEncEncode()</i>
with zero samples of input
the flushing process is initiated; afterwards you may call
<i>faacEncEncode()</i>
with zero samples input only.<br>
<i>faacEncEncode()</i> will continue to write out data until all audio
samples have been encoded.
<li>
Once
<i>faacEncEncode()</i>
has returned with zero bytes written,
call <i>faacEncClose()</i>
to destroy this encoder instance.
</menu>
<a name="funcref">
<h4>Function reference</h4>
<a name="init">
<h4>Initialization / De-initialization</h4>
<a name="encopen">
<h5><i>faacEncOpen()</i></h5>
<pre>
<b>Prototype</b>
faacEncHandle FAACAPI faacEncOpen
(
unsigned long sampleRate,
unsigned int numChannels,
unsigned long *inputSamples,
unsigned long *maxOutputBytes
);
<b>Description</b>
Open and initialize one instance of the encoder.
<b>Parameters</b>
<li><i>sampleRate</i>
The samplerate of the encoder input data.
<li><i>numChannels</i>
The number of channels of the encoder input data.
<li><i>inputSamples</i>
Receives the total number of samples that should be fed to
faacEncEncode() in each call.
<li><i>maxOutputBytes</i>
Receives the maximum number of bytes that can be in the
output buffer after a call to faacEncEncode().
<b>Return value</b>
An initialized encoder handle. If anything goes wrong NULL is returned.
</pre>
<a name="encclose">
<h5><i>faacEncClose()</i></h5>
<pre>
<b>Prototype</b>
void FAACAPI faacEncClose
(
faacEncHandle hEncoder
);
<b>Description</b>
Closes an encoder instance.
<b>Parameters</b>
<li>hEncoder
An encoder handle returned by faacEncOpen().
</pre>
<a name="encconf">
<h4>Encoder configuration</h4>
<a name="getconf">
<h5><i>faacEncGetCurrentConfiguration()</i></h5>
<pre>
<b>Prototype</b>
faacEncConfigurationPtr FAACAPI
faacEncGetCurrentConfiguration
(
faacEncHandle hEncoder
);
<b>Description</b>
Get a pointer to a structure describing the current encoder
configuration. You may change this structure and feed it into
<i>faacEncSetConfiguration()</i>.
</pre>
<a name="setconf">
<h5><i>faacEncSetConfiguration()</i></h4>
<pre>
<b>Prototype</b>
int FAACAPI faacEncSetConfiguration
(
faacDecHandle hDecoder,
faacEncConfigurationPtr config
);
<b>Description</b>
Set a new encoder configuration. See
faacEncGetCurrentConfiguration().
</pre>
<a name="">
<h4></h4>
<a name="">
<h4></h4>
<center>
<br>
<i>
Copyright © 2001,2003 <a href="http://www.audiocoding.com/">AudioCoding.com</a>. All rights reserved.
</i>
</center>
</body>
</html>