fix libav when DISABLE_FFMPEG is used

This commit is contained in:
nick black 2019-12-30 07:04:07 -05:00
parent 99541cc036
commit e03653b964
No known key found for this signature in database
GPG Key ID: 5F43400C21CBFACC

View File

@ -461,11 +461,13 @@ int ncvisual_render(const ncvisual* ncv, int begy, int begx, int leny, int lenx)
return -1;
}
int ncvisual_stream(notcurses* nc, ncvisual* ncv, int* averr, streamcb streamer){
int ncvisual_stream(notcurses* nc, ncvisual* ncv, int* averr,
streamcb streamer, void* curry){
(void)nc;
(void)ncv;
(void)averr;
(void)streamer;
(void)curry;
return -1;
}