Add missing new lines to ends of files.

This commit is contained in:
Ari Koivula 2014-02-03 16:32:54 +02:00
parent ac8fbc0519
commit 478740cf21
8 changed files with 5 additions and 8 deletions

View file

@ -263,4 +263,3 @@ void bitstream_flush(bitstream *stream)
//Stream flushed, zero out the values
bitstream_reinit(stream);
}

View file

@ -157,4 +157,4 @@ int config_read(config *cfg,int argc, char *argv[])
if(cfg->input == NULL || cfg->output == NULL) return 0;
return 1;
}
}

View file

@ -49,4 +49,4 @@ int config_init(config *cfg);
int config_destroy(config *cfg);
int config_read(config *cfg,int argc, char *argv[]);
#endif
#endif

View file

@ -160,4 +160,4 @@ typedef int16_t coefficient;
#define MAX_DOUBLE 1.7e+308
#endif
#endif
#endif

View file

@ -441,4 +441,3 @@ uint8_t inter_get_merge_cand(encoder_control *encoder, int32_t x_cu, int32_t y_c
return candidates;
}

View file

@ -133,4 +133,4 @@ void picture_checksum(const picture* pic, unsigned char checksum_out[][SEI_HASH_
/* The number of chroma pixels is half that of luma. */
array_checksum(pic->u_recdata, pic->height >> 1, pic->width >> 1, pic->width >> 1, checksum_out[1]);
array_checksum(pic->v_recdata, pic->height >> 1, pic->width >> 1, pic->width >> 1, checksum_out[2]);
}
}

View file

@ -50,4 +50,4 @@ void sao_reconstruct(picture *pic, const pixel *old_rec,
unsigned x_ctb, unsigned y_ctb,
const sao_info *sao, color_index color_i);
#endif
#endif

View file

@ -236,4 +236,3 @@ SUITE(sad_tests)
sad_setup(0);
}