comparison avcodec.h @ 2494:36d70fbb31c5 libavcodec

mb_lmin/max to limit the per mb quality for the ratecontrol independant from the frame limits
author michael
date Wed, 02 Feb 2005 19:33:48 +0000
parents 258120c61eea
children 236562127b89
comparison
equal deleted inserted replaced
2493:258120c61eea 2494:36d70fbb31c5
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 4741 20 #define LIBAVCODEC_BUILD 4742
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)
1274 */ 1274 */
1275 uint64_t error[4]; 1275 uint64_t error[4];
1276 1276
1277 /** 1277 /**
1278 * minimum MB quantizer. 1278 * minimum MB quantizer.
1279 * - encoding: set by user. 1279 * - encoding: unused
1280 * - decoding: unused 1280 * - decoding: unused
1281 */ 1281 */
1282 int mb_qmin; 1282 int mb_qmin;
1283 1283
1284 /** 1284 /**
1285 * maximum MB quantizer. 1285 * maximum MB quantizer.
1286 * - encoding: set by user. 1286 * - encoding: unused
1287 * - decoding: unused 1287 * - decoding: unused
1288 */ 1288 */
1289 int mb_qmax; 1289 int mb_qmax;
1290 1290
1291 /** 1291 /**
1756 * of the picture. 1756 * of the picture.
1757 * - encoding: set by user 1757 * - encoding: set by user
1758 * - decoding: unused 1758 * - decoding: unused
1759 */ 1759 */
1760 float border_masking; 1760 float border_masking;
1761
1762 /**
1763 * minimum MB lagrange multipler.
1764 * - encoding: set by user.
1765 * - decoding: unused
1766 */
1767 int mb_lmin;
1768
1769 /**
1770 * maximum MB lagrange multipler.
1771 * - encoding: set by user.
1772 * - decoding: unused
1773 */
1774 int mb_lmax;
1761 } AVCodecContext; 1775 } AVCodecContext;
1762 1776
1763 1777
1764 /** 1778 /**
1765 * AVOption. 1779 * AVOption.