git.videolan.org
/
vlc.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
dd7fc9b
)
Fixed VP31 in NSV files.
author
Laurent Aimar
<fenrir@videolan.org>
Wed, 6 May 2009 21:22:28 +0000
(23:22 +0200)
committer
Laurent Aimar
<fenrir@videolan.org>
Wed, 6 May 2009 21:26:35 +0000
(23:26 +0200)
It seems that ffmpeg care about VP30 != VP31 fourcc.
modules/demux/nsv.c
patch
|
blob
|
history
diff --git
a/modules/demux/nsv.c
b/modules/demux/nsv.c
index
329c717
..
d8cedd1
100644
(file)
--- a/
modules/demux/nsv.c
+++ b/
modules/demux/nsv.c
@@
-473,9
+473,13
@@
static int ReadNSVs( demux_t *p_demux )
{
case VLC_FOURCC( 'V', 'P', '3', ' ' ):
case VLC_FOURCC( 'V', 'P', '3', '0' ):
- case VLC_FOURCC( 'V', 'P', '3', '1' ):
fcc = VLC_FOURCC( 'V', 'P', '3', '0' );
break;
+
+ case VLC_FOURCC( 'V', 'P', '3', '1' ):
+ fcc = VLC_FOURCC( 'V', 'P', '3', '1' );
+ break;
+
case VLC_FOURCC( 'V', 'P', '5', ' ' ):
case VLC_FOURCC( 'V', 'P', '5', '0' ):
fcc = VLC_FOURCC( 'V', 'P', '5', '0' );