[MPlayer-cvslog] r36474 - in trunk: etc/codecs.conf libmpdemux/mp_taglists.c

cehoyos subversion at mplayerhq.hu
Thu Oct 17 11:47:43 CEST 2013


Author: cehoyos
Date: Thu Oct 17 11:47:42 2013
New Revision: 36474

Log:
Preliminary support for FFmpeg HEVC decoder.

Does not yet work because of the experimental HEVC parser.

Modified:
   trunk/etc/codecs.conf
   trunk/libmpdemux/mp_taglists.c

Modified: trunk/etc/codecs.conf
==============================================================================
--- trunk/etc/codecs.conf	Thu Oct 17 02:07:12 2013	(r36473)
+++ trunk/etc/codecs.conf	Thu Oct 17 11:47:42 2013	(r36474)
@@ -1361,6 +1361,15 @@ videocodec ffmsascreen
   dll msa1
   out YV12
 
+videocodec ffhevc
+  info "FFmpeg HEVC / H.265"
+  status working
+  fourcc HEVC
+  fourcc hvc1
+  driver ffmpeg
+  dll hevc
+  out YV12
+
 videocodec ffh264
   info "FFmpeg H.264"
   status working

Modified: trunk/libmpdemux/mp_taglists.c
==============================================================================
--- trunk/libmpdemux/mp_taglists.c	Thu Oct 17 02:07:12 2013	(r36473)
+++ trunk/libmpdemux/mp_taglists.c	Thu Oct 17 11:47:42 2013	(r36474)
@@ -151,6 +151,9 @@ static const struct AVCodecTag mp_bmp_ta
     { AV_CODEC_ID_DSICINVIDEO,       MKTAG('D', 'C', 'I', 'V') },
     { AV_CODEC_ID_DXA,               MKTAG('D', 'X', 'A', '1') },
     { AV_CODEC_ID_FLIC,              MKTAG('f', 'l', 'i', 'c') },
+#if LIBAVUTIL_VERSION_MICRO >= 100
+    { AV_CODEC_ID_HEVC,              MKTAG('H', 'E', 'V', 'C') },
+#endif
     { AV_CODEC_ID_IDCIN,             MKTAG('I', 'D', 'C', 'I') },
     { AV_CODEC_ID_INTERPLAY_VIDEO,   MKTAG('I', 'N', 'P', 'V') },
     { AV_CODEC_ID_JV,                MKTAG('F', 'F', 'J', 'V') },


More information about the MPlayer-cvslog mailing list