summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorLuis de Bethencourt <luis.bg@samsung.com>2015-02-24 18:50:03 +0000
committerLuis de Bethencourt <luis.bg@samsung.com>2015-02-24 18:50:28 +0000
commitb383ae0fbdaa9d71c7e2ba003711c333d045fce3 (patch)
treef6eddbe7eb79fba5042e8f12a8ebc84c3e8ee257 /tests
parente45db8ca1e05b5250912f59cca37de7900b6e8c0 (diff)
downloadgstreamer-plugins-bad-b383ae0fbdaa9d71c7e2ba003711c333d045fce3.tar.gz
jpegparse: interlaced doesn't mean progressive scan
Removing interlaced variable since it is meant to mean progressive scan and that isn't used.
Diffstat (limited to 'tests')
-rw-r--r--tests/check/elements/jpegparse.c8
1 files changed, 3 insertions, 5 deletions
diff --git a/tests/check/elements/jpegparse.c b/tests/check/elements/jpegparse.c
index 392f529ee..80c26e88d 100644
--- a/tests/check/elements/jpegparse.c
+++ b/tests/check/elements/jpegparse.c
@@ -137,7 +137,7 @@ guint8 test_data_comment[] = {
};
guint8 test_data_sof0[] = {
- 0xff, 0xc0,
+ 0xff, 0xc0, /* baseline dct-based */
0x00, 0x11, /* size */
0x08, /* precision */
0x00, 0x3c, /* width */
@@ -327,8 +327,7 @@ GST_START_TEST (test_parse_app1_exif)
caps_out = gst_caps_new_simple ("image/jpeg", "parsed", G_TYPE_BOOLEAN, TRUE,
"framerate", GST_TYPE_FRACTION, 1, 1, "format", G_TYPE_STRING,
- "I420", "interlaced", G_TYPE_BOOLEAN, FALSE,
- "width", G_TYPE_INT, 80, "height", G_TYPE_INT, 60, NULL);
+ "I420", "width", G_TYPE_INT, 80, "height", G_TYPE_INT, 60, NULL);
buffer_in = make_my_input_buffer (test_data_app1_exif,
sizeof (test_data_app1_exif));
@@ -353,8 +352,7 @@ GST_START_TEST (test_parse_comment)
caps_out = gst_caps_new_simple ("image/jpeg", "parsed", G_TYPE_BOOLEAN, TRUE,
"framerate", GST_TYPE_FRACTION, 1, 1, "format", G_TYPE_STRING,
- "I420", "interlaced", G_TYPE_BOOLEAN, FALSE,
- "width", G_TYPE_INT, 80, "height", G_TYPE_INT, 60, NULL);
+ "I420", "width", G_TYPE_INT, 80, "height", G_TYPE_INT, 60, NULL);
buffer_in = make_my_input_buffer (test_data_comment,
sizeof (test_data_comment));