Library code style update + some minor backports from Pro edition
This commit is contained in:
parent
593b291e85
commit
2607113727
68 changed files with 4538 additions and 4665 deletions
|
@ -61,8 +61,8 @@ namespace theora {
|
|||
if (length < 7){
|
||||
return false;
|
||||
}
|
||||
if (! newData[0] & 0x80){
|
||||
DEBUG_MSG(DLVL_FAIL, "newdata != 0x80: %.2X", newData[0]);
|
||||
if (!(newData[0] & 0x80)){
|
||||
FAIL_MSG("newdata != 0x80: %.2X", newData[0]);
|
||||
return false;
|
||||
}
|
||||
if (memcmp(newData + 1, "theora", 6) != 0){
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue