Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
Steve Lhomme
VLC
Commits
b7735769
Commit
b7735769
authored
Dec 17, 2006
by
trax
Browse files
* modules/codec/ffmpeg/ffmpeg.c and modules/demux/nsv.c: Add support for decoding VP60 and VP61
parent
2ac1e599
Changes
2
Hide whitespace changes
Inline
Side-by-side
modules/codec/ffmpeg/ffmpeg.c
View file @
b7735769
...
...
@@ -820,6 +820,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
/* Xiph.org theora */
{
VLC_FOURCC
(
't'
,
'h'
,
'e'
,
'o'
),
CODEC_ID_THEORA
,
VIDEO_ES
,
"Xiph.org's Theora Video"
},
...
...
modules/demux/nsv.c
View file @
b7735769
...
...
@@ -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
Supports
Markdown
0%
Try again
or
attach a new 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