You've already forked FFmpeg
mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-08-10 06:10:52 +02:00
vsrc_buffer: when no frame is available, return an error instead of segfaulting.
This commit is contained in:
@@ -162,7 +162,7 @@ static int request_frame(AVFilterLink *link)
|
||||
if (!av_fifo_size(c->fifo)) {
|
||||
av_log(link->src, AV_LOG_ERROR,
|
||||
"request_frame() called with no available frame!\n");
|
||||
//return -1;
|
||||
return AVERROR(EINVAL);
|
||||
}
|
||||
av_fifo_generic_read(c->fifo, &buf, sizeof(buf), NULL);
|
||||
|
||||
|
Reference in New Issue
Block a user