mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-01-11 18:05:37 +00:00
check: Fix mpegvideoparser PAR expectation
The parser (correctly) now interprets the test header using MPEG-1 semantics, so fix the test expectation.
This commit is contained in:
parent
aa23ea6fca
commit
e4e016097a
1 changed files with 2 additions and 2 deletions
|
@ -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);
|
||||
|
|
Loading…
Reference in a new issue