ffmpeg函数01__swr_convert()
Posted xpylovely
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了ffmpeg函数01__swr_convert()相关的知识,希望对你有一定的参考价值。
swr_convert()
针对每一帧音频的处理。把一帧帧的音频作相应的重采样
int swr_convert(struct SwrContext *s, uint8_t **out, int out_count, const uint8_t **in, int in_count);
参数1:音频重采样的上下文
参数2:输出的指针。传递的输出的数组
参数3:输出的样本数量,不是字节数。单通道的样本数量。
参数4:输入的数组,AVFrame解码出来的DATA
参数5:输入的单通道的样本数量。
以上是关于ffmpeg函数01__swr_convert()的主要内容,如果未能解决你的问题,请参考以下文章
使用sws_scale转换视频使用swr_convert转换音频
使用sws_scale转换视频使用swr_convert转换音频
ffmpeg函数04__v_register_output_format()