[vlc-commits] packetizer: h264_nal: add level 6 DPB limits
Francois Cartegnie
git at videolan.org
Thu Sep 12 12:43:46 CEST 2019
vlc | branch: master | Francois Cartegnie <fcvlcdev at free.fr> | Wed Sep 11 13:57:15 2019 +0200| [2102f6046599278b4ff19f5c733b8fa3e758491a] | committer: Francois Cartegnie
packetizer: h264_nal: add level 6 DPB limits
> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=2102f6046599278b4ff19f5c733b8fa3e758491a
---
modules/packetizer/h264_nal.c | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/modules/packetizer/h264_nal.c b/modules/packetizer/h264_nal.c
index e75c87a602..4499fdeb97 100644
--- a/modules/packetizer/h264_nal.c
+++ b/modules/packetizer/h264_nal.c
@@ -58,6 +58,9 @@ enum h264_level_numbers_e
H264_LEVEL_NUMBER_5 = 50,
H264_LEVEL_NUMBER_5_1 = 51,
H264_LEVEL_NUMBER_5_2 = 52,
+ H264_LEVEL_NUMBER_6 = 60,
+ H264_LEVEL_NUMBER_6_1 = 61,
+ H264_LEVEL_NUMBER_6_2 = 62,
};
const struct
@@ -82,6 +85,9 @@ const struct
{ H264_LEVEL_NUMBER_5, { 110400 } },
{ H264_LEVEL_NUMBER_5_1, { 184320 } },
{ H264_LEVEL_NUMBER_5_2, { 184320 } },
+ { H264_LEVEL_NUMBER_6, { 696320 } },
+ { H264_LEVEL_NUMBER_6_1, { 696320 } },
+ { H264_LEVEL_NUMBER_6_2, { 696320 } },
};
/*
More information about the vlc-commits
mailing list