"Ronald S. Bultje" <[email protected]> writes: > Hi, > > On Sat, Mar 17, 2012 at 3:23 PM, Justin Ruggles > <[email protected]> wrote: >> --- a/libavcodec/audioconvert.h >> +++ b/libavcodec/audioconvert.h >> @@ -48,16 +48,13 @@ typedef struct AVAudioConvert AVAudioConvert; >> /** >> * Create an audio sample format converter context >> * @param out_fmt Output sample format >> - * @param out_channels Number of output channels >> * @param in_fmt Input sample format >> - * @param in_channels Number of input channels >> - * @param[in] matrix Channel mixing matrix (of dimension >> in_channel*out_channels). Set to NULL to ignore. >> - * @param flags See AV_CPU_FLAG_xx >> + * @param channels Number of channels >> * @return NULL on error >> */ >> -AVAudioConvert *av_audio_convert_alloc(enum AVSampleFormat out_fmt, int >> out_channels, >> - enum AVSampleFormat in_fmt, int >> in_channels, >> - const float *matrix, int flags); >> +AVAudioConvert *av_audio_convert_alloc(enum AVSampleFormat out_fmt, >> + enum AVSampleFormat in_fmt, >> + int channels); > > Isn't this a public header?
Doesn't look it is, and that's probably a good thing. -- Måns Rullgård [email protected] _______________________________________________ libav-devel mailing list [email protected] https://lists.libav.org/mailman/listinfo/libav-devel
