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
8b17243d
Commit
8b17243d
authored
Mar 09, 2014
by
Vittorio Giovara
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
lavu: Add packed YVYU422 pixel format
parent
46439e15
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
17 additions
and
1 deletion
+17
-1
APIchanges
doc/APIchanges
+3
-0
pixdesc.c
libavutil/pixdesc.c
+11
-0
pixfmt.h
libavutil/pixfmt.h
+2
-0
version.h
libavutil/version.h
+1
-1
No files found.
doc/APIchanges
View file @
8b17243d
...
...
@@ -13,6 +13,9 @@ libavutil: 2013-12-xx
API changes, most recent first:
2014-04-xx - xxxxxxx - lavu 53.11.0 - pixfmt.h
Add AV_PIX_FMT_YVYU422 pixel format.
2014-04-xx - xxxxxxx - lavu 53.10.0 - replaygain.h
Full scale for peak values is now 100000 (instead of UINT32_MAX) and values
may overflow.
...
...
libavutil/pixdesc.c
View file @
8b17243d
...
...
@@ -152,6 +152,17 @@ const AVPixFmtDescriptor av_pix_fmt_descriptors[AV_PIX_FMT_NB] = {
{
0
,
3
,
4
,
0
,
7
},
/* V */
},
},
[
AV_PIX_FMT_YVYU422
]
=
{
.
name
=
"yvyu422"
,
.
nb_components
=
3
,
.
log2_chroma_w
=
1
,
.
log2_chroma_h
=
0
,
.
comp
=
{
{
0
,
1
,
1
,
0
,
7
},
/* Y */
{
0
,
3
,
2
,
0
,
7
},
/* V */
{
0
,
3
,
4
,
0
,
7
},
/* U */
},
},
[
AV_PIX_FMT_RGB24
]
=
{
.
name
=
"rgb24"
,
.
nb_components
=
3
,
...
...
libavutil/pixfmt.h
View file @
8b17243d
...
...
@@ -196,6 +196,8 @@ enum AVPixelFormat {
AV_PIX_FMT_BGRA64BE
,
///< packed RGBA 16:16:16:16, 64bpp, 16B, 16G, 16R, 16A, the 2-byte value for each R/G/B/A component is stored as big-endian
AV_PIX_FMT_BGRA64LE
,
///< packed RGBA 16:16:16:16, 64bpp, 16B, 16G, 16R, 16A, the 2-byte value for each R/G/B/A component is stored as little-endian
AV_PIX_FMT_YVYU422
,
///< packed YUV 4:2:2, 16bpp, Y0 Cr Y1 Cb
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
#if FF_API_PIX_FMT
...
...
libavutil/version.h
View file @
8b17243d
...
...
@@ -54,7 +54,7 @@
*/
#define LIBAVUTIL_VERSION_MAJOR 53
#define LIBAVUTIL_VERSION_MINOR 1
0
#define LIBAVUTIL_VERSION_MINOR 1
1
#define LIBAVUTIL_VERSION_MICRO 0
#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