summaryrefslogtreecommitdiffstats
path: root/tests/check/elements
diff options
context:
space:
mode:
authorThomas Vander Stichele <thomas@apestaart.org>2005-08-25 16:19:39 +0000
committerThomas Vander Stichele <thomas@apestaart.org>2005-08-25 16:19:39 +0000
commit1dfd2d885647ba0e5b8816f61a6a3617e5aeb834 (patch)
treee79639979106747079b3fbb8cbd548fa4b571435 /tests/check/elements
parent3d95afd88998b3aa8d26fbf5252ff7cbb46900da (diff)
downloadgst-plugins-bad-1dfd2d885647ba0e5b8816f61a6a3617e5aeb834.tar.gz
gst-plugins-bad-1dfd2d885647ba0e5b8816f61a6a3617e5aeb834.tar.bz2
gst-plugins-bad-1dfd2d885647ba0e5b8816f61a6a3617e5aeb834.zip
some more testing for perfect streams
Original commit message from CVS: some more testing for perfect streams
Diffstat (limited to 'tests/check/elements')
-rw-r--r--tests/check/elements/audioresample.c29
1 files changed, 23 insertions, 6 deletions
diff --git a/tests/check/elements/audioresample.c b/tests/check/elements/audioresample.c
index 4b3368d4..d39eb9b1 100644
--- a/tests/check/elements/audioresample.c
+++ b/tests/check/elements/audioresample.c
@@ -54,7 +54,7 @@ static GstStaticPadTemplate srctemplate = GST_STATIC_PAD_TEMPLATE ("src",
);
GstElement *
-setup_audioresample (int inchannels, int inrate, int outchannels, int outrate)
+setup_audioresample (int channels, int inrate, int outrate)
{
GstElement *audioresample;
GstCaps *caps;
@@ -66,7 +66,7 @@ setup_audioresample (int inchannels, int inrate, int outchannels, int outrate)
caps = gst_caps_from_string (RESAMPLE_CAPS_TEMPLATE_STRING);
structure = gst_caps_get_structure (caps, 0);
- gst_structure_set (structure, "channels", G_TYPE_INT, inchannels,
+ gst_structure_set (structure, "channels", G_TYPE_INT, channels,
"rate", G_TYPE_INT, inrate, NULL);
fail_unless (gst_caps_is_fixed (caps));
@@ -78,7 +78,7 @@ setup_audioresample (int inchannels, int inrate, int outchannels, int outrate)
caps = gst_caps_from_string (RESAMPLE_CAPS_TEMPLATE_STRING);
structure = gst_caps_get_structure (caps, 0);
- gst_structure_set (structure, "channels", G_TYPE_INT, outchannels,
+ gst_structure_set (structure, "channels", G_TYPE_INT, channels,
"rate", G_TYPE_INT, outrate, NULL);
fail_unless (gst_caps_is_fixed (caps));
@@ -127,7 +127,10 @@ fail_unless_perfect_stream ()
timestamp += duration;
offset = offset_end;
+ gst_buffer_unref (buffer);
}
+ g_list_free (buffers);
+ buffers = NULL;
}
static void
@@ -141,7 +144,7 @@ test_perfect_stream_instance (int inrate, int outrate, int samples,
int i, j;
gint16 *p;
- audioresample = setup_audioresample (2, inrate, 2, outrate);
+ audioresample = setup_audioresample (2, inrate, outrate);
caps = gst_pad_get_negotiated_caps (mysrcpad);
fail_unless (gst_caps_is_fixed (caps));
@@ -171,7 +174,7 @@ test_perfect_stream_instance (int inrate, int outrate, int samples,
/* pushing gives away my reference ... */
fail_unless (gst_pad_push (mysrcpad, inbuffer) == GST_FLOW_OK);
/* ... but it ends up being collected on the global buffer list */
- fail_unless (g_list_length (buffers) == j);
+ fail_unless_equals_int (g_list_length (buffers), j);
}
/* FIXME: we should make audioresample handle eos by flushing out the last
@@ -192,7 +195,21 @@ test_perfect_stream_instance (int inrate, int outrate, int samples,
*/
GST_START_TEST (test_perfect_stream)
{
- test_perfect_stream_instance (4000, 2000, 1000, 20);
+ guint inrate, outrate, bytes;
+
+ /* integral scalings */
+ test_perfect_stream_instance (48000, 24000, 500, 20);
+ test_perfect_stream_instance (48000, 12000, 500, 20);
+ test_perfect_stream_instance (12000, 24000, 500, 20);
+ test_perfect_stream_instance (12000, 48000, 500, 20);
+
+ /* non-integral scalings */
+ test_perfect_stream_instance (44100, 8000, 500, 20);
+ test_perfect_stream_instance (8000, 44100, 500, 20);
+
+ /* wacky scalings */
+ test_perfect_stream_instance (12345, 54321, 500, 20);
+ test_perfect_stream_instance (101, 99, 500, 20);
}
GST_END_TEST;