summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTim-Philipp Müller <tim.muller@collabora.co.uk>2012-01-04 17:59:55 +0000
committerTim-Philipp Müller <tim.muller@collabora.co.uk>2012-01-04 17:59:55 +0000
commit4e534e1d70377cba5ff7939516f481395aa6f2db (patch)
tree2d76b58cec279b1b47c2beef726ea43b0aa4b328
parentf58c5727294fe8bcbfbfed6fa0769a9b345d9c80 (diff)
tests: fix some leaks and remove files when done in qtmux test
-rw-r--r--tests/check/elements/qtmux.c10
1 files changed, 8 insertions, 2 deletions
diff --git a/tests/check/elements/qtmux.c b/tests/check/elements/qtmux.c
index 484296bad..a9364c984 100644
--- a/tests/check/elements/qtmux.c
+++ b/tests/check/elements/qtmux.c
@@ -28,6 +28,8 @@
#include <unistd.h>
#endif
+#include <glib/gstdio.h>
+
#include <gst/check/gstcheck.h>
#include <gst/pbutils/encoding-profile.h>
@@ -614,8 +616,7 @@ test_mp3_enc_base_init (gpointer klass)
{
GstElementClass *element_class = GST_ELEMENT_CLASS (klass);
- gst_element_class_add_static_pad_template (element_class,
- &sink_template);
+ gst_element_class_add_static_pad_template (element_class, &sink_template);
gst_element_class_add_static_pad_template (element_class, &src_template);
gst_element_class_set_details_simple (element_class, "MPEG1 Audio Encoder",
@@ -838,7 +839,12 @@ test_average_bitrate_custom (const gchar * elementname,
(guint) gst_util_uint64_scale_round ((guint64) total_bytes,
(guint64) 8 * GST_SECOND, (guint64) total_duration);
fail_unless (bitrate == expected);
+ gst_tag_list_free (taglist);
}
+
+ /* delete file */
+ g_unlink (location);
+ g_free (location);
}
GST_START_TEST (test_average_bitrate)