summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAurélien Zanelli <aurelien.zanelli@parrot.com>2014-10-09 15:12:01 +0200
committerTim-Philipp Müller <tim@centricular.com>2014-10-24 22:10:53 +0100
commit475b0d7981668e5d5a509c8c2c78af77b4747f0a (patch)
tree7490458a5e9c3f62b2b0fd6d7094f6d620ad771b
parentfb9ac88030f7a48b07aa8258d6632dfe7b773e2c (diff)
downloadgstreamer-plugins-bad-475b0d7981668e5d5a509c8c2c78af77b4747f0a.tar.gz
vc1parser: fix expected level in sequence-layer parsing unit test
Sequence-layer used for unit test have a level set to 2 which should match the medium level, not the high. https://bugzilla.gnome.org/show_bug.cgi?id=738230
-rw-r--r--tests/check/libs/vc1parser.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/check/libs/vc1parser.c b/tests/check/libs/vc1parser.c
index 1d00e194b..cb0bce70f 100644
--- a/tests/check/libs/vc1parser.c
+++ b/tests/check/libs/vc1parser.c
@@ -1227,7 +1227,7 @@ GST_START_TEST (test_vc1_parse_sequence_layer)
assert_equals_int (seq_layer.struct_a.vert_size, 48);
assert_equals_int (seq_layer.struct_a.horiz_size, 48);
- assert_equals_int (seq_layer.struct_b.level, GST_VC1_LEVEL_HIGH);
+ assert_equals_int (seq_layer.struct_b.level, GST_VC1_LEVEL_MEDIUM);
assert_equals_int (seq_layer.struct_b.cbr, 1);
assert_equals_int (seq_layer.struct_b.framerate, 29);
assert_equals_int (seq_layer.struct_b.hrd_buffer, 0);