1
0
mirror of https://github.com/FFmpeg/FFmpeg.git synced 2024-12-23 12:43:46 +02:00

Set pad description with NULL_IF_CONFIG_SMALL(), consistent with the

other filters.

Originally committed as revision 23923 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
Stefano Sabatini 2010-06-30 23:52:28 +00:00
parent a74f893b85
commit 2e79db0141

View File

@ -306,7 +306,7 @@ static void draw_slice(AVFilterLink *link, int y, int h, int slice_dir)
AVFilter avfilter_vf_pad = {
.name = "pad",
.description = "Add paddings to the input image.",
.description = NULL_IF_CONFIG_SMALL("Add paddings to the input image."),
.priv_size = sizeof(PadContext),
.init = init,