summaryrefslogtreecommitdiff
path: root/libavfilter/vf_transpose.c
diff options
context:
space:
mode:
authorRuiling Song <ruiling.song@intel.com>2018-11-28 10:27:38 +0800
committerMark Thompson <sw@jkqxz.net>2018-12-02 23:39:37 +0000
commit416dc9a5e81729e3313bcc13aebc5faa082c63a3 (patch)
tree05014f89f5bcb948d7dc4645344e134adcbfcb35 /libavfilter/vf_transpose.c
parent21608bc30303b221db8f3e2fb0952e7e7f2bd270 (diff)
lavf: add transpose_opencl filter
Signed-off-by: Ruiling Song <ruiling.song@intel.com> Signed-off-by: Mark Thompson <sw@jkqxz.net>
Diffstat (limited to 'libavfilter/vf_transpose.c')
-rw-r--r--libavfilter/vf_transpose.c14
1 files changed, 1 insertions, 13 deletions
diff --git a/libavfilter/vf_transpose.c b/libavfilter/vf_transpose.c
index 74a4bbcf58..dd54947bd9 100644
--- a/libavfilter/vf_transpose.c
+++ b/libavfilter/vf_transpose.c
@@ -38,19 +38,7 @@
#include "formats.h"
#include "internal.h"
#include "video.h"
-
-typedef enum {
- TRANSPOSE_PT_TYPE_NONE,
- TRANSPOSE_PT_TYPE_LANDSCAPE,
- TRANSPOSE_PT_TYPE_PORTRAIT,
-} PassthroughType;
-
-enum TransposeDir {
- TRANSPOSE_CCLOCK_FLIP,
- TRANSPOSE_CLOCK,
- TRANSPOSE_CCLOCK,
- TRANSPOSE_CLOCK_FLIP,
-};
+#include "transpose.h"
typedef struct TransVtable {
void (*transpose_8x8)(uint8_t *src, ptrdiff_t src_linesize,