comparison avcodec.h @ 7934:9daf67c7e880 libavcodec

Document the directpred auto value. Patch by Francesco Cosoleto cosoleto ^^AT^^ gmail @@dot@@ com
author stefano
date Sun, 28 Sep 2008 19:11:26 +0000
parents c6e9ff53dab4
children 444659c2b8a6
comparison
equal deleted inserted replaced
7933:6375f3f92e74 7934:9daf67c7e880
2102 #define X264_PART_P8X8 0x010 /* Analyze p16x8, p8x16 and p8x8 */ 2102 #define X264_PART_P8X8 0x010 /* Analyze p16x8, p8x16 and p8x8 */
2103 #define X264_PART_P4X4 0x020 /* Analyze p8x4, p4x8, p4x4 */ 2103 #define X264_PART_P4X4 0x020 /* Analyze p8x4, p4x8, p4x4 */
2104 #define X264_PART_B8X8 0x100 /* Analyze b16x8, b8x16 and b8x8 */ 2104 #define X264_PART_B8X8 0x100 /* Analyze b16x8, b8x16 and b8x8 */
2105 2105
2106 /** 2106 /**
2107 * direct MV prediction mode - 0 (none), 1 (spatial), 2 (temporal) 2107 * direct MV prediction mode - 0 (none), 1 (spatial), 2 (temporal), 3 (auto)
2108 * - encoding: Set by user. 2108 * - encoding: Set by user.
2109 * - decoding: unused 2109 * - decoding: unused
2110 */ 2110 */
2111 int directpred; 2111 int directpred;
2112 2112