[vlc-commits] access: bluray: fix truncated hevc EOS
Francois Cartegnie
git at videolan.org
Thu Jan 23 21:12:46 CET 2020
vlc | branch: master | Francois Cartegnie <fcvlcdev at free.fr> | Mon Jan 20 20:19:52 2020 +0100| [141412cb5db4f9cb06d2cc2706ab4c8760b40361] | committer: Francois Cartegnie
access: bluray: fix truncated hevc EOS
> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=141412cb5db4f9cb06d2cc2706ab4c8760b40361
---
modules/access/bluray.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/modules/access/bluray.c b/modules/access/bluray.c
index c615b1ae75..a299878282 100644
--- a/modules/access/bluray.c
+++ b/modules/access/bluray.c
@@ -2740,7 +2740,7 @@ static void streamFlush( demux_sys_t *p_sys )
}
uint8_t seq_end_pes[] = {
- 0x00, 0x00, 0x01, 0xe0, 0x00, 0x07, 0x80, 0x00, 0x00, /* PES header */
+ 0x00, 0x00, 0x01, 0xe0, 0x00, 0x08, 0x80, 0x00, 0x00, /* PES header */
0x00, 0x00, 0x01, i_eos, /* PES payload: sequence end */
0x00, /* 2nd byte for HEVC NAL, pads others */
};
More information about the vlc-commits
mailing list