summaryrefslogtreecommitdiffstats
path: root/sub/img_convert.c
diff options
context:
space:
mode:
authorwm4 <wm4@nowhere>2015-03-20 00:21:23 +0100
committerwm4 <wm4@nowhere>2015-03-20 00:21:23 +0100
commit5f2a8474aee2a0353a07a6a74a0312f5e5f5ef23 (patch)
treeefbca333ddc28a1006b1507667e7b58008bd9eab /sub/img_convert.c
parent145922a0700b50ffb38f20957c28020562f8d428 (diff)
downloadmpv-5f2a8474aee2a0353a07a6a74a0312f5e5f5ef23.tar.bz2
mpv-5f2a8474aee2a0353a07a6a74a0312f5e5f5ef23.tar.xz
video: uninline memcpy_pic functions
There's literally no reason why these functions have to be inline (they might be performance critical, but then the function call overhead isn't going to matter at all). Uninline them and move them to mp_image.c. Drop the header file and fix all uses of it.
Diffstat (limited to 'sub/img_convert.c')
-rw-r--r--sub/img_convert.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/sub/img_convert.c b/sub/img_convert.c
index 2094e98086..af2cb92a88 100644
--- a/sub/img_convert.c
+++ b/sub/img_convert.c
@@ -29,7 +29,6 @@
#include "video/img_format.h"
#include "video/mp_image.h"
#include "video/sws_utils.h"
-#include "video/memcpy_pic.h"
struct osd_conv_cache {
struct sub_bitmap part[MP_SUB_BB_LIST_MAX];