3 * Copyright (c) 2012 Justin Ruggles <justin.ruggles@gmail.com>
5 * This file is part of FFmpeg.
7 * FFmpeg is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU Lesser General Public
9 * License as published by the Free Software Foundation; either
10 * version 2.1 of the License, or (at your option) any later version.
12 * FFmpeg is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 * Lesser General Public License for more details.
17 * You should have received a copy of the GNU Lesser General Public
18 * License along with FFmpeg; if not, write to the Free Software
19 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
27 #ifndef AVUTIL_AUDIO_FIFO_H
28 #define AVUTIL_AUDIO_FIFO_H
32 #include "samplefmt.h"
35 * @addtogroup lavu_audio
38 * @defgroup lavu_audiofifo Audio FIFO Buffer
43 * Context for an Audio FIFO Buffer.
45 * - Operates at the sample level rather than the byte level.
46 * - Supports multiple channels with either planar or packed sample format.
47 * - Automatic reallocation when writing to a full buffer.
49 typedef struct AVAudioFifo AVAudioFifo;
52 * Free an AVAudioFifo.
54 * @param af AVAudioFifo to free
56 void av_audio_fifo_free(AVAudioFifo *af);
59 * Allocate an AVAudioFifo.
61 * @param sample_fmt sample format
62 * @param channels number of channels
63 * @param nb_samples initial allocation size, in samples
64 * @return newly allocated AVAudioFifo, or NULL on error
66 AVAudioFifo *av_audio_fifo_alloc(enum AVSampleFormat sample_fmt, int channels,
70 * Reallocate an AVAudioFifo.
72 * @param af AVAudioFifo to reallocate
73 * @param nb_samples new allocation size, in samples
74 * @return 0 if OK, or negative AVERROR code on failure
77 int av_audio_fifo_realloc(AVAudioFifo *af, int nb_samples);
80 * Write data to an AVAudioFifo.
82 * The AVAudioFifo will be reallocated automatically if the available space
83 * is less than nb_samples.
85 * @see enum AVSampleFormat
86 * The documentation for AVSampleFormat describes the data layout.
88 * @param af AVAudioFifo to write to
89 * @param data audio data plane pointers
90 * @param nb_samples number of samples to write
91 * @return number of samples actually written, or negative AVERROR
92 * code on failure. If successful, the number of samples
93 * actually written will always be nb_samples.
95 int av_audio_fifo_write(AVAudioFifo *af, void **data, int nb_samples);
98 * Peek data from an AVAudioFifo.
100 * @see enum AVSampleFormat
101 * The documentation for AVSampleFormat describes the data layout.
103 * @param af AVAudioFifo to read from
104 * @param data audio data plane pointers
105 * @param nb_samples number of samples to peek
106 * @return number of samples actually peek, or negative AVERROR code
107 * on failure. The number of samples actually peek will not
108 * be greater than nb_samples, and will only be less than
109 * nb_samples if av_audio_fifo_size is less than nb_samples.
111 int av_audio_fifo_peek(AVAudioFifo *af, void **data, int nb_samples);
114 * Peek data from an AVAudioFifo.
116 * @see enum AVSampleFormat
117 * The documentation for AVSampleFormat describes the data layout.
119 * @param af AVAudioFifo to read from
120 * @param data audio data plane pointers
121 * @param nb_samples number of samples to peek
122 * @param offset offset from current read position
123 * @return number of samples actually peek, or negative AVERROR code
124 * on failure. The number of samples actually peek will not
125 * be greater than nb_samples, and will only be less than
126 * nb_samples if av_audio_fifo_size is less than nb_samples.
128 int av_audio_fifo_peek_at(AVAudioFifo *af, void **data, int nb_samples, int offset);
131 * Read data from an AVAudioFifo.
133 * @see enum AVSampleFormat
134 * The documentation for AVSampleFormat describes the data layout.
136 * @param af AVAudioFifo to read from
137 * @param data audio data plane pointers
138 * @param nb_samples number of samples to read
139 * @return number of samples actually read, or negative AVERROR code
140 * on failure. The number of samples actually read will not
141 * be greater than nb_samples, and will only be less than
142 * nb_samples if av_audio_fifo_size is less than nb_samples.
144 int av_audio_fifo_read(AVAudioFifo *af, void **data, int nb_samples);
147 * Drain data from an AVAudioFifo.
149 * Removes the data without reading it.
151 * @param af AVAudioFifo to drain
152 * @param nb_samples number of samples to drain
153 * @return 0 if OK, or negative AVERROR code on failure
155 int av_audio_fifo_drain(AVAudioFifo *af, int nb_samples);
158 * Reset the AVAudioFifo buffer.
160 * This empties all data in the buffer.
162 * @param af AVAudioFifo to reset
164 void av_audio_fifo_reset(AVAudioFifo *af);
167 * Get the current number of samples in the AVAudioFifo available for reading.
169 * @param af the AVAudioFifo to query
170 * @return number of samples available for reading
172 int av_audio_fifo_size(AVAudioFifo *af);
175 * Get the current number of samples in the AVAudioFifo available for writing.
177 * @param af the AVAudioFifo to query
178 * @return number of samples available for writing
180 int av_audio_fifo_space(AVAudioFifo *af);
187 #endif /* AVUTIL_AUDIO_FIFO_H */