[vlc-commits] demux: avformat: blacklist raw h264

Francois Cartegnie git at videolan.org
Mon Jul 18 17:08:17 CEST 2016


vlc | branch: master | Francois Cartegnie <fcvlcdev at free.fr> | Mon Jul 18 17:05:58 2016 +0200| [2f5046fb29103bb3f6a01b05a04b3e1e1983c73c] | committer: Francois Cartegnie

demux: avformat: blacklist raw h264

refs #17174
Same issue as raw HEVC, no timestamps output
so no PCR, and PCR can't be set by packetizer.

> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=2f5046fb29103bb3f6a01b05a04b3e1e1983c73c
---

 modules/demux/avformat/demux.c |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/modules/demux/avformat/demux.c b/modules/demux/avformat/demux.c
index 8ef3db8..b5e9d6b 100644
--- a/modules/demux/avformat/demux.c
+++ b/modules/demux/avformat/demux.c
@@ -229,7 +229,7 @@ int OpenDemux( vlc_object_t *p_this )
             /* Don't handle subtitles format */
             "ass", "srt", "microdvd",
             /* No timestamps at all */
-            "hevc",
+            "hevc", "h264",
             ""
         };
 



More information about the vlc-commits mailing list