Skip to content

Commit

Permalink
Bump revision to v0.2.0 (#105)
Browse files Browse the repository at this point in the history
Signed-off-by: Jun Tian <[email protected]>
  • Loading branch information
tianjunwork authored May 5, 2020
1 parent 1a5a408 commit fee9c46
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 4 deletions.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ endif()
message(STATUS "CMAKE_INSTALL_PREFIX = ${CMAKE_INSTALL_PREFIX}")

set(SVT_VP9_VERSION_MAJOR "0")
set(SVT_VP9_VERSION_MINOR "1")
set(SVT_VP9_VERSION_MINOR "2")
set(SVT_VP9_VERSION_PATCHLEVEL "0")

configure_file(${PROJECT_SOURCE_DIR}/Source/API/EbApiVersion.h.in ${PROJECT_SOURCE_DIR}/Source/API/EbApiVersion.h @ONLY)
Expand Down
3 changes: 0 additions & 3 deletions Source/App/EbAppMain.c
Original file line number Diff line number Diff line change
Expand Up @@ -104,9 +104,6 @@ int32_t main(int32_t argc, char* argv[])
uint32_t instance_count=0;
EbAppContext *app_callbacks[MAX_CHANNEL_NUMBER]; // Instances App callback data
signal(SIGINT, EventHandler);
printf("-------------------------------------\n");
printf("SVT-VP9 Encoder v0.1.0\n");
fflush(stdout);

// Get num_channels
num_channels = get_number_of_channels(argc, argv);
Expand Down
1 change: 1 addition & 0 deletions Source/Lib/Codec/EbEncHandle.c
Original file line number Diff line number Diff line change
Expand Up @@ -2877,6 +2877,7 @@ static EbErrorType init_svt_vp9_encoder_handle(
EbErrorType return_error = EB_ErrorNone;
EbComponentType *svt_enc_component = (EbComponentType*)h_component;

SVT_LOG("-------------------------------------------\n");
SVT_LOG("SVT [version]\t: SVT-VP9 Encoder Lib v%d.%d.%d\n", SVT_VERSION_MAJOR, SVT_VERSION_MINOR, SVT_VERSION_PATCHLEVEL);
#if ( defined( _MSC_VER ) && (_MSC_VER < 1910) )
SVT_LOG("SVT [build]\t: Visual Studio 2013");
Expand Down

0 comments on commit fee9c46

Please sign in to comment.