Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
A
aom-rav1e
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Xiph.Org
aom-rav1e
Commits
a55cb659
Commit
a55cb659
authored
10 years ago
by
Deb Mukherjee
Committed by
Gerrit Code Review
10 years ago
Browse files
Options
Downloads
Plain Diff
Merge "Added 16bit vpx_img_fmt_t enums"
parents
39761eb5
e97aea28
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
vpx/vpx_image.h
+5
-2
5 additions, 2 deletions
vpx/vpx_image.h
with
5 additions
and
2 deletions
vpx/vpx_image.h
+
5
−
2
View file @
a55cb659
...
...
@@ -34,7 +34,7 @@ extern "C" {
#define VPX_IMG_FMT_PLANAR 0x100
/**< Image is a planar format */
#define VPX_IMG_FMT_UV_FLIP 0x200
/**< V plane precedes U plane in memory */
#define VPX_IMG_FMT_HAS_ALPHA 0x400
/**< Image has an alpha channel component */
#define VPX_IMG_FMT_HIGH 0x800
/**< Image uses 16bit framebuffer */
/*!\brief List of supported image formats */
typedef
enum
vpx_img_fmt
{
...
...
@@ -58,7 +58,10 @@ extern "C" {
VPX_IMG_FMT_VPXI420
=
VPX_IMG_FMT_PLANAR
|
4
,
VPX_IMG_FMT_I422
=
VPX_IMG_FMT_PLANAR
|
5
,
VPX_IMG_FMT_I444
=
VPX_IMG_FMT_PLANAR
|
6
,
VPX_IMG_FMT_444A
=
VPX_IMG_FMT_PLANAR
|
VPX_IMG_FMT_HAS_ALPHA
|
7
VPX_IMG_FMT_444A
=
VPX_IMG_FMT_PLANAR
|
VPX_IMG_FMT_HAS_ALPHA
|
7
,
VPX_IMG_FMT_I42016
=
VPX_IMG_FMT_I420
|
VPX_IMG_FMT_HIGH
,
VPX_IMG_FMT_I42216
=
VPX_IMG_FMT_I422
|
VPX_IMG_FMT_HIGH
,
VPX_IMG_FMT_I44416
=
VPX_IMG_FMT_I444
|
VPX_IMG_FMT_HIGH
}
vpx_img_fmt_t
;
/**< alias for enum vpx_img_fmt */
#if !defined(VPX_CODEC_DISABLE_COMPAT) || !VPX_CODEC_DISABLE_COMPAT
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment