Files
ffmpeg/doc/optimization.txt
T

159 lines
5.1 KiB
Plaintext
Raw Normal View History

2003-01-11 10:55:17 +00:00
optimization Tips (for libavcodec):
What to optimize:
2005-06-11 18:18:13 +00:00
If you plan to do non-x86 architecture specific optimizations (SIMD normally),
2005-06-11 17:41:23 +00:00
then take a look in the i386/ directory, as most important functions are
already optimized for MMX.
2003-01-11 10:55:17 +00:00
2005-06-11 17:41:23 +00:00
If you want to do x86 optimizations then you can either try to finetune the
stuff in the i386 directory or find some other functions in the C source to
optimize, but there aren't many left.
2003-01-11 10:55:17 +00:00
Understanding these overoptimized functions:
As many functions tend to be a bit difficult to understand because
of optimizations, it can be hard to optimize them further, or write
architecture-specific versions. It is recommened to look at older
CVS versions of the interesting files (just use ViewCVS at
http://www1.mplayerhq.hu/cgi-bin/cvsweb.cgi/ffmpeg/?cvsroot=FFMpeg).
Alternatively, look into the other architecture-specific versions in
the i386/, ppc/, alpha/ subdirectories. Even if you don't exactly
comprehend the instructions, it could help understanding the functions
and how they can be optimized.
2003-01-11 10:55:17 +00:00
2005-06-11 17:41:23 +00:00
NOTE: If you still don't understand some function, ask at our mailing list!!!
(http://www1.mplayerhq.hu/mailman/listinfo/ffmpeg-devel)
2003-01-11 10:55:17 +00:00
2005-06-11 17:41:23 +00:00
WTF is that function good for ....:
The primary purpose of that list is to avoid wasting time to optimize functions
2003-01-11 10:55:17 +00:00
which are rarely used
put(_no_rnd)_pixels{,_x2,_y2,_xy2}
2005-06-11 17:41:23 +00:00
Used in motion compensation (en/decoding).
2003-01-11 10:55:17 +00:00
avg_pixels{,_x2,_y2,_xy2}
2005-06-11 17:41:23 +00:00
Used in motion compensation of B-frames.
2005-06-11 18:18:13 +00:00
These are less important than the put*pixels functions.
2003-01-11 10:55:17 +00:00
avg_no_rnd_pixels*
unused
2003-01-11 10:55:17 +00:00
pix_abs16x16{,_x2,_y2,_xy2}
2005-06-11 17:41:23 +00:00
Used in motion estimation (encoding) with SAD.
2003-01-11 10:55:17 +00:00
pix_abs8x8{,_x2,_y2,_xy2}
2005-06-11 17:41:23 +00:00
Used in motion estimation (encoding) with SAD of MPEG-4 4MV only.
2005-06-11 18:18:13 +00:00
These are less important than the pix_abs16x16* functions.
2003-01-11 10:55:17 +00:00
put_mspel8_mc* / wmv2_mspel8*
2005-06-11 17:41:23 +00:00
Used only in WMV2.
it is not recommended that you waste your time with these, as WMV2
is an ugly and relatively useless codec.
2003-01-11 10:55:17 +00:00
mpeg4_qpel* / *qpel_mc*
2005-06-11 17:41:23 +00:00
Used in MPEG-4 qpel motion compensation (encoding & decoding).
The qpel8 functions are used only for 4mv,
the avg_* functions are used only for B-frames.
Optimizing them should have a significant impact on qpel
encoding & decoding.
2003-01-11 10:55:17 +00:00
qpel{8,16}_mc??_old_c / *pixels{8,16}_l4
2005-06-11 17:41:23 +00:00
Just used to work around a bug in an old libavcodec encoder version.
Don't optimize them.
2003-01-11 10:55:17 +00:00
2003-12-30 19:19:45 +00:00
tpel_mc_func {put,avg}_tpel_pixels_tab
2005-06-11 17:41:23 +00:00
Used only for SVQ3, so only optimize them if you need fast SVQ3 decoding.
2003-12-30 19:19:45 +00:00
2003-01-11 10:55:17 +00:00
add_bytes/diff_bytes
2005-06-11 17:41:23 +00:00
For huffyuv only, optimize if you want a faster ffhuffyuv codec.
2003-01-11 10:55:17 +00:00
get_pixels / diff_pixels
2005-06-11 17:41:23 +00:00
Used for encoding, easy.
2003-01-11 10:55:17 +00:00
clear_blocks
2005-06-11 17:41:23 +00:00
easiest to optimize
2003-01-11 10:55:17 +00:00
gmc
2005-06-11 17:41:23 +00:00
Used for MPEG-4 gmc.
Optimizing this should have a significant effect on the gmc decoding
speed but it's very likely impossible to write in SIMD.
2003-01-11 10:55:17 +00:00
2003-01-11 15:38:00 +00:00
gmc1
2005-06-11 17:41:23 +00:00
Used for chroma blocks in MPEG-4 gmc with 1 warp point
(there are 4 luma & 2 chroma blocks per macroblock, so
only 1/3 of the gmc blocks use this, the other 2/3
use the normal put_pixel* code, but only if there is
2005-06-11 17:41:23 +00:00
just 1 warp point).
Note: DivX5 gmc always uses just 1 warp point.
2003-01-11 15:38:00 +00:00
2003-01-11 10:55:17 +00:00
pix_sum
2005-06-11 17:41:23 +00:00
Used for encoding.
2003-01-19 18:42:49 +00:00
hadamard8_diff / sse / sad == pix_norm1 / dct_sad / quant_psnr / rd / bit
2005-06-11 17:41:23 +00:00
Specific compare functions used in encoding, it depends upon the
command line switches which of these are used.
Don't waste your time with dct_sad & quant_psnr, they aren't
really useful.
2003-01-11 10:55:17 +00:00
put_pixels_clamped / add_pixels_clamped
2005-06-11 17:41:23 +00:00
Used for en/decoding in the IDCT, easy.
Note, some optimized IDCTs have the add/put clamped code included and
then put_pixels_clamped / add_pixels_clamped will be unused.
2003-01-11 10:55:17 +00:00
idct/fdct
idct (encoding & decoding)
fdct (encoding)
difficult to optimize
2003-01-11 10:55:17 +00:00
dct_quantize_trellis
2005-06-11 17:41:23 +00:00
Used for encoding with trellis quantization.
difficult to optimize
2003-01-11 10:55:17 +00:00
dct_quantize
2005-06-11 17:41:23 +00:00
Used for encoding.
2003-01-11 10:55:17 +00:00
dct_unquantize_mpeg1
2005-06-11 17:41:23 +00:00
Used in MPEG-1 en/decoding.
2003-01-11 10:55:17 +00:00
dct_unquantize_mpeg2
2005-06-11 17:41:23 +00:00
Used in MPEG-2 en/decoding.
2003-01-11 10:55:17 +00:00
dct_unquantize_h263
2005-06-11 17:41:23 +00:00
Used in MPEG-4/H.263 en/decoding.
2003-01-11 10:55:17 +00:00
FIXME remaining functions?
2005-06-11 17:41:23 +00:00
BTW, most of these functions are in dsputil.c/.h, some are in mpegvideo.c/.h.
2003-01-11 10:55:17 +00:00
2003-01-11 10:55:17 +00:00
Alignment:
2005-06-11 17:41:23 +00:00
Some instructions on some architectures have strict alignment restrictions,
2005-06-11 18:18:13 +00:00
for example most SSE/SSE2 instructions on x86.
2005-06-11 17:41:23 +00:00
The minimum guaranteed alignment is written in the .h files, for example:
2003-01-11 10:55:17 +00:00
void (*put_pixels_clamped)(const DCTELEM *block/*align 16*/, UINT8 *pixels/*align 8*/, int line_size);
Links:
2003-01-11 11:36:38 +00:00
http://www.aggregate.org/MAGIC/
2005-06-11 17:41:23 +00:00
x86-specific:
2003-01-11 10:55:17 +00:00
http://developer.intel.com/design/pentium4/manuals/248966.htm
The IA-32 Intel Architecture Software Developer's Manual, Volume 2:
2003-01-11 10:55:17 +00:00
Instruction Set Reference
http://developer.intel.com/design/pentium4/manuals/245471.htm
http://www.agner.org/assem/
AMD Athlon Processor x86 Code Optimization Guide:
http://www.amd.com/us-en/assets/content_type/white_papers_and_tech_docs/22007.pdf
GCC asm links:
2003-01-11 11:36:38 +00:00
official doc but quite ugly
http://gcc.gnu.org/onlinedocs/gcc/Extended-Asm.html
2005-06-11 17:41:23 +00:00
a bit old (note "+" is valid for input-output, even though the next disagrees)
2003-01-19 18:42:49 +00:00
http://www.cs.virginia.edu/~clc5q/gcc-inline-asm.pdf