summaryrefslogtreecommitdiff
path: root/libavfilter
diff options
context:
space:
mode:
authorStefano Sabatini <stefano.sabatini-lala@poste.it>2011-06-02 16:27:56 +0200
committerStefano Sabatini <stefano.sabatini-lala@poste.it>2011-06-02 18:24:50 +0200
commit0ff5cbedd2b6e813064fe4f8aab735162889037c (patch)
treee49ce722895ad388394cfd1459cb3a1d524137d3 /libavfilter
parent77b32b73ed31f9aaa6c1e476c9a041399a35be9d (diff)
lavfi: clarify the context of a comment in avfilter_default_get_video_buffer()
The comment is meant to be about the align parameter.
Diffstat (limited to 'libavfilter')
-rw-r--r--libavfilter/defaults.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavfilter/defaults.c b/libavfilter/defaults.c
index 74ba599f9c..4a01b10b9c 100644
--- a/libavfilter/defaults.c
+++ b/libavfilter/defaults.c
@@ -60,7 +60,7 @@ AVFilterBufferRef *avfilter_default_get_video_buffer(AVFilterLink *link, int per
} else
pool = link->pool = av_mallocz(sizeof(AVFilterPool));
- // +2 is needed for swscaler, +16 to be SIMD-friendly
+ // align: +2 is needed for swscaler, +16 to be SIMD-friendly
if ((i = av_image_alloc(data, linesize, w, h, link->format, 16)) < 0)
return NULL;