Commit 0db9eba4 authored by Mans Rullgard's avatar Mans Rullgard

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: 's avatarMans Rullgard <mans@mansr.com>
parent 5bf7bc62
...@@ -45,7 +45,7 @@ ...@@ -45,7 +45,7 @@
#define P_MEDIAN P[4] #define P_MEDIAN P[4]
#define P_MV1 P[9] #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 *mx_ptr, int *my_ptr, int dmin,
int src_index, int ref_index, int src_index, int ref_index,
int size, int h); int size, int h);
...@@ -379,7 +379,7 @@ int ff_init_me(MpegEncContext *s){ ...@@ -379,7 +379,7 @@ int ff_init_me(MpegEncContext *s){
COPY3_IF_LT(dminh, d, dx, x, dy, y)\ 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 *mx_ptr, int *my_ptr, int dmin,
int src_index, int ref_index, int src_index, int ref_index,
int size, int h) int size, int h)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment