Commit c2b9bd97 authored by Anton Khirnov's avatar Anton Khirnov

asrc_anullsrc: return EOF, not -1

parent f4281f45
...@@ -31,7 +31,7 @@ ...@@ -31,7 +31,7 @@
static int request_frame(AVFilterLink *link) static int request_frame(AVFilterLink *link)
{ {
return -1; return AVERROR_EOF;
} }
static const AVFilterPad avfilter_asrc_anullsrc_outputs[] = { static const AVFilterPad avfilter_asrc_anullsrc_outputs[] = {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment