Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in / Register
Toggle navigation
F
ffmpeg
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
Packages
Packages
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
submodule
ffmpeg
Commits
3f1b5ca2
Commit
3f1b5ca2
authored
Nov 14, 2016
by
Carl Eugen Hoyos
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
lavu/pixfmt: Add GRAY10
Based on
7471352f
by Luca Barbato.
parent
575e8d11
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
25 additions
and
1 deletion
+25
-1
pixdesc.c
libavutil/pixdesc.c
+21
-0
pixfmt.h
libavutil/pixfmt.h
+3
-0
version.h
libavutil/version.h
+1
-1
No files found.
libavutil/pixdesc.c
View file @
3f1b5ca2
...
...
@@ -560,6 +560,27 @@ static const AVPixFmtDescriptor av_pix_fmt_descriptors[AV_PIX_FMT_NB] = {
},
.
flags
=
AV_PIX_FMT_FLAG_RGB
,
},
[
AV_PIX_FMT_GRAY10BE
]
=
{
.
name
=
"gray10be"
,
.
nb_components
=
1
,
.
log2_chroma_w
=
0
,
.
log2_chroma_h
=
0
,
.
comp
=
{
{
0
,
2
,
0
,
0
,
10
,
1
,
9
,
1
},
/* Y */
},
.
flags
=
AV_PIX_FMT_FLAG_BE
,
.
alias
=
"y10be"
,
},
[
AV_PIX_FMT_GRAY10LE
]
=
{
.
name
=
"gray10le"
,
.
nb_components
=
1
,
.
log2_chroma_w
=
0
,
.
log2_chroma_h
=
0
,
.
comp
=
{
{
0
,
2
,
0
,
0
,
10
,
1
,
9
,
1
},
/* Y */
},
.
alias
=
"y10le"
,
},
[
AV_PIX_FMT_GRAY12BE
]
=
{
.
name
=
"gray12be"
,
.
nb_components
=
1
,
...
...
libavutil/pixfmt.h
View file @
3f1b5ca2
...
...
@@ -308,6 +308,8 @@ enum AVPixelFormat {
AV_PIX_FMT_GRAY12BE
,
///< Y , 12bpp, big-endian
AV_PIX_FMT_GRAY12LE
,
///< Y , 12bpp, little-endian
AV_PIX_FMT_GRAY10BE
,
///< Y , 10bpp, big-endian
AV_PIX_FMT_GRAY10LE
,
///< Y , 10bpp, little-endian
AV_PIX_FMT_NB
///< number of pixel formats, DO NOT USE THIS if you want to link with shared libav* because the number of formats might differ between versions
};
...
...
@@ -325,6 +327,7 @@ enum AVPixelFormat {
#define AV_PIX_FMT_0RGB32 AV_PIX_FMT_NE(0RGB, BGR0)
#define AV_PIX_FMT_0BGR32 AV_PIX_FMT_NE(0BGR, RGB0)
#define AV_PIX_FMT_GRAY10 AV_PIX_FMT_NE(GRAY10BE, GRAY10LE)
#define AV_PIX_FMT_GRAY12 AV_PIX_FMT_NE(GRAY12BE, GRAY12LE)
#define AV_PIX_FMT_GRAY16 AV_PIX_FMT_NE(GRAY16BE, GRAY16LE)
#define AV_PIX_FMT_YA16 AV_PIX_FMT_NE(YA16BE, YA16LE)
...
...
libavutil/version.h
View file @
3f1b5ca2
...
...
@@ -79,7 +79,7 @@
*/
#define LIBAVUTIL_VERSION_MAJOR 55
#define LIBAVUTIL_VERSION_MINOR
39
#define LIBAVUTIL_VERSION_MINOR
40
#define LIBAVUTIL_VERSION_MICRO 100
#define LIBAVUTIL_VERSION_INT AV_VERSION_INT(LIBAVUTIL_VERSION_MAJOR, \
...
...
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