audio_data.h 6.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177
  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. #ifndef AVRESAMPLE_AUDIO_DATA_H
  21. #define AVRESAMPLE_AUDIO_DATA_H
  22. #include <stdint.h>
  23. #include "libavutil/audio_fifo.h"
  24. #include "libavutil/log.h"
  25. #include "libavutil/samplefmt.h"
  26. #include "avresample.h"
  27. #include "internal.h"
  28. int ff_sample_fmt_is_planar(enum AVSampleFormat sample_fmt, int channels);
  29. /**
  30. * Audio buffer used for intermediate storage between conversion phases.
  31. */
  32. struct AudioData {
  33. const AVClass *class; /**< AVClass for logging */
  34. uint8_t *data[AVRESAMPLE_MAX_CHANNELS]; /**< data plane pointers */
  35. uint8_t *buffer; /**< data buffer */
  36. unsigned int buffer_size; /**< allocated buffer size */
  37. int allocated_samples; /**< number of samples the buffer can hold */
  38. int nb_samples; /**< current number of samples */
  39. enum AVSampleFormat sample_fmt; /**< sample format */
  40. int channels; /**< channel count */
  41. int allocated_channels; /**< allocated channel count */
  42. int is_planar; /**< sample format is planar */
  43. int planes; /**< number of data planes */
  44. int sample_size; /**< bytes per sample */
  45. int stride; /**< sample byte offset within a plane */
  46. int read_only; /**< data is read-only */
  47. int allow_realloc; /**< realloc is allowed */
  48. int ptr_align; /**< minimum data pointer alignment */
  49. int samples_align; /**< allocated samples alignment */
  50. const char *name; /**< name for debug logging */
  51. };
  52. int ff_audio_data_set_channels(AudioData *a, int channels);
  53. /**
  54. * Initialize AudioData using a given source.
  55. *
  56. * This does not allocate an internal buffer. It only sets the data pointers
  57. * and audio parameters.
  58. *
  59. * @param a AudioData struct
  60. * @param src source data pointers
  61. * @param plane_size plane size, in bytes.
  62. * This can be 0 if unknown, but that will lead to
  63. * optimized functions not being used in many cases,
  64. * which could slow down some conversions.
  65. * @param channels channel count
  66. * @param nb_samples number of samples in the source data
  67. * @param sample_fmt sample format
  68. * @param read_only indicates if buffer is read only or read/write
  69. * @param name name for debug logging (can be NULL)
  70. * @return 0 on success, negative AVERROR value on error
  71. */
  72. int ff_audio_data_init(AudioData *a, uint8_t **src, int plane_size, int channels,
  73. int nb_samples, enum AVSampleFormat sample_fmt,
  74. int read_only, const char *name);
  75. /**
  76. * Allocate AudioData.
  77. *
  78. * This allocates an internal buffer and sets audio parameters.
  79. *
  80. * @param channels channel count
  81. * @param nb_samples number of samples to allocate space for
  82. * @param sample_fmt sample format
  83. * @param name name for debug logging (can be NULL)
  84. * @return newly allocated AudioData struct, or NULL on error
  85. */
  86. AudioData *ff_audio_data_alloc(int channels, int nb_samples,
  87. enum AVSampleFormat sample_fmt,
  88. const char *name);
  89. /**
  90. * Reallocate AudioData.
  91. *
  92. * The AudioData must have been previously allocated with ff_audio_data_alloc().
  93. *
  94. * @param a AudioData struct
  95. * @param nb_samples number of samples to allocate space for
  96. * @return 0 on success, negative AVERROR value on error
  97. */
  98. int ff_audio_data_realloc(AudioData *a, int nb_samples);
  99. /**
  100. * Free AudioData.
  101. *
  102. * The AudioData must have been previously allocated with ff_audio_data_alloc().
  103. *
  104. * @param a AudioData struct
  105. */
  106. void ff_audio_data_free(AudioData **a);
  107. /**
  108. * Copy data from one AudioData to another.
  109. *
  110. * @param out output AudioData
  111. * @param in input AudioData
  112. * @param map channel map, NULL if not remapping
  113. * @return 0 on success, negative AVERROR value on error
  114. */
  115. int ff_audio_data_copy(AudioData *out, AudioData *in, ChannelMapInfo *map);
  116. /**
  117. * Append data from one AudioData to the end of another.
  118. *
  119. * @param dst destination AudioData
  120. * @param dst_offset offset, in samples, to start writing, relative to the
  121. * start of dst
  122. * @param src source AudioData
  123. * @param src_offset offset, in samples, to start copying, relative to the
  124. * start of the src
  125. * @param nb_samples number of samples to copy
  126. * @return 0 on success, negative AVERROR value on error
  127. */
  128. int ff_audio_data_combine(AudioData *dst, int dst_offset, AudioData *src,
  129. int src_offset, int nb_samples);
  130. /**
  131. * Drain samples from the start of the AudioData.
  132. *
  133. * Remaining samples are shifted to the start of the AudioData.
  134. *
  135. * @param a AudioData struct
  136. * @param nb_samples number of samples to drain
  137. */
  138. void ff_audio_data_drain(AudioData *a, int nb_samples);
  139. /**
  140. * Add samples in AudioData to an AVAudioFifo.
  141. *
  142. * @param af Audio FIFO Buffer
  143. * @param a AudioData struct
  144. * @param offset number of samples to skip from the start of the data
  145. * @param nb_samples number of samples to add to the FIFO
  146. * @return number of samples actually added to the FIFO, or
  147. * negative AVERROR code on error
  148. */
  149. int ff_audio_data_add_to_fifo(AVAudioFifo *af, AudioData *a, int offset,
  150. int nb_samples);
  151. /**
  152. * Read samples from an AVAudioFifo to AudioData.
  153. *
  154. * @param af Audio FIFO Buffer
  155. * @param a AudioData struct
  156. * @param nb_samples number of samples to read from the FIFO
  157. * @return number of samples actually read from the FIFO, or
  158. * negative AVERROR code on error
  159. */
  160. int ff_audio_data_read_from_fifo(AVAudioFifo *af, AudioData *a, int nb_samples);
  161. #endif /* AVRESAMPLE_AUDIO_DATA_H */