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
592a0405
Commit
592a0405
authored
Mar 18, 2015
by
Vittorio Giovara
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
pixdesc: Replace a few leftover instances of non AV-prefixed flags
parent
7419b348
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
3 deletions
+6
-3
pixdesc.c
libavutil/pixdesc.c
+6
-3
No files found.
libavutil/pixdesc.c
View file @
592a0405
...
...
@@ -1462,7 +1462,8 @@ const AVPixFmtDescriptor av_pix_fmt_descriptors[AV_PIX_FMT_NB] = {
{
2
,
0
,
1
,
0
,
7
},
/* R */
{
3
,
0
,
1
,
0
,
7
},
/* A */
},
.
flags
=
PIX_FMT_PLANAR
|
PIX_FMT_RGB
|
PIX_FMT_ALPHA
,
.
flags
=
AV_PIX_FMT_FLAG_PLANAR
|
AV_PIX_FMT_FLAG_RGB
|
AV_PIX_FMT_FLAG_ALPHA
,
},
[
AV_PIX_FMT_GBRAP16LE
]
=
{
.
name
=
"gbrap16le"
,
...
...
@@ -1475,7 +1476,8 @@ const AVPixFmtDescriptor av_pix_fmt_descriptors[AV_PIX_FMT_NB] = {
{
2
,
1
,
1
,
0
,
15
},
/* R */
{
3
,
1
,
1
,
0
,
15
},
/* A */
},
.
flags
=
PIX_FMT_PLANAR
|
PIX_FMT_RGB
|
PIX_FMT_ALPHA
,
.
flags
=
AV_PIX_FMT_FLAG_PLANAR
|
AV_PIX_FMT_FLAG_RGB
|
AV_PIX_FMT_FLAG_ALPHA
,
},
[
AV_PIX_FMT_GBRAP16BE
]
=
{
.
name
=
"gbrap16be"
,
...
...
@@ -1488,7 +1490,8 @@ const AVPixFmtDescriptor av_pix_fmt_descriptors[AV_PIX_FMT_NB] = {
{
2
,
1
,
1
,
0
,
15
},
/* R */
{
3
,
1
,
1
,
0
,
15
},
/* A */
},
.
flags
=
PIX_FMT_BE
|
PIX_FMT_PLANAR
|
PIX_FMT_RGB
|
PIX_FMT_ALPHA
,
.
flags
=
AV_PIX_FMT_FLAG_BE
|
AV_PIX_FMT_FLAG_PLANAR
|
AV_PIX_FMT_FLAG_RGB
|
AV_PIX_FMT_FLAG_ALPHA
,
},
[
AV_PIX_FMT_VDPAU
]
=
{
.
name
=
"vdpau"
,
...
...
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