Browse Source

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

tags/n1.2
Clément Bœsch 13 years ago
parent
commit
90fb3e9bee
1 changed files with 2 additions and 2 deletions
  1. +2
    -2
      libavfilter/vf_subtitles.c

+ 2
- 2
libavfilter/vf_subtitles.c 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,


Loading…
Cancel
Save