[vlc-commits] packetizer: h264: profile/level are max 1 byte
Francois Cartegnie
git at videolan.org
Sat Jun 11 21:22:46 CEST 2016
vlc | branch: master | Francois Cartegnie <fcvlcdev at free.fr> | Sat Jun 11 13:22:03 2016 +0200| [005c62784084fe22ef2919fc9dfb7f0366487144] | committer: Francois Cartegnie
packetizer: h264: profile/level are max 1 byte
> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=005c62784084fe22ef2919fc9dfb7f0366487144
---
modules/packetizer/h264_nal.h | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/modules/packetizer/h264_nal.h b/modules/packetizer/h264_nal.h
index f10ba97..e97739d 100644
--- a/modules/packetizer/h264_nal.h
+++ b/modules/packetizer/h264_nal.h
@@ -93,7 +93,7 @@ void h264_release_pps( h264_picture_parameter_set_t * );
struct h264_sequence_parameter_set_t
{
int i_id;
- int i_profile, i_level;
+ uint8_t i_profile, i_level;
uint8_t i_constraint_set_flags;
/* according to avcC, 3 bits max for those */
uint8_t i_chroma_idc;
More information about the vlc-commits
mailing list