lavfi/subtitles: set a different description between ass and subtitles.

This commit is contained in:
Clément Bœsch 2013-02-17 12:33:55 +01:00
parent 2a14b23484
commit 90fb3e9bee
1 changed files with 2 additions and 2 deletions

View File

@ -239,7 +239,7 @@ static av_cold int init_ass(AVFilterContext *ctx, const char *args)
AVFilter avfilter_vf_ass = {
.name = "ass",
.description = NULL_IF_CONFIG_SMALL("Render subtitles onto input video using the libass library."),
.description = NULL_IF_CONFIG_SMALL("Render ASS subtitles onto input video using the libass library."),
.priv_size = sizeof(AssContext),
.init = init_ass,
.uninit = uninit,
@ -356,7 +356,7 @@ end:
AVFilter avfilter_vf_subtitles = {
.name = "subtitles",
.description = NULL_IF_CONFIG_SMALL("Render subtitles onto input video using the libass library."),
.description = NULL_IF_CONFIG_SMALL("Render text subtitles onto input video using the libass library."),
.priv_size = sizeof(AssContext),
.init = init_subtitles,
.uninit = uninit,