comparison avcodec.h @ 2167:76334bbb5038 libavcodec

user overrideable level & profile
author michael
date Fri, 13 Aug 2004 13:59:28 +0000
parents a966a19f7ab2
children 51da590b31a3
comparison
equal deleted inserted replaced
2166:10d28761f78c 2167:76334bbb5038
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 4719 20 #define LIBAVCODEC_BUILD 4720
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)
1622 * number of macroblock rows at the bottom which are skiped. 1622 * number of macroblock rows at the bottom which are skiped.
1623 * - encoding: unused 1623 * - encoding: unused
1624 * - decoding: set by user 1624 * - decoding: set by user
1625 */ 1625 */
1626 int skip_bottom; 1626 int skip_bottom;
1627
1628 /**
1629 * profile
1630 * - encoding: set by user
1631 * - decoding: set by lavc
1632 */
1633 int profile;
1634 #define FF_PROFILE_UNKNOWN -99
1635
1636 /**
1637 * level
1638 * - encoding: set by user
1639 * - decoding: set by lavc
1640 */
1641 int level;
1642 #define FF_LEVEL_UNKNOWN -99
1627 } AVCodecContext; 1643 } AVCodecContext;
1628 1644
1629 1645
1630 /** 1646 /**
1631 * AVOption. 1647 * AVOption.