comparison avcodec.h @ 2066:4bfb146e701b libavcodec

nsse weight
author michael
date Mon, 07 Jun 2004 17:30:02 +0000
parents 9e4bebc39ade
children 3dc9bbe1b152
comparison
equal deleted inserted replaced
2065:9e4bebc39ade 2066:4bfb146e701b
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 4715 20 #define LIBAVCODEC_BUILD 4716
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)
1589 * - decoding: unused 1589 * - decoding: unused
1590 */ 1590 */
1591 int mb_threshold; 1591 int mb_threshold;
1592 1592
1593 /** 1593 /**
1594 * 1594 * precision of the intra dc coefficient - 8.
1595 * - encoding: set by user 1595 * - encoding: set by user
1596 * - decoding: unused 1596 * - decoding: unused
1597 */ 1597 */
1598 int intra_dc_precision; 1598 int intra_dc_precision;
1599
1600 /**
1601 * noise vs. sse weight for the nsse comparsion function.
1602 * - encoding: set by user
1603 * - decoding: unused
1604 */
1605 int nsse_weight;
1599 } AVCodecContext; 1606 } AVCodecContext;
1600 1607
1601 1608
1602 /** 1609 /**
1603 * AVOption. 1610 * AVOption.