From c1b0d0da0b43350ded99059372a683326437143b Mon Sep 17 00:00:00 2001 From: hkuang Date: Tue, 14 Oct 2014 11:35:26 -0700 Subject: [PATCH] Correct the format. Change-Id: I59a53b419adda3a609d50b2a82f5a4a54849752e --- vp9/decoder/vp9_decodeframe.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vp9/decoder/vp9_decodeframe.c b/vp9/decoder/vp9_decodeframe.c index 2690f4887..999f777c2 100644 --- a/vp9/decoder/vp9_decodeframe.c +++ b/vp9/decoder/vp9_decodeframe.c @@ -749,7 +749,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");