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
e88d4117
Commit
e88d4117
authored
Apr 03, 2007
by
Jean-Baptiste Kempf
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Backport [18408]
parent
0f8510f5
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
9 additions
and
0 deletions
+9
-0
modules/codec/ffmpeg/ffmpeg.c
modules/codec/ffmpeg/ffmpeg.c
+7
-0
modules/demux/nsv.c
modules/demux/nsv.c
+2
-0
No files found.
modules/codec/ffmpeg/ffmpeg.c
View file @
e88d4117
...
...
@@ -816,6 +816,13 @@ static struct
VIDEO_ES
,
"On2's VP6.2 Video (Flash)"
},
#endif
#if LIBAVCODEC_VERSION_INT >= ((51<<16)+(27<<8)+0)
{
VLC_FOURCC
(
'V'
,
'P'
,
'6'
,
'0'
),
CODEC_ID_VP6
,
VIDEO_ES
,
"On2's VP6.0 Video"
},
{
VLC_FOURCC
(
'V'
,
'P'
,
'6'
,
'1'
),
CODEC_ID_VP6
,
VIDEO_ES
,
"On2's VP6.1 Video"
},
#endif
#if LIBAVCODEC_BUILD >= 4685
/* Xiph.org theora */
{
VLC_FOURCC
(
't'
,
'h'
,
'e'
,
'o'
),
CODEC_ID_THEORA
,
...
...
modules/demux/nsv.c
View file @
e88d4117
...
...
@@ -456,6 +456,8 @@ static int ReadNSVs( demux_t *p_demux )
case
VLC_FOURCC
(
'V'
,
'P'
,
'3'
,
'1'
):
fcc
=
VLC_FOURCC
(
'V'
,
'P'
,
'3'
,
'1'
);
break
;
case
VLC_FOURCC
(
'V'
,
'P'
,
'6'
,
'0'
):
case
VLC_FOURCC
(
'V'
,
'P'
,
'6'
,
'1'
):
case
VLC_FOURCC
(
'V'
,
'P'
,
'6'
,
'2'
):
case
VLC_FOURCC
(
'N'
,
'O'
,
'N'
,
'E'
):
break
;
...
...
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