Skip to content

Commit

Permalink
Bump version to 0.6.0
Browse files Browse the repository at this point in the history
  • Loading branch information
fador committed Sep 15, 2015
1 parent 5b3f2a6 commit d8b50d6
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/cli.c
Original file line number Diff line number Diff line change
Expand Up @@ -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");
}

Expand Down
2 changes: 1 addition & 1 deletion src/encoder_state-bitstream.c
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down
2 changes: 1 addition & 1 deletion src/global.h
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit d8b50d6

Please sign in to comment.