Bump version to 0.6.0

This commit is contained in:
Marko Viitanen 2015-09-15 15:44:55 +03:00
parent 5b3f2a6229
commit d8b50d6951
3 changed files with 3 additions and 3 deletions

View file

@ -236,7 +236,7 @@ void print_version(void)
fprintf(stderr,
"/***********************************************/\n"
" * Kvazaar HEVC Encoder v. " VERSION_STRING " *\n"
" * Tampere University of Technology 2014 *\n"
" * Tampere University of Technology 2015 *\n"
"/***********************************************/\n\n");
}

View file

@ -485,7 +485,7 @@ static void encoder_state_write_bitstream_prefix_sei_version(encoder_state_t * c
// user_data_payload_byte
s += sprintf(s, "Kvazaar HEVC Encoder v. " VERSION_STRING " - "
"Copyleft 2012-2014 - http://ultravideo.cs.tut.fi/ - options:");
"Copyleft 2012-2015 - http://ultravideo.cs.tut.fi/ - options:");
s += sprintf(s, " %dx%d", cfg->width, cfg->height);
s += sprintf(s, " deblock=%d:%d:%d", cfg->deblock_enable,
cfg->deblock_beta, cfg->deblock_tc);

View file

@ -141,7 +141,7 @@ typedef int16_t coeff_t;
#define QUOTE(x) #x
#define QUOTE_EXPAND(x) QUOTE(x)
#define KVZ_VERSION 0.5.0
#define KVZ_VERSION 0.6.0
#define VERSION_STRING QUOTE_EXPAND(KVZ_VERSION)
//#define VERBOSE 1