mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-02-09 16:02:59 +00:00
Merge branch 'master' into 0.11
This commit is contained in:
commit
c5cad2aff2
5 changed files with 125 additions and 0 deletions
|
@ -380,6 +380,11 @@ gst_matroska_parse_reset (GstElement * element)
|
||||||
gst_buffer_unref (parse->common.cached_buffer);
|
gst_buffer_unref (parse->common.cached_buffer);
|
||||||
parse->common.cached_buffer = NULL;
|
parse->common.cached_buffer = NULL;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (parse->streamheader != NULL) {
|
||||||
|
gst_buffer_unref (parse->streamheader);
|
||||||
|
parse->streamheader = NULL;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
static GstFlowReturn
|
static GstFlowReturn
|
||||||
|
|
|
@ -134,6 +134,7 @@ check_PROGRAMS = \
|
||||||
elements/interleave \
|
elements/interleave \
|
||||||
elements/level \
|
elements/level \
|
||||||
elements/matroskamux \
|
elements/matroskamux \
|
||||||
|
elements/matroskaparse \
|
||||||
elements/mpegaudioparse \
|
elements/mpegaudioparse \
|
||||||
elements/multifile \
|
elements/multifile \
|
||||||
elements/qtmux \
|
elements/qtmux \
|
||||||
|
|
1
tests/check/elements/.gitignore
vendored
1
tests/check/elements/.gitignore
vendored
|
@ -37,6 +37,7 @@ interleave
|
||||||
jpegenc
|
jpegenc
|
||||||
level
|
level
|
||||||
matroskamux
|
matroskamux
|
||||||
|
matroskaparse
|
||||||
mpegaudioparse
|
mpegaudioparse
|
||||||
multifile
|
multifile
|
||||||
qtmux
|
qtmux
|
||||||
|
|
118
tests/check/elements/matroskaparse.c
Normal file
118
tests/check/elements/matroskaparse.c
Normal file
|
@ -0,0 +1,118 @@
|
||||||
|
/* GStreamer unit tests for matroskaparse
|
||||||
|
* Copyright (C) 2011 Tim-Philipp Müller <tim centricular net>
|
||||||
|
*
|
||||||
|
* This library is free software; you can redistribute it and/or
|
||||||
|
* modify it under the terms of the GNU Library General Public
|
||||||
|
* License as published by the Free Software Foundation; either
|
||||||
|
* version 2 of the License, or (at your option) any later version.
|
||||||
|
*
|
||||||
|
* This library is distributed in the hope that it will be useful,
|
||||||
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||||
|
* Library General Public License for more details.
|
||||||
|
*
|
||||||
|
* You should have received a copy of the GNU Library General Public
|
||||||
|
* License along with this library; if not, write to the
|
||||||
|
* Free Software Foundation, Inc., 59 Temple Place - Suite 330,
|
||||||
|
* Boston, MA 02111-1307, USA.
|
||||||
|
*/
|
||||||
|
|
||||||
|
#include <gst/check/gstcheck.h>
|
||||||
|
|
||||||
|
#include <gst/gst.h>
|
||||||
|
|
||||||
|
static void
|
||||||
|
run_check_for_file (const gchar * file_name, gboolean push_mode)
|
||||||
|
{
|
||||||
|
GstStateChangeReturn state_ret;
|
||||||
|
GstMessage *msg;
|
||||||
|
GstElement *src, *sep, *sink, *matroskaparse, *pipeline;
|
||||||
|
GstBus *bus;
|
||||||
|
gchar *path;
|
||||||
|
|
||||||
|
pipeline = gst_pipeline_new ("pipeline");
|
||||||
|
fail_unless (pipeline != NULL, "Failed to create pipeline!");
|
||||||
|
|
||||||
|
bus = gst_element_get_bus (pipeline);
|
||||||
|
|
||||||
|
src = gst_element_factory_make ("filesrc", "filesrc");
|
||||||
|
fail_unless (src != NULL, "Failed to create 'filesrc' element!");
|
||||||
|
|
||||||
|
if (push_mode) {
|
||||||
|
sep = gst_element_factory_make ("queue", "queue");
|
||||||
|
fail_unless (sep != NULL, "Failed to create 'queue' element");
|
||||||
|
} else {
|
||||||
|
sep = gst_element_factory_make ("identity", "identity");
|
||||||
|
fail_unless (sep != NULL, "Failed to create 'identity' element");
|
||||||
|
}
|
||||||
|
|
||||||
|
matroskaparse = gst_element_factory_make ("matroskaparse", "matroskaparse");
|
||||||
|
fail_unless (matroskaparse != NULL, "Failed to create matroskaparse element");
|
||||||
|
|
||||||
|
sink = gst_element_factory_make ("fakesink", "fakesink");
|
||||||
|
fail_unless (sink != NULL, "Failed to create 'fakesink' element!");
|
||||||
|
|
||||||
|
gst_bin_add_many (GST_BIN (pipeline), src, sep, matroskaparse, sink, NULL);
|
||||||
|
|
||||||
|
fail_unless (gst_element_link (src, sep));
|
||||||
|
fail_unless (gst_element_link (sep, matroskaparse));
|
||||||
|
fail_unless (gst_element_link (matroskaparse, sink));
|
||||||
|
|
||||||
|
path = g_build_filename (GST_TEST_FILES_PATH, file_name, NULL);
|
||||||
|
GST_LOG ("reading file '%s'", path);
|
||||||
|
g_object_set (src, "location", path, NULL);
|
||||||
|
|
||||||
|
state_ret = gst_element_set_state (pipeline, GST_STATE_PAUSED);
|
||||||
|
fail_unless (state_ret != GST_STATE_CHANGE_FAILURE);
|
||||||
|
|
||||||
|
if (state_ret == GST_STATE_CHANGE_ASYNC) {
|
||||||
|
GST_LOG ("waiting for pipeline to reach PAUSED state");
|
||||||
|
state_ret = gst_element_get_state (pipeline, NULL, NULL, -1);
|
||||||
|
fail_unless_equals_int (state_ret, GST_STATE_CHANGE_SUCCESS);
|
||||||
|
}
|
||||||
|
|
||||||
|
GST_LOG ("PAUSED, let's play a little..");
|
||||||
|
state_ret = gst_element_set_state (pipeline, GST_STATE_PLAYING);
|
||||||
|
fail_unless (state_ret != GST_STATE_CHANGE_FAILURE);
|
||||||
|
|
||||||
|
msg = gst_bus_poll (bus, GST_MESSAGE_EOS, -1);
|
||||||
|
fail_unless (msg != NULL, "Expected EOS message on bus! (%s)", file_name);
|
||||||
|
|
||||||
|
gst_message_unref (msg);
|
||||||
|
gst_object_unref (bus);
|
||||||
|
|
||||||
|
fail_unless_equals_int (gst_element_set_state (pipeline, GST_STATE_NULL),
|
||||||
|
GST_STATE_CHANGE_SUCCESS);
|
||||||
|
gst_object_unref (pipeline);
|
||||||
|
|
||||||
|
g_free (path);
|
||||||
|
}
|
||||||
|
|
||||||
|
GST_START_TEST (test_parse_file_pull)
|
||||||
|
{
|
||||||
|
run_check_for_file ("pinknoise-vorbis.mkv", TRUE);
|
||||||
|
}
|
||||||
|
|
||||||
|
GST_END_TEST;
|
||||||
|
|
||||||
|
GST_START_TEST (test_parse_file_push)
|
||||||
|
{
|
||||||
|
run_check_for_file ("pinknoise-vorbis.mkv", FALSE);
|
||||||
|
}
|
||||||
|
|
||||||
|
GST_END_TEST;
|
||||||
|
|
||||||
|
static Suite *
|
||||||
|
matroskaparse_suite (void)
|
||||||
|
{
|
||||||
|
Suite *s = suite_create ("matroskaparse");
|
||||||
|
TCase *tc_chain = tcase_create ("general");
|
||||||
|
|
||||||
|
suite_add_tcase (s, tc_chain);
|
||||||
|
tcase_add_test (tc_chain, test_parse_file_pull);
|
||||||
|
tcase_add_test (tc_chain, test_parse_file_push);
|
||||||
|
|
||||||
|
return s;
|
||||||
|
}
|
||||||
|
|
||||||
|
GST_CHECK_MAIN (matroskaparse)
|
BIN
tests/files/pinknoise-vorbis.mkv
Normal file
BIN
tests/files/pinknoise-vorbis.mkv
Normal file
Binary file not shown.
Loading…
Reference in a new issue