Skip to content

Commit

Permalink
mark VVC encoder config as experimental (#1108)
Browse files Browse the repository at this point in the history
  • Loading branch information
farindk committed Jun 22, 2024
1 parent 3b3a54d commit e2bbc5b
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -93,8 +93,8 @@ macro(plugin_compilation_info optionVariableName detectionVariable displayName)
endif ()

string(LENGTH "${displayName}" len)
math(EXPR fill "29 - ${len}")
string(SUBSTRING " " 0 ${fill} filler)
math(EXPR fill "32 - ${len}")
string(SUBSTRING " " 0 ${fill} filler)
message("${displayName}${filler}: ${msg}")
unset(msg)
endmacro()
Expand Down Expand Up @@ -127,7 +127,7 @@ endif ()

# uvg266

plugin_option(UVG266 "uvg266 VVC encoder" OFF OFF)
plugin_option(UVG266 "uvg266 VVC encoder (experimental)" OFF OFF)
if (WITH_UVG266)
find_package(UVG266)
if ("${HAVE_UVG266_ENABLE_LOGGING}")
Expand Down Expand Up @@ -210,7 +210,7 @@ plugin_compilation_info(JPEG_DECODER JPEG "JPEG decoder")
plugin_compilation_info(JPEG_ENCODER JPEG "JPEG encoder")
plugin_compilation_info(OpenJPEG_DECODER OpenJPEG "OpenJPEG J2K decoder")
plugin_compilation_info(OpenJPEG_ENCODER OpenJPEG "OpenJPEG J2K encoder")
plugin_compilation_info(UVG266_ENCODER UVG266 "uvg266 VCC encoder")
plugin_compilation_info(UVG266_ENCODER UVG266 "uvg266 VVC enc. (experimental)")


# --- Libsharpyuv color space transforms
Expand Down

0 comments on commit e2bbc5b

Please sign in to comment.