comparison avcodec.h @ 9722:0bfb23c7633d libavcodec

remove apparently unused real_pict_num from AVCodecContext
author bcoudurier
date Wed, 27 May 2009 21:40:10 +0000
parents 4b6766057548
children 0d6f887d91fb
comparison
equal deleted inserted replaced
9721:5d0f71ba8648 9722:0bfb23c7633d
29 #include <errno.h> 29 #include <errno.h>
30 #include "libavutil/avutil.h" 30 #include "libavutil/avutil.h"
31 31
32 #define LIBAVCODEC_VERSION_MAJOR 52 32 #define LIBAVCODEC_VERSION_MAJOR 52
33 #define LIBAVCODEC_VERSION_MINOR 29 33 #define LIBAVCODEC_VERSION_MINOR 29
34 #define LIBAVCODEC_VERSION_MICRO 0 34 #define LIBAVCODEC_VERSION_MICRO 1
35 35
36 #define LIBAVCODEC_VERSION_INT AV_VERSION_INT(LIBAVCODEC_VERSION_MAJOR, \ 36 #define LIBAVCODEC_VERSION_INT AV_VERSION_INT(LIBAVCODEC_VERSION_MAJOR, \
37 LIBAVCODEC_VERSION_MINOR, \ 37 LIBAVCODEC_VERSION_MINOR, \
38 LIBAVCODEC_VERSION_MICRO) 38 LIBAVCODEC_VERSION_MICRO)
39 #define LIBAVCODEC_VERSION AV_VERSION(LIBAVCODEC_VERSION_MAJOR, \ 39 #define LIBAVCODEC_VERSION AV_VERSION(LIBAVCODEC_VERSION_MAJOR, \
1115 /** 1115 /**
1116 * Samples per packet, initialized when calling 'init'. 1116 * Samples per packet, initialized when calling 'init'.
1117 */ 1117 */
1118 int frame_size; 1118 int frame_size;
1119 int frame_number; ///< audio or video frame number 1119 int frame_number; ///< audio or video frame number
1120 #if LIBAVCODEC_VERSION_MAJOR < 53
1120 int real_pict_num; ///< Returns the real picture number of previous encoded frame. 1121 int real_pict_num; ///< Returns the real picture number of previous encoded frame.
1122 #endif
1121 1123
1122 /** 1124 /**
1123 * Number of frames the decoded output will be delayed relative to 1125 * Number of frames the decoded output will be delayed relative to
1124 * the encoded input. 1126 * the encoded input.
1125 * - encoding: Set by libavcodec. 1127 * - encoding: Set by libavcodec.