diff mpegvideo.h @ 6917:167bd4bec8d1 libavcodec

Fix return type of ff_init_me().
author michael
date Wed, 28 May 2008 01:54:09 +0000
parents 493dc59d469a
children 5cbf11f56c02
line wrap: on
line diff
--- a/mpegvideo.h	Wed May 28 01:34:46 2008 +0000
+++ b/mpegvideo.h	Wed May 28 01:54:09 2008 +0000
@@ -741,7 +741,7 @@
 void ff_fix_long_p_mvs(MpegEncContext * s);
 void ff_fix_long_mvs(MpegEncContext * s, uint8_t *field_select_table, int field_select,
                      int16_t (*mv_table)[2], int f_code, int type, int truncate);
-void ff_init_me(MpegEncContext *s);
+int ff_init_me(MpegEncContext *s);
 int ff_pre_estimate_p_frame_motion(MpegEncContext * s, int mb_x, int mb_y);
 int ff_epzs_motion_search(MpegEncContext * s, int *mx_ptr, int *my_ptr,
                              int P[10][2], int src_index, int ref_index, int16_t (*last_mv)[2],