Skip to content

Commit

Permalink
show rav1e version in plugin name
Browse files Browse the repository at this point in the history
  • Loading branch information
farindk committed Nov 19, 2024
1 parent b2f86f6 commit 6171853
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion libheif/plugins/encoder_rav1e.cc
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ static void rav1e_set_default_parameters(void* encoder);

static const char* rav1e_plugin_name()
{
strcpy(plugin_name, "Rav1e encoder");
snprintf(plugin_name, MAX_PLUGIN_NAME_LENGTH, "Rav1e encoder v%s", rav1e_version_short());

return plugin_name;
}
Expand Down

0 comments on commit 6171853

Please sign in to comment.