comparison mpegvideo.h @ 376:ba9c3b8088c0 libavcodec

- pict_type exported to AVCodecContext - Added real_pict_num to AVCodecContext, it represent the number of the previous encoded frame, usefull when coding with B frames. - Warning fix in motion_est.c
author pulento
date Sat, 11 May 2002 23:42:16 +0000
parents 0eca28d16cbd
children 5c8b3a717929
comparison
equal deleted inserted replaced
375:749b5c16c0f7 376:ba9c3b8088c0
14 * 14 *
15 * You should have received a copy of the GNU General Public License 15 * You should have received a copy of the GNU General Public License
16 * along with this program; if not, write to the Free Software 16 * along with this program; if not, write to the Free Software
17 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. 17 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
18 */ 18 */
19
20 /* Macros for picture code type. */
21 #define I_TYPE 1
22 #define P_TYPE 2
23 #define B_TYPE 3
24 #define S_TYPE 4 //S(GMC)-VOP MPEG4
25 19
26 #define FRAME_SKIPED 100 // return value for header parsers if frame is not coded 20 #define FRAME_SKIPED 100 // return value for header parsers if frame is not coded
27 21
28 enum OutputFormat { 22 enum OutputFormat {
29 FMT_MPEG1, 23 FMT_MPEG1,