Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-2-2
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-2-2
Commits
ea146367
Commit
ea146367
authored
Jul 25, 2011
by
Jean-Baptiste Kempf
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add FSV2 FourCC and link in avcodec module
parent
cd8a707f
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
9 additions
and
1 deletion
+9
-1
include/vlc_fourcc.h
include/vlc_fourcc.h
+1
-0
modules/codec/avcodec/fourcc.c
modules/codec/avcodec/fourcc.c
+4
-0
src/misc/fourcc.c
src/misc/fourcc.c
+4
-1
No files found.
include/vlc_fourcc.h
View file @
ea146367
...
...
@@ -116,6 +116,7 @@
#define VLC_CODEC_VP8 VLC_FOURCC('V','P','8','0')
#define VLC_CODEC_JPEG2000 VLC_FOURCC('J','P','2','K')
#define VLC_CODEC_LAGARITH VLC_FOURCC('L','A','G','S')
#define VLC_CODEC_FLASHSV2 VLC_FOURCC('F','S','V','2')
/* Planar YUV 4:1:0 Y:V:U */
...
...
modules/codec/avcodec/fourcc.c
View file @
ea146367
...
...
@@ -222,6 +222,10 @@ static const struct
{
VLC_CODEC_AMV
,
CODEC_ID_AMV
,
VIDEO_ES
},
#if LIBAVCODEC_VERSION_INT >= AV_VERSION_INT( 53, 7, 0 )
{
VLC_CODEC_FLASHSV2
,
CODEC_ID_FLASHSV2
,
VIDEO_ES
},
#endif
#if 0
/* UNTESTED VideoGames*/
{ VLC_FOURCC('W','C','3','V'), CODEC_ID_XAN_WC3,
...
...
src/misc/fourcc.c
View file @
ea146367
...
...
@@ -588,9 +588,12 @@ static const entry_t p_list_video[] = {
A
(
"IV20"
),
A
(
"RT21"
),
/* Flash Screen Video */
/* Flash Screen Video */
B
(
VLC_CODEC_FLASHSV
,
"Flash Screen Video"
),
A
(
"FSV1"
),
B
(
VLC_CODEC_FLASHSV2
,
"Flash Screen Video 2"
),
A
(
"FSV2"
),
B
(
VLC_CODEC_KMVC
,
"Karl Morton's Video Codec (Worms)"
),
A
(
"KMVC"
),
...
...
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