[FFmpeg-cvslog] lavfi/subtitles: set a different description between ass and subtitles.
Clément Bœsch
git at videolan.org
Sun Feb 17 13:04:13 CET 2013
ffmpeg | branch: master | Clément Bœsch <ubitux at gmail.com> | Sun Feb 17 12:33:55 2013 +0100| [90fb3e9bee600495fb5848ebb78f7c358501de6c] | committer: Clément Bœsch
lavfi/subtitles: set a different description between ass and subtitles.
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=90fb3e9bee600495fb5848ebb78f7c358501de6c
---
libavfilter/vf_subtitles.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/libavfilter/vf_subtitles.c b/libavfilter/vf_subtitles.c
index c4bc755..8d58221 100644
--- a/libavfilter/vf_subtitles.c
+++ b/libavfilter/vf_subtitles.c
@@ -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,
More information about the ffmpeg-cvslog
mailing list