]> git.sesse.net Git - ffmpeg/blobdiff - doc/optimization.txt
Merge commit '218aefce4472dc02ee3f12830a9a894bf7916da9'
[ffmpeg] / doc / optimization.txt
index e3fd32401c97dac38adf4e8307639152f34096ff..5a66d6bb3fff3436d6ae1afd23886147f9934265 100644 (file)
@@ -148,7 +148,7 @@ Alignment:
 Some instructions on some architectures have strict alignment restrictions,
 for example most SSE/SSE2 instructions on x86.
 The minimum guaranteed alignment is written in the .h files, for example:
-    void (*put_pixels_clamped)(const DCTELEM *block/*align 16*/, UINT8 *pixels/*align 8*/, int line_size);
+    void (*put_pixels_clamped)(const int16_t *block/*align 16*/, UINT8 *pixels/*align 8*/, int line_size);
 
 
 General Tips: