From 72854261bbfa425dff36a2f7e0913547c8dda6b8 Mon Sep 17 00:00:00 2001 From: Seungha Yang Date: Tue, 7 Apr 2020 22:30:55 +0900 Subject: [PATCH] tests: h264parser: Fix picture timing SEI The payloadSize don't need to include rbsp_trailing_bits() --- tests/check/libs/h264parser.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/check/libs/h264parser.c b/tests/check/libs/h264parser.c index e9a8fd3..0d6ed70 100644 --- a/tests/check/libs/h264parser.c +++ b/tests/check/libs/h264parser.c @@ -237,7 +237,7 @@ static guint8 nalu_sps_with_vui[] = { }; static guint8 nalu_sei_pic_timing[] = { - 0x00, 0x00, 0x01, 0x06, 0x01, 0x02, 0x32, 0x80 + 0x00, 0x00, 0x01, 0x06, 0x01, 0x01, 0x32, 0x80 }; static guint8 nalu_chained_sei[] = { -- 2.7.4