diff options
author | Stefano Sabatini <stefano.sabatini-lala@poste.it> | 2011-06-02 16:27:56 +0200 |
---|---|---|
committer | Stefano Sabatini <stefano.sabatini-lala@poste.it> | 2011-06-02 18:24:50 +0200 |
commit | 0ff5cbedd2b6e813064fe4f8aab735162889037c (patch) | |
tree | e49ce722895ad388394cfd1459cb3a1d524137d3 | |
parent | 77b32b73ed31f9aaa6c1e476c9a041399a35be9d (diff) | |
download | ffmpeg-0ff5cbedd2b6e813064fe4f8aab735162889037c.tar.gz |
lavfi: clarify the context of a comment in avfilter_default_get_video_buffer()
The comment is meant to be about the align parameter.
-rw-r--r-- | libavfilter/defaults.c | 2 |
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; |