comparison avcodec.h @ 6044:96cc12fb8040 libavcodec

A little more doxygenization.
author michael
date Tue, 18 Dec 2007 19:40:57 +0000
parents 823e6b273ea2
children 2f9c17454842
comparison
equal deleted inserted replaced
6043:823e6b273ea2 6044:96cc12fb8040
1337 * result into program crash.) 1337 * result into program crash.)
1338 */ 1338 */
1339 unsigned dsp_mask; 1339 unsigned dsp_mask;
1340 #define FF_MM_FORCE 0x80000000 /* Force usage of selected flags (OR) */ 1340 #define FF_MM_FORCE 0x80000000 /* Force usage of selected flags (OR) */
1341 /* lower 16 bits - CPU features */ 1341 /* lower 16 bits - CPU features */
1342 #define FF_MM_MMX 0x0001 /* standard MMX */ 1342 #define FF_MM_MMX 0x0001 ///< standard MMX
1343 #define FF_MM_3DNOW 0x0004 /* AMD 3DNOW */ 1343 #define FF_MM_3DNOW 0x0004 ///< AMD 3DNOW
1344 #define FF_MM_MMXEXT 0x0002 /* SSE integer functions or AMD MMX ext */ 1344 #define FF_MM_MMXEXT 0x0002 ///< SSE integer functions or AMD MMX ext
1345 #define FF_MM_SSE 0x0008 /* SSE functions */ 1345 #define FF_MM_SSE 0x0008 ///< SSE functions
1346 #define FF_MM_SSE2 0x0010 /* PIV SSE2 functions */ 1346 #define FF_MM_SSE2 0x0010 ///< PIV SSE2 functions
1347 #define FF_MM_3DNOWEXT 0x0020 /* AMD 3DNowExt */ 1347 #define FF_MM_3DNOWEXT 0x0020 ///< AMD 3DNowExt
1348 #define FF_MM_SSE3 0x0040 /* Prescott SSE3 functions */ 1348 #define FF_MM_SSE3 0x0040 ///< Prescott SSE3 functions
1349 #define FF_MM_SSSE3 0x0080 /* Conroe SSSE3 functions */ 1349 #define FF_MM_SSSE3 0x0080 ///< Conroe SSSE3 functions
1350 #define FF_MM_IWMMXT 0x0100 /* XScale IWMMXT */ 1350 #define FF_MM_IWMMXT 0x0100 ///< XScale IWMMXT
1351 1351
1352 /** 1352 /**
1353 * bits per sample/pixel from the demuxer (needed for huffyuv). 1353 * bits per sample/pixel from the demuxer (needed for huffyuv).
1354 * - encoding: Set by libavcodec. 1354 * - encoding: Set by libavcodec.
1355 * - decoding: Set by user. 1355 * - decoding: Set by user.