The comment is meant to be about the align parameter.
| ... | ... |
@@ -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 |
|