mirror of https://git.ffmpeg.org/ffmpeg.git
swresample/swresample: Fix mismatching argument names
This commit is contained in:
parent
3fbf8d6e1d
commit
eb60ffb144
|
@ -354,8 +354,8 @@ int swr_convert(struct SwrContext *s, uint8_t **out, int out_count,
|
||||||
* in this case the output timestamps will match output sample numbers.
|
* in this case the output timestamps will match output sample numbers.
|
||||||
* See ffmpeg-resampler(1) for the two modes of compensation.
|
* See ffmpeg-resampler(1) for the two modes of compensation.
|
||||||
*
|
*
|
||||||
* @param s[in] initialized Swr context
|
* @param[in] s initialized Swr context
|
||||||
* @param pts[in] timestamp for the next input sample, INT64_MIN if unknown
|
* @param[in] pts timestamp for the next input sample, INT64_MIN if unknown
|
||||||
* @see swr_set_compensation(), swr_drop_output(), and swr_inject_silence() are
|
* @see swr_set_compensation(), swr_drop_output(), and swr_inject_silence() are
|
||||||
* function used internally for timestamp compensation.
|
* function used internally for timestamp compensation.
|
||||||
* @return the output timestamp for the next output sample
|
* @return the output timestamp for the next output sample
|
||||||
|
@ -636,8 +636,8 @@ int swr_convert_frame(SwrContext *swr,
|
||||||
* @see swr_close();
|
* @see swr_close();
|
||||||
*
|
*
|
||||||
* @param swr audio resample context
|
* @param swr audio resample context
|
||||||
* @param output output AVFrame
|
* @param out output AVFrame
|
||||||
* @param input input AVFrame
|
* @param in input AVFrame
|
||||||
* @return 0 on success, AVERROR on failure.
|
* @return 0 on success, AVERROR on failure.
|
||||||
*/
|
*/
|
||||||
int swr_config_frame(SwrContext *swr, const AVFrame *out, const AVFrame *in);
|
int swr_config_frame(SwrContext *swr, const AVFrame *out, const AVFrame *in);
|
||||||
|
|
Loading…
Reference in New Issue