FFmpeg
audio_data.h
Go to the documentation of this file.
1 /*
2  * Copyright (c) 2012 Justin Ruggles <justin.ruggles@gmail.com>
3  *
4  * This file is part of FFmpeg.
5  *
6  * FFmpeg is free software; you can redistribute it and/or
7  * modify it under the terms of the GNU Lesser General Public
8  * License as published by the Free Software Foundation; either
9  * version 2.1 of the License, or (at your option) any later version.
10  *
11  * FFmpeg is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14  * Lesser General Public License for more details.
15  *
16  * You should have received a copy of the GNU Lesser General Public
17  * License along with FFmpeg; if not, write to the Free Software
18  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
19  */
20 
21 #ifndef AVRESAMPLE_AUDIO_DATA_H
22 #define AVRESAMPLE_AUDIO_DATA_H
23 
24 #include <stdint.h>
25 
26 #include "libavutil/audio_fifo.h"
27 #include "libavutil/log.h"
28 #include "libavutil/samplefmt.h"
29 #include "avresample.h"
30 #include "internal.h"
31 
32 int ff_sample_fmt_is_planar(enum AVSampleFormat sample_fmt, int channels);
33 
34 /**
35  * Audio buffer used for intermediate storage between conversion phases.
36  */
37 struct AudioData {
38  const AVClass *class; /**< AVClass for logging */
39  uint8_t *data[AVRESAMPLE_MAX_CHANNELS]; /**< data plane pointers */
40  uint8_t *buffer; /**< data buffer */
41  unsigned int buffer_size; /**< allocated buffer size */
42  int allocated_samples; /**< number of samples the buffer can hold */
43  int nb_samples; /**< current number of samples */
44  enum AVSampleFormat sample_fmt; /**< sample format */
45  int channels; /**< channel count */
46  int allocated_channels; /**< allocated channel count */
47  int is_planar; /**< sample format is planar */
48  int planes; /**< number of data planes */
49  int sample_size; /**< bytes per sample */
50  int stride; /**< sample byte offset within a plane */
51  int read_only; /**< data is read-only */
52  int allow_realloc; /**< realloc is allowed */
53  int ptr_align; /**< minimum data pointer alignment */
54  int samples_align; /**< allocated samples alignment */
55  const char *name; /**< name for debug logging */
56 };
57 
59 
60 /**
61  * Initialize AudioData using a given source.
62  *
63  * This does not allocate an internal buffer. It only sets the data pointers
64  * and audio parameters.
65  *
66  * @param a AudioData struct
67  * @param src source data pointers
68  * @param plane_size plane size, in bytes.
69  * This can be 0 if unknown, but that will lead to
70  * optimized functions not being used in many cases,
71  * which could slow down some conversions.
72  * @param channels channel count
73  * @param nb_samples number of samples in the source data
74  * @param sample_fmt sample format
75  * @param read_only indicates if buffer is read only or read/write
76  * @param name name for debug logging (can be NULL)
77  * @return 0 on success, negative AVERROR value on error
78  */
79 int ff_audio_data_init(AudioData *a, uint8_t * const *src, int plane_size,
80  int channels, int nb_samples,
81  enum AVSampleFormat sample_fmt, int read_only,
82  const char *name);
83 
84 /**
85  * Allocate AudioData.
86  *
87  * This allocates an internal buffer and sets audio parameters.
88  *
89  * @param channels channel count
90  * @param nb_samples number of samples to allocate space for
91  * @param sample_fmt sample format
92  * @param name name for debug logging (can be NULL)
93  * @return newly allocated AudioData struct, or NULL on error
94  */
95 AudioData *ff_audio_data_alloc(int channels, int nb_samples,
96  enum AVSampleFormat sample_fmt,
97  const char *name);
98 
99 /**
100  * Reallocate AudioData.
101  *
102  * The AudioData must have been previously allocated with ff_audio_data_alloc().
103  *
104  * @param a AudioData struct
105  * @param nb_samples number of samples to allocate space for
106  * @return 0 on success, negative AVERROR value on error
107  */
108 int ff_audio_data_realloc(AudioData *a, int nb_samples);
109 
110 /**
111  * Free AudioData.
112  *
113  * The AudioData must have been previously allocated with ff_audio_data_alloc().
114  *
115  * @param a AudioData struct
116  */
118 
119 /**
120  * Copy data from one AudioData to another.
121  *
122  * @param out output AudioData
123  * @param in input AudioData
124  * @param map channel map, NULL if not remapping
125  * @return 0 on success, negative AVERROR value on error
126  */
128 
129 /**
130  * Append data from one AudioData to the end of another.
131  *
132  * @param dst destination AudioData
133  * @param dst_offset offset, in samples, to start writing, relative to the
134  * start of dst
135  * @param src source AudioData
136  * @param src_offset offset, in samples, to start copying, relative to the
137  * start of the src
138  * @param nb_samples number of samples to copy
139  * @return 0 on success, negative AVERROR value on error
140  */
141 int ff_audio_data_combine(AudioData *dst, int dst_offset, AudioData *src,
142  int src_offset, int nb_samples);
143 
144 /**
145  * Drain samples from the start of the AudioData.
146  *
147  * Remaining samples are shifted to the start of the AudioData.
148  *
149  * @param a AudioData struct
150  * @param nb_samples number of samples to drain
151  */
152 void ff_audio_data_drain(AudioData *a, int nb_samples);
153 
154 /**
155  * Add samples in AudioData to an AVAudioFifo.
156  *
157  * @param af Audio FIFO Buffer
158  * @param a AudioData struct
159  * @param offset number of samples to skip from the start of the data
160  * @param nb_samples number of samples to add to the FIFO
161  * @return number of samples actually added to the FIFO, or
162  * negative AVERROR code on error
163  */
165  int nb_samples);
166 
167 /**
168  * Read samples from an AVAudioFifo to AudioData.
169  *
170  * @param af Audio FIFO Buffer
171  * @param a AudioData struct
172  * @param nb_samples number of samples to read from the FIFO
173  * @return number of samples actually read from the FIFO, or
174  * negative AVERROR code on error
175  */
176 int ff_audio_data_read_from_fifo(AVAudioFifo *af, AudioData *a, int nb_samples);
177 
178 #endif /* AVRESAMPLE_AUDIO_DATA_H */
ff_audio_data_realloc
int ff_audio_data_realloc(AudioData *a, int nb_samples)
Reallocate AudioData.
Definition: audio_data.c:162
AudioData::buffer
uint8_t * buffer
data buffer
Definition: audio_data.h:40
name
it s the only field you need to keep assuming you have a context There is some magic you don t need to care about around this just let it vf default minimum maximum flags name is the option name
Definition: writing_filters.txt:88
out
FILE * out
Definition: movenc.c:54
ff_sample_fmt_is_planar
int ff_sample_fmt_is_planar(enum AVSampleFormat sample_fmt, int channels)
Definition: audio_data.c:51
AVRESAMPLE_MAX_CHANNELS
#define AVRESAMPLE_MAX_CHANNELS
Definition: avresample.h:104
ff_audio_data_init
int ff_audio_data_init(AudioData *a, uint8_t *const *src, int plane_size, int channels, int nb_samples, enum AVSampleFormat sample_fmt, int read_only, const char *name)
Initialize AudioData using a given source.
Definition: audio_data.c:73
AudioData::data
uint8_t * data[AVRESAMPLE_MAX_CHANNELS]
data plane pointers
Definition: audio_data.h:39
avresample.h
AudioData
Audio buffer used for intermediate storage between conversion phases.
Definition: audio_data.h:37
AVAudioFifo
Context for an Audio FIFO Buffer.
Definition: audio_fifo.c:34
ChannelMapInfo
Definition: internal.h:43
samplefmt.h
AudioData::samples_align
int samples_align
allocated samples alignment
Definition: audio_data.h:54
ff_audio_data_free
void ff_audio_data_free(AudioData **a)
Free AudioData.
Definition: audio_data.c:217
ff_audio_data_read_from_fifo
int ff_audio_data_read_from_fifo(AVAudioFifo *af, AudioData *a, int nb_samples)
Read samples from an AVAudioFifo to AudioData.
Definition: audio_data.c:366
ff_audio_data_combine
int ff_audio_data_combine(AudioData *dst, int dst_offset, AudioData *src, int src_offset, int nb_samples)
Append data from one AudioData to the end of another.
Definition: audio_data.c:278
channels
channels
Definition: aptx.h:33
AudioData::allocated_samples
int allocated_samples
number of samples the buffer can hold
Definition: audio_data.h:42
AVClass
Describe the class of an AVClass context structure.
Definition: log.h:67
AudioData::sample_fmt
enum AVSampleFormat sample_fmt
sample format
Definition: audio_data.h:44
AudioData::buffer_size
unsigned int buffer_size
allocated buffer size
Definition: audio_data.h:41
src
#define src
Definition: vp8dsp.c:255
ff_audio_data_alloc
AudioData * ff_audio_data_alloc(int channels, int nb_samples, enum AVSampleFormat sample_fmt, const char *name)
Allocate AudioData.
Definition: audio_data.c:119
internal.h
AudioData::planes
int planes
number of data planes
Definition: audio_data.h:48
AudioData::ptr_align
int ptr_align
minimum data pointer alignment
Definition: audio_data.h:53
AudioData::name
const char * name
name for debug logging
Definition: audio_data.h:55
a
The reader does not expect b to be semantically here and if the code is changed by maybe adding a a division or other the signedness will almost certainly be mistaken To avoid this confusion a new type was SUINT is the C unsigned type but it holds a signed int to use the same example SUINT a
Definition: undefined.txt:41
offset
it s the only field you need to keep assuming you have a context There is some magic you don t need to care about around this just let it vf offset
Definition: writing_filters.txt:86
AudioData::allow_realloc
int allow_realloc
realloc is allowed
Definition: audio_data.h:52
in
uint8_t pi<< 24) CONV_FUNC_GROUP(AV_SAMPLE_FMT_FLT, float, AV_SAMPLE_FMT_U8, uint8_t,(*(const uint8_t *) pi - 0x80) *(1.0f/(1<< 7))) CONV_FUNC_GROUP(AV_SAMPLE_FMT_DBL, double, AV_SAMPLE_FMT_U8, uint8_t,(*(const uint8_t *) pi - 0x80) *(1.0/(1<< 7))) CONV_FUNC_GROUP(AV_SAMPLE_FMT_U8, uint8_t, AV_SAMPLE_FMT_S16, int16_t,(*(const int16_t *) pi >> 8)+0x80) CONV_FUNC_GROUP(AV_SAMPLE_FMT_FLT, float, AV_SAMPLE_FMT_S16, int16_t, *(const int16_t *) pi *(1.0f/(1<< 15))) CONV_FUNC_GROUP(AV_SAMPLE_FMT_DBL, double, AV_SAMPLE_FMT_S16, int16_t, *(const int16_t *) pi *(1.0/(1<< 15))) CONV_FUNC_GROUP(AV_SAMPLE_FMT_U8, uint8_t, AV_SAMPLE_FMT_S32, int32_t,(*(const int32_t *) pi >> 24)+0x80) CONV_FUNC_GROUP(AV_SAMPLE_FMT_FLT, float, AV_SAMPLE_FMT_S32, int32_t, *(const int32_t *) pi *(1.0f/(1U<< 31))) CONV_FUNC_GROUP(AV_SAMPLE_FMT_DBL, double, AV_SAMPLE_FMT_S32, int32_t, *(const int32_t *) pi *(1.0/(1U<< 31))) CONV_FUNC_GROUP(AV_SAMPLE_FMT_U8, uint8_t, AV_SAMPLE_FMT_FLT, float, av_clip_uint8(lrintf(*(const float *) pi *(1<< 7))+0x80)) CONV_FUNC_GROUP(AV_SAMPLE_FMT_S16, int16_t, AV_SAMPLE_FMT_FLT, float, av_clip_int16(lrintf(*(const float *) pi *(1<< 15)))) CONV_FUNC_GROUP(AV_SAMPLE_FMT_S32, int32_t, AV_SAMPLE_FMT_FLT, float, av_clipl_int32(llrintf(*(const float *) pi *(1U<< 31)))) CONV_FUNC_GROUP(AV_SAMPLE_FMT_U8, uint8_t, AV_SAMPLE_FMT_DBL, double, av_clip_uint8(lrint(*(const double *) pi *(1<< 7))+0x80)) CONV_FUNC_GROUP(AV_SAMPLE_FMT_S16, int16_t, AV_SAMPLE_FMT_DBL, double, av_clip_int16(lrint(*(const double *) pi *(1<< 15)))) CONV_FUNC_GROUP(AV_SAMPLE_FMT_S32, int32_t, AV_SAMPLE_FMT_DBL, double, av_clipl_int32(llrint(*(const double *) pi *(1U<< 31)))) #define SET_CONV_FUNC_GROUP(ofmt, ifmt) static void set_generic_function(AudioConvert *ac) { } void ff_audio_convert_free(AudioConvert **ac) { if(! *ac) return;ff_dither_free(&(*ac) ->dc);av_freep(ac);} AudioConvert *ff_audio_convert_alloc(AVAudioResampleContext *avr, enum AVSampleFormat out_fmt, enum AVSampleFormat in_fmt, int channels, int sample_rate, int apply_map) { AudioConvert *ac;int in_planar, out_planar;ac=av_mallocz(sizeof(*ac));if(!ac) return NULL;ac->avr=avr;ac->out_fmt=out_fmt;ac->in_fmt=in_fmt;ac->channels=channels;ac->apply_map=apply_map;if(avr->dither_method !=AV_RESAMPLE_DITHER_NONE &&av_get_packed_sample_fmt(out_fmt)==AV_SAMPLE_FMT_S16 &&av_get_bytes_per_sample(in_fmt) > 2) { ac->dc=ff_dither_alloc(avr, out_fmt, in_fmt, channels, sample_rate, apply_map);if(!ac->dc) { av_free(ac);return NULL;} return ac;} in_planar=ff_sample_fmt_is_planar(in_fmt, channels);out_planar=ff_sample_fmt_is_planar(out_fmt, channels);if(in_planar==out_planar) { ac->func_type=CONV_FUNC_TYPE_FLAT;ac->planes=in_planar ? ac->channels :1;} else if(in_planar) ac->func_type=CONV_FUNC_TYPE_INTERLEAVE;else ac->func_type=CONV_FUNC_TYPE_DEINTERLEAVE;set_generic_function(ac);if(ARCH_AARCH64) ff_audio_convert_init_aarch64(ac);if(ARCH_ARM) ff_audio_convert_init_arm(ac);if(ARCH_X86) ff_audio_convert_init_x86(ac);return ac;} int ff_audio_convert(AudioConvert *ac, AudioData *out, AudioData *in) { int use_generic=1;int len=in->nb_samples;int p;if(ac->dc) { av_log(ac->avr, AV_LOG_TRACE, "%d samples - audio_convert: %s to %s (dithered)\n", len, av_get_sample_fmt_name(ac->in_fmt), av_get_sample_fmt_name(ac->out_fmt));return ff_convert_dither(ac-> in
Definition: audio_convert.c:326
log.h
ff_audio_data_copy
int ff_audio_data_copy(AudioData *out, AudioData *in, ChannelMapInfo *map)
Copy data from one AudioData to another.
Definition: audio_data.c:225
AudioData::allocated_channels
int allocated_channels
allocated channel count
Definition: audio_data.h:46
ff_audio_data_add_to_fifo
int ff_audio_data_add_to_fifo(AVAudioFifo *af, AudioData *a, int offset, int nb_samples)
Add samples in AudioData to an AVAudioFifo.
Definition: audio_data.c:351
AVSampleFormat
AVSampleFormat
Audio sample formats.
Definition: samplefmt.h:58
uint8_t
uint8_t
Definition: audio_convert.c:194
audio_fifo.h
AudioData::read_only
int read_only
data is read-only
Definition: audio_data.h:51
AudioData::nb_samples
int nb_samples
current number of samples
Definition: audio_data.h:43
ff_audio_data_drain
void ff_audio_data_drain(AudioData *a, int nb_samples)
Drain samples from the start of the AudioData.
Definition: audio_data.c:334
AudioData::sample_size
int sample_size
bytes per sample
Definition: audio_data.h:49
map
const VDPAUPixFmtMap * map
Definition: hwcontext_vdpau.c:71
AudioData::channels
int channels
channel count
Definition: audio_data.h:45
AudioData::stride
int stride
sample byte offset within a plane
Definition: audio_data.h:50
ff_audio_data_set_channels
int ff_audio_data_set_channels(AudioData *a, int channels)
Definition: audio_data.c:59
AudioData::is_planar
int is_planar
sample format is planar
Definition: audio_data.h:47