vsrc_buffer: when no frame is available, return an error instead of segfaulting.

This commit is contained in:
Anton Khirnov 2012-04-01 15:18:00 +02:00
parent cfec77aaf8
commit a03f8ea0a8
1 changed files with 1 additions and 1 deletions

View File

@ -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);