comparison avcodec.h @ 1992:938e47c809b0 libavcodec

intra_dc_precission>0 encoding support
author michael
date Fri, 30 Apr 2004 13:44:29 +0000
parents 19c2344e800a
children 8d3540dddd1b
comparison
equal deleted inserted replaced
1991:fa09319b80af 1992:938e47c809b0
15 #include "rational.h" 15 #include "rational.h"
16 #include <sys/types.h> /* size_t */ 16 #include <sys/types.h> /* size_t */
17 17
18 #define FFMPEG_VERSION_INT 0x000408 18 #define FFMPEG_VERSION_INT 0x000408
19 #define FFMPEG_VERSION "0.4.8" 19 #define FFMPEG_VERSION "0.4.8"
20 #define LIBAVCODEC_BUILD 4710 20 #define LIBAVCODEC_BUILD 4711
21 21
22 #define LIBAVCODEC_VERSION_INT FFMPEG_VERSION_INT 22 #define LIBAVCODEC_VERSION_INT FFMPEG_VERSION_INT
23 #define LIBAVCODEC_VERSION FFMPEG_VERSION 23 #define LIBAVCODEC_VERSION FFMPEG_VERSION
24 24
25 #define AV_STRINGIFY(s) AV_TOSTRING(s) 25 #define AV_STRINGIFY(s) AV_TOSTRING(s)
1582 * Macroblock threshold. under which the user specified macroblock types will be used 1582 * Macroblock threshold. under which the user specified macroblock types will be used
1583 * - encoding: set by user 1583 * - encoding: set by user
1584 * - decoding: unused 1584 * - decoding: unused
1585 */ 1585 */
1586 int mb_threshold; 1586 int mb_threshold;
1587
1588 /**
1589 *
1590 * - encoding: set by user
1591 * - decoding: unused
1592 */
1593 int intra_dc_precision;
1587 } AVCodecContext; 1594 } AVCodecContext;
1588 1595
1589 1596
1590 /** 1597 /**
1591 * AVOption. 1598 * AVOption.