We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2ba57aa commit 5ea4939Copy full SHA for 5ea4939
src/obu.c
@@ -1550,7 +1550,8 @@ ptrdiff_t dav1d_parse_obus(Dav1dContext *const c, Dav1dData *const in) {
1550
break;
1551
default:
1552
// print a warning but don't fail for unknown types
1553
- dav1d_log(c, "Unknown Metadata OBU type %d\n", meta_type);
+ if (meta_type > 31) // Types 6 to 31 are "Unregistered user private", so ignore them.
1554
+ dav1d_log(c, "Unknown Metadata OBU type %d\n", meta_type);
1555
1556
}
1557
0 commit comments