comparison avcodec.h @ 2584:c07be5590462 libavcodec

motion estimation bitrate penalty compensation
author michael
date Sun, 27 Mar 2005 12:19:59 +0000
parents 7d9997a69158
children 1ef8fab234c8
comparison
equal deleted inserted replaced
2583:61a08e2b9822 2584:c07be5590462
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 4749 20 #define LIBAVCODEC_BUILD 4750
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)
1779 * maximum MB lagrange multipler. 1779 * maximum MB lagrange multipler.
1780 * - encoding: set by user. 1780 * - encoding: set by user.
1781 * - decoding: unused 1781 * - decoding: unused
1782 */ 1782 */
1783 int mb_lmax; 1783 int mb_lmax;
1784
1785 /**
1786 *
1787 * - encoding: set by user.
1788 * - decoding: unused
1789 */
1790 int me_penalty_compensation;
1784 } AVCodecContext; 1791 } AVCodecContext;
1785 1792
1786 1793
1787 /** 1794 /**
1788 * AVOption. 1795 * AVOption.