Add missing error log

Log video buffer initialization failure in v4l2_sink.
This commit is contained in:
Romain Vimont 2021-07-04 15:47:39 +02:00
parent 5caeb2f624
commit 05c8ed1640

View file

@ -161,6 +161,7 @@ sc_v4l2_sink_open(struct sc_v4l2_sink *vs) {
bool ok = sc_video_buffer_init(&vs->vb, &cbs, vs);
if (!ok) {
LOGE("Could not initialize video buffer");
return false;
}