Commit e88d4117 authored by Jean-Baptiste Kempf's avatar Jean-Baptiste Kempf

Backport [18408]

parent 0f8510f5
...@@ -816,6 +816,13 @@ static struct ...@@ -816,6 +816,13 @@ static struct
VIDEO_ES, "On2's VP6.2 Video (Flash)" }, VIDEO_ES, "On2's VP6.2 Video (Flash)" },
#endif #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 #if LIBAVCODEC_BUILD >= 4685
/* Xiph.org theora */ /* Xiph.org theora */
{ VLC_FOURCC('t','h','e','o'), CODEC_ID_THEORA, { VLC_FOURCC('t','h','e','o'), CODEC_ID_THEORA,
......
...@@ -456,6 +456,8 @@ static int ReadNSVs( demux_t *p_demux ) ...@@ -456,6 +456,8 @@ static int ReadNSVs( demux_t *p_demux )
case VLC_FOURCC( 'V', 'P', '3', '1' ): case VLC_FOURCC( 'V', 'P', '3', '1' ):
fcc = VLC_FOURCC( 'V', 'P', '3', '1' ); fcc = VLC_FOURCC( 'V', 'P', '3', '1' );
break; 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( 'V', 'P', '6', '2' ):
case VLC_FOURCC( 'N', 'O', 'N', 'E' ): case VLC_FOURCC( 'N', 'O', 'N', 'E' ):
break; break;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment