Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
VLC
Manage
Activity
Members
Labels
Plan
Issues
4k
Issue boards
Milestones
Code
Merge requests
423
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Analyze
Contributor analytics
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
VideoLAN
VLC
Merge requests
!1594
fourcc: clarify hi-def pixel formats
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
fourcc: clarify hi-def pixel formats
Courmisch/vlc:p10
into
master
Overview
1
Commits
4
Pipelines
3
Changes
3
Merged
Rémi Denis-Courmont
requested to merge
Courmisch/vlc:p10
into
master
2 years ago
Overview
1
Commits
4
Pipelines
3
Changes
3
Expand
0
0
Merge request reports
Compare
master
version 2
11300284
2 years ago
version 1
c74b69fd
2 years ago
master (base)
and
latest version
latest version
a9ffd6ae
4 commits,
2 years ago
version 2
11300284
4 commits,
2 years ago
version 1
c74b69fd
4 commits,
2 years ago
3 files
+
14
−
16
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
3
Search (e.g. *.vue) (Ctrl+P)
include/vlc_fourcc.h
+
9
−
9
Options
@@ -218,7 +218,7 @@
/* Planar YUV 4:2:0 Y:U:V 10-bit stored on 16 bits LSB */
#define VLC_CODEC_I420_10L VLC_FOURCC('I','0','A','L')
#define VLC_CODEC_I420_10B VLC_FOURCC('I','0','A','B')
/* Planar YUV 4:2:0 Y:U:V 12-bit stored on 16 bits */
/* Planar YUV 4:2:0 Y:U:V 12-bit stored on 16 bits
LSB
*/
#define VLC_CODEC_I420_12L VLC_FOURCC('I','0','C','L')
#define VLC_CODEC_I420_12B VLC_FOURCC('I','0','C','B')
@@ -228,13 +228,13 @@
/* Planar YUV 4:2:2 Y:U:V 8-bit */
#define VLC_CODEC_I422 VLC_FOURCC('I','4','2','2')
/* Planar YUV 4:2:2 Y:U:V 9-bit stored on 16 bits */
/* Planar YUV 4:2:2 Y:U:V 9-bit stored on 16 bits
LSB
*/
#define VLC_CODEC_I422_9L VLC_FOURCC('I','2','9','L')
#define VLC_CODEC_I422_9B VLC_FOURCC('I','2','9','B')
/* Planar YUV 4:2:2 Y:U:V 10-bit stored on 16 bits */
/* Planar YUV 4:2:2 Y:U:V 10-bit stored on 16 bits
LSB
*/
#define VLC_CODEC_I422_10L VLC_FOURCC('I','2','A','L')
#define VLC_CODEC_I422_10B VLC_FOURCC('I','2','A','B')
/* Planar YUV 4:2:2 Y:U:V 12-bit stored on 16 bits */
/* Planar YUV 4:2:2 Y:U:V 12-bit stored on 16 bits
LSB
*/
#define VLC_CODEC_I422_12L VLC_FOURCC('I','2','C','L')
#define VLC_CODEC_I422_12B VLC_FOURCC('I','2','C','B')
/* Planar YUV 4:2:2 Y:U:V 16-bit stored on 16 bits */
@@ -245,13 +245,13 @@
#define VLC_CODEC_I440 VLC_FOURCC('I','4','4','0')
/* Planar YUV 4:4:4 Y:U:V 8-bit */
#define VLC_CODEC_I444 VLC_FOURCC('I','4','4','4')
/* Planar YUV 4:4:4 Y:U:V 9-bit stored on 16 bits */
/* Planar YUV 4:4:4 Y:U:V 9-bit stored on 16 bits
LSB
*/
#define VLC_CODEC_I444_9L VLC_FOURCC('I','4','9','L')
#define VLC_CODEC_I444_9B VLC_FOURCC('I','4','9','B')
/* Planar YUV 4:4:4 Y:U:V 10-bit stored on 16 bits */
/* Planar YUV 4:4:4 Y:U:V 10-bit stored on 16 bits
LSB
*/
#define VLC_CODEC_I444_10L VLC_FOURCC('I','4','A','L')
#define VLC_CODEC_I444_10B VLC_FOURCC('I','4','A','B')
/* Planar YUV 4:4:4 Y:U:V 12-bit stored on 16 bits */
/* Planar YUV 4:4:4 Y:U:V 12-bit stored on 16 bits
LSB
*/
#define VLC_CODEC_I444_12L VLC_FOURCC('I','4','C','L')
#define VLC_CODEC_I444_12B VLC_FOURCC('I','4','C','B')
/* Planar YUV 4:4:4 Y:U:V 16-bit */
@@ -298,9 +298,9 @@
#define VLC_CODEC_NV24 VLC_FOURCC('N','V','2','4')
/* 2 planes Y/VU 4:4:4 */
#define VLC_CODEC_NV42 VLC_FOURCC('N','V','4','2')
/* 2 planes Y/UV 4:2:0 10-bit */
/* 2 planes Y/UV 4:2:0 10-bit
MSB, little endian
*/
#define VLC_CODEC_P010 VLC_FOURCC('P','0','1','0')
/* 2 planes Y/UV 4:2:0 16-bit */
/* 2 planes Y/UV 4:2:0 16-bit
, little endian
*/
#define VLC_CODEC_P016 VLC_FOURCC('P','0','1','6')
/* Packed YUV */
Loading