nobuffer与av_read_frame的关系

简介: nobuffer与av_read_frame的关系

AVDictionary *options = NULL;

av_dict_set(&options, “fflags”, “nobuffer”, 0);

int re = avformat_open_input(&ic, URL, NULL, &options);

av_read_frame在读取视频后,开始解码在最开始几帧avcodec_receive_frame并不会得到解码后的数据,这个函数返回值是AVERROR(EAGAIN)。没有设置nobuffer和设置nobuffer,以上结果都返回AVERROR(EAGAIN)。

但设置了后,av_read_frame不阻塞,直接返回,不设置,av_read_frame会阻塞。不过等过几帧后avcodec_receive_frame正常出数据,av_read_frame和平常一样,也会阻塞直到读到数据才取消阻塞。


thxchtb3wcn3k_d11fc1ff3db9431d8ad7575e9297ae48.png

相关文章
|
2月前
列分Frame
列分Frame。
21 4
|
2月前
行分Frame
行分Frame。
32 3
|
3月前
Frame
Frame。
34 1
|
存储
av_register_all分析
av_register_all分析
98 0
av_register_all分析
ffmpeg编码报错:more samples than frame size (avcodec_encode_audio2)
ffmpeg编码报错:more samples than frame size (avcodec_encode_audio2)
136 0
ffmpeg编码报错:more samples than frame size (avcodec_encode_audio2)
|
网络协议
av_interleaved_write_frame -32 broken pipe
av_interleaved_write_frame -32 broken pipe
290 0
av_interleaved_write_frame -32 broken pipe
|
算法
frame_size (1536) was not respected for a non-last frame
frame_size (1536) was not respected for a non-last frame
110 0
frame_size (1536) was not respected for a non-last frame
av_read_frame每次返回的视频和音频帧数
av_read_frame每次返回的视频和音频帧数
86 0
av_read_frame每次返回的视频和音频帧数
|
索引
av_find_best_stream
av_find_best_stream
151 0
av_find_best_stream
AVPacket结构体内几个变量分析
AVPacket结构体内几个变量分析
61 0
AVPacket结构体内几个变量分析

热门文章

最新文章