Fix an indent
authorYunqing Wang <yunqingwang@google.com>
Mon, 31 Aug 2015 15:41:50 +0000 (08:41 -0700)
committerYunqing Wang <yunqingwang@google.com>
Mon, 31 Aug 2015 15:41:50 +0000 (08:41 -0700)
An indent fix in bitstream.c.

Change-Id: Ia47e9ac5b01490cb2173a254444848b7bed56e5c

vp10/encoder/bitstream.c

index ef1cf5d..cc62b6f 100644 (file)
@@ -996,7 +996,7 @@ static void write_frame_size_with_refs(VP10_COMP *cpi,
   for (ref_frame = LAST_FRAME; ref_frame <= ALTREF_FRAME; ++ref_frame) {
     YV12_BUFFER_CONFIG *cfg = get_ref_frame_buffer(cpi, ref_frame);
 
-  if (cfg != NULL) {
+    if (cfg != NULL) {
       found = cm->width == cfg->y_crop_width &&
               cm->height == cfg->y_crop_height;
     }