comparison avcodec.h @ 2381:cfc9e0489859 libavcodec

frame skip support
author michael
date Wed, 08 Dec 2004 11:46:16 +0000
parents f977a8871c2c
children 23e7af611c34
comparison
equal deleted inserted replaced
2380:3daf36fd1999 2381:cfc9e0489859
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 4734 20 #define LIBAVCODEC_BUILD 4735
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)
1681 * - decoding: set by user 1681 * - decoding: set by user
1682 */ 1682 */
1683 int lowres; 1683 int lowres;
1684 1684
1685 /** 1685 /**
1686 * bistream width / height. may be different from width/height if lowres 1686 * bitsream width / height. may be different from width/height if lowres
1687 * or other things are used 1687 * or other things are used
1688 * - encoding: unused 1688 * - encoding: unused
1689 * - decoding: set by user before init if known, codec should override / dynamically change if needed 1689 * - decoding: set by user before init if known, codec should override / dynamically change if needed
1690 */ 1690 */
1691 int coded_width, coded_height; 1691 int coded_width, coded_height;
1692
1693 /**
1694 * frame skip threshold
1695 * - encoding: set by user
1696 * - decoding: unused
1697 */
1698 int frame_skip_threshold;
1699
1700 /**
1701 * frame skip factor
1702 * - encoding: set by user
1703 * - decoding: unused
1704 */
1705 int frame_skip_factor;
1692 } AVCodecContext; 1706 } AVCodecContext;
1693 1707
1694 1708
1695 /** 1709 /**
1696 * AVOption. 1710 * AVOption.