Update logs

This commit is contained in:
Kamil Trzcinski
2022-04-11 13:52:46 +02:00
parent 1d6298d248
commit ae12963c6e
23 changed files with 157 additions and 167 deletions

View File

@ -53,10 +53,10 @@ bool h264_is_key_frame(buffer_t *buf)
unsigned char *data = buf->start;
if (buf->flags.is_keyframe) {
E_LOG_DEBUG(buf, "Got key frame (from V4L2)!");
LOG_DEBUG(buf, "Got key frame (from V4L2)!");
return true;
} else if (buf->used >= 5 && (data[4] & 0x1F) == 0x07) {
E_LOG_DEBUG(buf, "Got key frame (from buffer)!");
LOG_DEBUG(buf, "Got key frame (from buffer)!");
return true;
}