summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorJan Schmidt <thaytan@noraisin.net>2012-09-13 13:34:16 -0700
committerJan Schmidt <thaytan@noraisin.net>2012-09-13 13:34:56 -0700
commite4e016097a489e3c82eb2252c75c707cab6517fd (patch)
treeb73532ad349cca88aba74bab1a598b61f8d9832f /tests
parentaa23ea6fca0578670f5dea5824296c3c66925f35 (diff)
downloadgstreamer-plugins-bad-e4e016097a489e3c82eb2252c75c707cab6517fd.tar.gz
check: Fix mpegvideoparser PAR expectation
The parser (correctly) now interprets the test header using MPEG-1 semantics, so fix the test expectation.
Diffstat (limited to 'tests')
-rw-r--r--tests/check/libs/mpegvideoparser.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/check/libs/mpegvideoparser.c b/tests/check/libs/mpegvideoparser.c
index f598dd7e3..f80d1f843 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);