comparsion fix

This commit is contained in:
Devaev Maxim
2021-01-01 09:05:38 +03:00
parent 2ebd1e3d4a
commit 3090de6ff6

View File

@@ -94,6 +94,9 @@ bool frame_compare(const frame_s *a, const frame_s *b) {
return (
a->allocated && b->allocated
&& a->used == b->used
&& a->width == b->width
&& a->height == b->height
&& a->online == b->online
&& !memcmp(a->data, b->data, b->used)
);
}