projects
/
platform
/
upstream
/
libvpx.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
7205a52
)
Fix typo.
author
Jerome Jiang
<jianj@google.com>
Fri, 11 Jan 2019 22:32:09 +0000
(14:32 -0800)
committer
Jerome Jiang
<jianj@google.com>
Mon, 14 Jan 2019 18:32:58 +0000
(10:32 -0800)
Blocking libvpx update into google3.
Change-Id: I18c29f0a68568e65ae5e0c7fcdb5097b08b586a6
vp9/encoder/vp9_mcomp.h
patch
|
blob
|
history
diff --git
a/vp9/encoder/vp9_mcomp.h
b/vp9/encoder/vp9_mcomp.h
index ab880ff9c7014cbc7de41d763d86f66330989f02..6bef8874758ee162598e4d251d482ef3d4ec0981 100644
(file)
--- a/
vp9/encoder/vp9_mcomp.h
+++ b/
vp9/encoder/vp9_mcomp.h
@@
-167,8
+167,7
@@
static INLINE BLOCK_SIZE get_square_block_size(BLOCK_SIZE bsize) {
case BLOCK_64X64: square_bsize = BLOCK_32X32; break;
default:
square_bsize = BLOCK_INVALID;
- printf("ERROR: invlid block size %d\n", bsize);
- assert(0);
+ assert(0 && "ERROR: invalid block size");
break;
}
return square_bsize;