mirror of
https://git.ffmpeg.org/ffmpeg.git
synced 2026-02-13 19:05:37 +00:00
motion_est: drop inline from sad_hpel_motion_search()
This function is only ever called through a function pointer, so marking it inline makes no sense. Signed-off-by: Mans Rullgard <mans@mansr.com>
This commit is contained in:
parent
5bf7bc625b
commit
0db9eba48c
1 changed files with 2 additions and 2 deletions
|
|
@ -45,7 +45,7 @@
|
|||
#define P_MEDIAN P[4]
|
||||
#define P_MV1 P[9]
|
||||
|
||||
static inline int sad_hpel_motion_search(MpegEncContext * s,
|
||||
static int sad_hpel_motion_search(MpegEncContext * s,
|
||||
int *mx_ptr, int *my_ptr, int dmin,
|
||||
int src_index, int ref_index,
|
||||
int size, int h);
|
||||
|
|
@ -379,7 +379,7 @@ int ff_init_me(MpegEncContext *s){
|
|||
COPY3_IF_LT(dminh, d, dx, x, dy, y)\
|
||||
}
|
||||
|
||||
static inline int sad_hpel_motion_search(MpegEncContext * s,
|
||||
static int sad_hpel_motion_search(MpegEncContext * s,
|
||||
int *mx_ptr, int *my_ptr, int dmin,
|
||||
int src_index, int ref_index,
|
||||
int size, int h)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue