libswresample/audioconvert.h
b5875b91
 /*
  * audio conversion
  * Copyright (c) 2006 Michael Niedermayer <michaelni@gmx.at>
  * Copyright (c) 2008 Peter Ross
  *
  * This file is part of FFmpeg.
  *
  * FFmpeg is free software; you can redistribute it and/or
  * modify it under the terms of the GNU Lesser General Public
  * License as published by the Free Software Foundation; either
  * version 2.1 of the License, or (at your option) any later version.
  *
  * FFmpeg is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
  * Lesser General Public License for more details.
  *
  * You should have received a copy of the GNU Lesser General Public
  * License along with FFmpeg; if not, write to the Free Software
  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  */
 
180f9a09
 #ifndef SWRESAMPLE_AUDIOCONVERT_H
 #define SWRESAMPLE_AUDIOCONVERT_H
b5875b91
 
 /**
  * @file
  * Audio format conversion routines
  */
 
 
 #include "swresample_internal.h"
 #include "libavutil/cpu.h"
 
06b62cb8
 
 typedef void (conv_func_type)(uint8_t *po, const uint8_t *pi, int is, int os, uint8_t *end);
bcc66ff0
 typedef void (simd_func_type)(uint8_t **dst, const uint8_t **src, int len);
06b62cb8
 
 typedef struct AudioConvert {
     int channels;
ceb9f8d9
     int  in_simd_align_mask;
     int out_simd_align_mask;
06b62cb8
     conv_func_type *conv_f;
bcc66ff0
     simd_func_type *simd_f;
06b62cb8
     const int *ch_map;
     uint8_t silence[8]; ///< silence input sample
 }AudioConvert;
b5875b91
 
 /**
  * Create an audio sample format converter context
  * @param out_fmt Output sample format
  * @param in_fmt Input sample format
  * @param channels Number of channels
  * @param flags See AV_CPU_FLAG_xx
f5cd136f
  * @param ch_map list of the channels id to pick from the source stream, NULL
  *               if all channels must be selected
b5875b91
  * @return NULL on error
  */
fc6351d0
 AudioConvert *swri_audio_convert_alloc(enum AVSampleFormat out_fmt,
                                        enum AVSampleFormat in_fmt,
                                        int channels, const int *ch_map,
                                        int flags);
b5875b91
 
 /**
  * Free audio sample format converter context.
  * and set the pointer to NULL
  */
fc6351d0
 void swri_audio_convert_free(AudioConvert **ctx);
b5875b91
 
 /**
  * Convert between audio sample formats
  * @param[in] out array of output buffers for each channel. set to NULL to ignore processing of the given channel.
  * @param[in] in array of input buffers for each channel
  * @param len length of audio frame size (measured in samples)
  */
fc6351d0
 int swri_audio_convert(AudioConvert *ctx, AudioData *out, AudioData *in, int len);
b5875b91
 
180f9a09
 #endif /* SWRESAMPLE_AUDIOCONVERT_H */