comparison avcodec.h @ 2493:258120c61eea libavcodec

Border processing adaptive quant patch by (Christophe Massiot |cmassiot freebox fr)
author michael
date Wed, 02 Feb 2005 18:49:04 +0000
parents 57ba17bd3924
children 36d70fbb31c5
comparison
equal deleted inserted replaced
2492:57ba17bd3924 2493:258120c61eea
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 0x000409 18 #define FFMPEG_VERSION_INT 0x000409
19 #define FFMPEG_VERSION "0.4.9-pre1" 19 #define FFMPEG_VERSION "0.4.9-pre1"
20 #define LIBAVCODEC_BUILD 4740 20 #define LIBAVCODEC_BUILD 4741
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)
1748 * frame skip comparission function 1748 * frame skip comparission function
1749 * - encoding: set by user. 1749 * - encoding: set by user.
1750 * - decoding: unused 1750 * - decoding: unused
1751 */ 1751 */
1752 int frame_skip_cmp; 1752 int frame_skip_cmp;
1753
1754 /**
1755 * border processing masking. raises the quantizer for mbs on the borders
1756 * of the picture.
1757 * - encoding: set by user
1758 * - decoding: unused
1759 */
1760 float border_masking;
1753 } AVCodecContext; 1761 } AVCodecContext;
1754 1762
1755 1763
1756 /** 1764 /**
1757 * AVOption. 1765 * AVOption.