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
9fe61b61
Commit
9fe61b61
authored
Mar 06, 2018
by
Carl Eugen Hoyos
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
lavfi/drawutils: Do not claim to support P016.
Fixes fate on big-endian.
parent
2b2c8b22
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
1 addition
and
2 deletions
+1
-2
drawutils.c
libavfilter/drawutils.c
+1
-1
filter-pixfmts-pad
tests/ref/fate/filter-pixfmts-pad
+0
-1
No files found.
libavfilter/drawutils.c
View file @
9fe61b61
...
...
@@ -186,7 +186,7 @@ int ff_draw_init(FFDrawContext *draw, enum AVPixelFormat format, unsigned flags)
return
AVERROR
(
EINVAL
);
if
(
desc
->
flags
&
~
(
AV_PIX_FMT_FLAG_PLANAR
|
AV_PIX_FMT_FLAG_RGB
|
AV_PIX_FMT_FLAG_PSEUDOPAL
|
AV_PIX_FMT_FLAG_ALPHA
))
return
AVERROR
(
ENOSYS
);
if
(
format
==
AV_PIX_FMT_P010LE
||
format
==
AV_PIX_FMT_P010BE
)
if
(
format
==
AV_PIX_FMT_P010LE
||
format
==
AV_PIX_FMT_P010BE
||
format
==
AV_PIX_FMT_P016LE
||
format
==
AV_PIX_FMT_P016BE
)
return
AVERROR
(
ENOSYS
);
for
(
i
=
0
;
i
<
desc
->
nb_components
;
i
++
)
{
c
=
&
desc
->
comp
[
i
];
...
...
tests/ref/fate/filter-pixfmts-pad
View file @
9fe61b61
...
...
@@ -22,7 +22,6 @@ gray16le 468bda6155bdc7a7a20c34d6e599fd16
gray9le f8f3dfe31ca5fcba828285bceefdab9a
nv12 381574979cb04be10c9168540310afad
nv21 0fdeb2cdd56cf5a7147dc273456fa217
p016le 536a3b4c3b47d005f9ab033370cc1c3b
rgb0 78d500c8361ab6423a4826a00268c908
rgb24 17f9e2e0c609009acaf2175c42d4a2a5
rgba b157c90191463d34fb3ce77b36c96386
...
...
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