summaryrefslogtreecommitdiff
path: root/vp9/decoder
diff options
context:
space:
mode:
authorhkuang <hkuang@google.com>2014-10-14 13:45:11 -0700
committerGerrit Code Review <gerrit@gerrit.golo.chromium.org>2014-10-14 13:45:11 -0700
commitcf608110fc13a6158dcd4cdb649498dccb97b9c4 (patch)
tree49869d4b125b4f02c4b97acc08fcba93b2bc855c /vp9/decoder
parentf67e75a6f4a6972cabde2ffe80d386e9b06d8f60 (diff)
parentc1b0d0da0b43350ded99059372a683326437143b (diff)
downloadlibvpx-cf608110fc13a6158dcd4cdb649498dccb97b9c4.tar
libvpx-cf608110fc13a6158dcd4cdb649498dccb97b9c4.tar.gz
libvpx-cf608110fc13a6158dcd4cdb649498dccb97b9c4.tar.bz2
libvpx-cf608110fc13a6158dcd4cdb649498dccb97b9c4.zip
Merge "Correct the format."
Diffstat (limited to 'vp9/decoder')
-rw-r--r--vp9/decoder/vp9_decodeframe.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/vp9/decoder/vp9_decodeframe.c b/vp9/decoder/vp9_decodeframe.c
index d7bcf7c66..dc712f045 100644
--- a/vp9/decoder/vp9_decodeframe.c
+++ b/vp9/decoder/vp9_decodeframe.c
@@ -747,7 +747,7 @@ static void setup_frame_size_with_refs(VP9_COMMON *cm,
if (!found)
vp9_read_frame_size(rb, &width, &height);
- if (width <=0 || height <= 0)
+ if (width <= 0 || height <= 0)
vpx_internal_error(&cm->error, VPX_CODEC_CORRUPT_FRAME,
"Invalid frame size");