[vlc-commits] mp4: support 'hev1' sample entry name for HEVC.
Tim Walker
git at videolan.org
Sun Apr 6 13:14:21 CEST 2014
vlc | branch: master | Tim Walker <tdskywalker at gmail.com> | Sun Mar 30 15:26:03 2014 +0200| [dac22c2a2f97ccaa14119649848630943837fcf5] | committer: Denis Charmet
mp4: support 'hev1' sample entry name for HEVC.
libavformat produces such files.
> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=dac22c2a2f97ccaa14119649848630943837fcf5
---
modules/demux/mp4/mp4.c | 1 +
1 file changed, 1 insertion(+)
diff --git a/modules/demux/mp4/mp4.c b/modules/demux/mp4/mp4.c
index f70fc3a..265c7c5 100644
--- a/modules/demux/mp4/mp4.c
+++ b/modules/demux/mp4/mp4.c
@@ -2315,6 +2315,7 @@ static int TrackCreateES( demux_t *p_demux, mp4_track_t *p_track,
break;
}
case VLC_FOURCC( 'h', 'v', 'c', '1' ):
+ case VLC_FOURCC( 'h', 'e', 'v', '1' ):
{
MP4_Box_t *p_hvcC = MP4_BoxGet( p_sample, "hvcC" );
More information about the vlc-commits
mailing list