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
27ebdcf0
Commit
27ebdcf0
authored
Apr 10, 2017
by
Paul B Mahol
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
avfilter: add GRAY10 and GRAY12 to some filters
Signed-off-by:
Paul B Mahol
<
onemda@gmail.com
>
parent
0c4d75d9
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
5 additions
and
3 deletions
+5
-3
vf_atadenoise.c
libavfilter/vf_atadenoise.c
+2
-0
vf_avgblur.c
libavfilter/vf_avgblur.c
+1
-1
vf_gblur.c
libavfilter/vf_gblur.c
+1
-1
vf_hysteresis.c
libavfilter/vf_hysteresis.c
+1
-1
No files found.
libavfilter/vf_atadenoise.c
View file @
27ebdcf0
...
...
@@ -80,6 +80,8 @@ static int query_formats(AVFilterContext *ctx)
{
static
const
enum
AVPixelFormat
pixel_fmts
[]
=
{
AV_PIX_FMT_GRAY8
,
AV_PIX_FMT_GRAY10
,
AV_PIX_FMT_GRAY12
,
AV_PIX_FMT_GRAY16
,
AV_PIX_FMT_YUV410P
,
AV_PIX_FMT_YUV411P
,
AV_PIX_FMT_YUV420P
,
AV_PIX_FMT_YUV422P
,
...
...
libavfilter/vf_avgblur.c
View file @
27ebdcf0
...
...
@@ -242,7 +242,7 @@ static int query_formats(AVFilterContext *ctx)
AV_PIX_FMT_GBRP
,
AV_PIX_FMT_GBRP9
,
AV_PIX_FMT_GBRP10
,
AV_PIX_FMT_GBRP12
,
AV_PIX_FMT_GBRP14
,
AV_PIX_FMT_GBRP16
,
AV_PIX_FMT_GBRAP
,
AV_PIX_FMT_GBRAP12
,
AV_PIX_FMT_GBRAP16
,
AV_PIX_FMT_GRAY8
,
AV_PIX_FMT_GRAY16
,
AV_PIX_FMT_GRAY8
,
AV_PIX_FMT_GRAY1
0
,
AV_PIX_FMT_GRAY12
,
AV_PIX_FMT_GRAY1
6
,
AV_PIX_FMT_NONE
};
...
...
libavfilter/vf_gblur.c
View file @
27ebdcf0
...
...
@@ -202,7 +202,7 @@ static int query_formats(AVFilterContext *ctx)
AV_PIX_FMT_GBRP
,
AV_PIX_FMT_GBRP9
,
AV_PIX_FMT_GBRP10
,
AV_PIX_FMT_GBRP12
,
AV_PIX_FMT_GBRP14
,
AV_PIX_FMT_GBRP16
,
AV_PIX_FMT_GBRAP
,
AV_PIX_FMT_GBRAP12
,
AV_PIX_FMT_GBRAP16
,
AV_PIX_FMT_GRAY8
,
AV_PIX_FMT_GRAY16
,
AV_PIX_FMT_GRAY8
,
AV_PIX_FMT_GRAY1
0
,
AV_PIX_FMT_GRAY12
,
AV_PIX_FMT_GRAY1
6
,
AV_PIX_FMT_NONE
};
...
...
libavfilter/vf_hysteresis.c
View file @
27ebdcf0
...
...
@@ -79,7 +79,7 @@ static int query_formats(AVFilterContext *ctx)
AV_PIX_FMT_GBRP
,
AV_PIX_FMT_GBRP9
,
AV_PIX_FMT_GBRP10
,
AV_PIX_FMT_GBRP12
,
AV_PIX_FMT_GBRP14
,
AV_PIX_FMT_GBRP16
,
AV_PIX_FMT_GBRAP
,
AV_PIX_FMT_GBRAP12
,
AV_PIX_FMT_GBRAP16
,
AV_PIX_FMT_GRAY8
,
AV_PIX_FMT_GRAY16
,
AV_PIX_FMT_GRAY8
,
AV_PIX_FMT_GRAY1
0
,
AV_PIX_FMT_GRAY12
,
AV_PIX_FMT_GRAY1
6
,
AV_PIX_FMT_NONE
};
...
...
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