From e4e016097a489e3c82eb2252c75c707cab6517fd Mon Sep 17 00:00:00 2001 From: Jan Schmidt Date: Thu, 13 Sep 2012 13:34:16 -0700 Subject: [PATCH] check: Fix mpegvideoparser PAR expectation The parser (correctly) now interprets the test header using MPEG-1 semantics, so fix the test expectation. --- tests/check/libs/mpegvideoparser.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/check/libs/mpegvideoparser.c b/tests/check/libs/mpegvideoparser.c index f598dd7e38..f80d1f8436 100644 --- a/tests/check/libs/mpegvideoparser.c +++ b/tests/check/libs/mpegvideoparser.c @@ -102,8 +102,8 @@ GST_START_TEST (test_mpeg_parse_sequence_header) assert_equals_int (seqhdr.width, 1920); assert_equals_int (seqhdr.height, 1080); assert_equals_int (seqhdr.aspect_ratio_info, 3); - assert_equals_int (seqhdr.par_w, 17280); - assert_equals_int (seqhdr.par_h, 17280); + assert_equals_int (seqhdr.par_w, 64); + assert_equals_int (seqhdr.par_h, 45); assert_equals_int (seqhdr.frame_rate_code, 7); assert_equals_int (seqhdr.fps_n, 60000); assert_equals_int (seqhdr.fps_d, 1001);