Browse code

lavfi: clarify the context of a comment in avfilter_default_get_video_buffer()

The comment is meant to be about the align parameter.

Stefano Sabatini authored on 2011/06/02 23:27:56
Showing 1 changed files
... ...
@@ -60,7 +60,7 @@ AVFilterBufferRef *avfilter_default_get_video_buffer(AVFilterLink *link, int per
60 60
     } else
61 61
         pool = link->pool = av_mallocz(sizeof(AVFilterPool));
62 62
 
63
-    // +2 is needed for swscaler, +16 to be SIMD-friendly
63
+    // align: +2 is needed for swscaler, +16 to be SIMD-friendly
64 64
     if ((i = av_image_alloc(data, linesize, w, h, link->format, 16)) < 0)
65 65
         return NULL;
66 66