mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-12-23 12:43:46 +02:00
Fixes:
mpegvideo.h:777: warning: ‘inline’ is not at beginning of declaration motion_est_template.c:236: warning: ‘inline’ is not at beginning of declaration Approved by Diego. Originally committed as revision 6591 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
parent
214019ed32
commit
621d92940e
@ -233,7 +233,7 @@ static int no_sub_motion_search(MpegEncContext * s,
|
||||
return dmin;
|
||||
}
|
||||
|
||||
int inline ff_get_mb_score(MpegEncContext * s, int mx, int my, int src_index,
|
||||
inline int ff_get_mb_score(MpegEncContext * s, int mx, int my, int src_index,
|
||||
int ref_index, int size, int h, int add_rate)
|
||||
{
|
||||
// const int check_luma= s->dsp.me_sub_cmp != s->dsp.mb_cmp;
|
||||
|
@ -774,7 +774,7 @@ int ff_pre_estimate_p_frame_motion(MpegEncContext * s, int mb_x, int mb_y);
|
||||
inline 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],
|
||||
int ref_mv_scale, int size, int h);
|
||||
int inline ff_get_mb_score(MpegEncContext * s, int mx, int my, int src_index,
|
||||
inline int ff_get_mb_score(MpegEncContext * s, int mx, int my, int src_index,
|
||||
int ref_index, int size, int h, int add_rate);
|
||||
|
||||
/* mpeg12.c */
|
||||
|
Loading…
Reference in New Issue
Block a user