summaryrefslogtreecommitdiff
path: root/libavfilter/vf_overlay.h
diff options
context:
space:
mode:
authorPaul B Mahol <onemda@gmail.com>2018-05-03 09:22:28 +0200
committerPaul B Mahol <onemda@gmail.com>2018-05-03 09:22:28 +0200
commit0f0d468fbcf1771b8084b52e26412a949ca9d948 (patch)
tree86fc1fcb18ddccb20c1d16a0d19b274e69401559 /libavfilter/vf_overlay.h
parentbad42e9b40920f079b27e5bd4103d9293046b2ed (diff)
downloadffmpeg-0f0d468fbcf1771b8084b52e26412a949ca9d948.tar.gz
avfilter/vf_overlay: exclude nv12/nv21 formats from x86 asm check
They are yet to be supported, Signed-off-by: Paul B Mahol <onemda@gmail.com>
Diffstat (limited to 'libavfilter/vf_overlay.h')
-rw-r--r--libavfilter/vf_overlay.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/libavfilter/vf_overlay.h b/libavfilter/vf_overlay.h
index 072ece358f..98b06eaacf 100644
--- a/libavfilter/vf_overlay.h
+++ b/libavfilter/vf_overlay.h
@@ -80,6 +80,7 @@ typedef struct OverlayContext {
int (*blend_slice)(AVFilterContext *ctx, void *arg, int jobnr, int nb_jobs);
} OverlayContext;
-void ff_overlay_init_x86(OverlayContext *s, int format, int alpha_format, int main_has_alpha);
+void ff_overlay_init_x86(OverlayContext *s, int format, int pix_format,
+ int alpha_format, int main_has_alpha);
#endif /* AVFILTER_OVERLAY_H */