mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-02-17 11:45:25 +00:00
tests: fix some leaks and remove files when done in qtmux test
This commit is contained in:
parent
b82d9ca240
commit
12ff707854
1 changed files with 8 additions and 2 deletions
|
@ -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)
|
||||
|
|
Loading…
Reference in a new issue