Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Redmine
Redmine
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
videolan
vlc
Commits
bb2ef16f
Commit
bb2ef16f
authored
Oct 15, 2009
by
Jean-Baptiste Kempf
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Support for Forward Uncompressed video
parent
7d6cf7b5
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
13 additions
and
4 deletions
+13
-4
include/vlc_fourcc.h
include/vlc_fourcc.h
+2
-0
modules/codec/avcodec/fourcc.c
modules/codec/avcodec/fourcc.c
+8
-4
src/misc/fourcc.c
src/misc/fourcc.c
+3
-0
No files found.
include/vlc_fourcc.h
View file @
bb2ef16f
...
...
@@ -110,6 +110,8 @@
#define VLC_CODEC_MDEC VLC_FOURCC('M','D','E','C')
#define VLC_CODEC_VMDVIDEO VLC_FOURCC('V','M','D','V')
#define VLC_CODEC_CDG VLC_FOURCC('C','D','G',' ')
#define VLC_CODEC_FRWU VLC_FOURCC('F','R','W','U')
/* Planar YUV 4:2:0 Y:V:U */
#define VLC_CODEC_YV12 VLC_FOURCC('Y','V','1','2')
...
...
modules/codec/avcodec/fourcc.c
View file @
bb2ef16f
...
...
@@ -187,10 +187,18 @@ static const struct
{
VLC_CODEC_MIMIC
,
CODEC_ID_MIMIC
,
VIDEO_ES
},
#endif
#if LIBAVCODEC_VERSION_INT >= AV_VERSION_INT( 51, 55, 0 )
{
VLC_CODEC_DIRAC
,
CODEC_ID_DIRAC
,
VIDEO_ES
},
#endif
#if LIBAVCODEC_VERSION_INT >= AV_VERSION_INT( 52, 29, 0 )
{
VLC_CODEC_V210
,
CODEC_ID_V210
,
VIDEO_ES
},
#endif
#if LIBAVCODEC_VERSION_INT >= AV_VERSION_INT( 52, 37, 0 )
{
VLC_CODEC_FRWU
,
CODEC_ID_FRWU
,
VIDEO_ES
},
#endif
/* Videogames Codecs */
{
VLC_CODEC_INTERPLAY
,
CODEC_ID_INTERPLAY_VIDEO
,
VIDEO_ES
},
...
...
@@ -246,10 +254,6 @@ static const struct
{
VLC_CODEC_TARGA
,
CODEC_ID_TARGA
,
VIDEO_ES
},
{
VLC_CODEC_SGI
,
CODEC_ID_SGI
,
VIDEO_ES
},
#if LIBAVCODEC_VERSION_INT >= AV_VERSION_INT( 51, 55, 0 )
{
VLC_CODEC_DIRAC
,
CODEC_ID_DIRAC
,
VIDEO_ES
},
#endif
/*
* Audio Codecs
*/
...
...
src/misc/fourcc.c
View file @
bb2ef16f
...
...
@@ -602,6 +602,9 @@ static const entry_t p_list_video[] = {
B
(
VLC_CODEC_CDG
,
"CD-G Video"
),
A
(
"CDG "
),
B
(
VLC_CODEC_FRWU
,
"Forward Uncompressed"
),
A
(
"FRWU"
),
/* */
B
(
VLC_CODEC_YV12
,
"Planar 4:2:0 YVU"
),
A
(
"YV12"
),
...
...
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