Mercurial > x265
changeset 11907:0925ba3c6214 draft
rename function pointer names for x265_get_slicetype_poc_and_scenecut() and x265_get_ref_frame_list() in x265_api
author | Santhoshini Sekar <santhoshini@multicorewareinc.com> |
---|---|
date | Tue, 07 Nov 2017 12:43:23 +0530 |
parents | 827fa204b5ac |
children | 4ed6afba6047 |
files | source/CMakeLists.txt source/x265.h |
diffstat | 2 files changed, 3 insertions(+-), 3 deletions(-) [+] |
line wrap: on
line diff
--- a/source/CMakeLists.txt Tue Nov 07 12:32:07 2017 +0530 +++ b/source/CMakeLists.txt Tue Nov 07 12:43:23 2017 +0530 @@ -29,7 +29,7 @@ option(NATIVE_BUILD "Target the build CP option(STATIC_LINK_CRT "Statically link C runtime for release builds" OFF) mark_as_advanced(FPROFILE_USE FPROFILE_GENERATE NATIVE_BUILD) # X265_BUILD must be incremented each time the public API is changed -set(X265_BUILD 141) +set(X265_BUILD 142) configure_file("${PROJECT_SOURCE_DIR}/x265.def.in" "${PROJECT_BINARY_DIR}/x265.def") configure_file("${PROJECT_SOURCE_DIR}/x265_config.h.in"
--- a/source/x265.h Tue Nov 07 12:32:07 2017 +0530 +++ b/source/x265.h Tue Nov 07 12:43:23 2017 +0530 @@ -1791,8 +1791,8 @@ typedef struct x265_api int sizeof_frame_stats; /* sizeof(x265_frame_stats) */ int (*encoder_intra_refresh)(x265_encoder*); int (*encoder_ctu_info)(x265_encoder*, int, x265_ctu_info_t**); - int (*x265_get_slicetype_poc_and_scenecut)(x265_encoder*, int*, int*, int*); - int (*x265_get_ref_frame_list)(x265_encoder*, x265_picyuv**, x265_picyuv**, int, int); + int (*get_slicetype_poc_and_scenecut)(x265_encoder*, int*, int*, int*); + int (*get_ref_frame_list)(x265_encoder*, x265_picyuv**, x265_picyuv**, int, int); /* add new pointers to the end, or increment X265_MAJOR_VERSION */ } x265_api;