Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in / Register
Toggle navigation
F
ffmpeg.wasm-core
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Linshizhi
ffmpeg.wasm-core
Commits
ad71d327
Commit
ad71d327
authored
Jul 02, 2016
by
Anton Khirnov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
lavfi: add a QSV deinterlacing filter
parent
8e07c22e
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
585 additions
and
2 deletions
+585
-2
Changelog
Changelog
+1
-1
configure
configure
+1
-0
Makefile
libavfilter/Makefile
+1
-0
allfilters.c
libavfilter/allfilters.c
+1
-0
version.h
libavfilter/version.h
+1
-1
vf_deinterlace_qsv.c
libavfilter/vf_deinterlace_qsv.c
+580
-0
No files found.
Changelog
View file @
ad71d327
...
...
@@ -59,7 +59,7 @@ version <next>:
- G.729 raw demuxer
- MagicYUV decoder
- Duck TrueMotion 2.0 Real Time decoder
- Intel QSV video scaling filter
- Intel QSV video scaling
and deinterlacing
filter
- OpenH264 decoder wrapper
...
...
configure
View file @
ad71d327
...
...
@@ -2402,6 +2402,7 @@ blackframe_filter_deps="gpl"
boxblur_filter_deps
=
"gpl"
bs2b_filter_deps
=
"libbs2b"
cropdetect_filter_deps
=
"gpl"
deinterlace_qsv_filter_deps
=
"libmfx"
delogo_filter_deps
=
"gpl"
drawtext_filter_deps
=
"libfreetype"
frei0r_filter_deps
=
"frei0r dlopen"
...
...
libavfilter/Makefile
View file @
ad71d327
...
...
@@ -47,6 +47,7 @@ OBJS-$(CONFIG_BOXBLUR_FILTER) += vf_boxblur.o
OBJS-$(CONFIG_COPY_FILTER)
+=
vf_copy.o
OBJS-$(CONFIG_CROP_FILTER)
+=
vf_crop.o
OBJS-$(CONFIG_CROPDETECT_FILTER)
+=
vf_cropdetect.o
OBJS-$(CONFIG_DEINTERLACE_QSV_FILTER)
+=
vf_deinterlace_qsv.o
OBJS-$(CONFIG_DELOGO_FILTER)
+=
vf_delogo.o
OBJS-$(CONFIG_DRAWBOX_FILTER)
+=
vf_drawbox.o
OBJS-$(CONFIG_DRAWTEXT_FILTER)
+=
vf_drawtext.o
...
...
libavfilter/allfilters.c
View file @
ad71d327
...
...
@@ -70,6 +70,7 @@ void avfilter_register_all(void)
REGISTER_FILTER
(
COPY
,
copy
,
vf
);
REGISTER_FILTER
(
CROP
,
crop
,
vf
);
REGISTER_FILTER
(
CROPDETECT
,
cropdetect
,
vf
);
REGISTER_FILTER
(
DEINTERLACE_QSV
,
deinterlace_qsv
,
vf
);
REGISTER_FILTER
(
DELOGO
,
delogo
,
vf
);
REGISTER_FILTER
(
DRAWBOX
,
drawbox
,
vf
);
REGISTER_FILTER
(
DRAWTEXT
,
drawtext
,
vf
);
...
...
libavfilter/version.h
View file @
ad71d327
...
...
@@ -30,7 +30,7 @@
#include "libavutil/version.h"
#define LIBAVFILTER_VERSION_MAJOR 6
#define LIBAVFILTER_VERSION_MINOR
5
#define LIBAVFILTER_VERSION_MINOR
6
#define LIBAVFILTER_VERSION_MICRO 0
#define LIBAVFILTER_VERSION_INT AV_VERSION_INT(LIBAVFILTER_VERSION_MAJOR, \
...
...
libavfilter/vf_deinterlace_qsv.c
0 → 100644
View file @
ad71d327
This diff is collapsed.
Click to expand it.
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment