mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-01-11 09:55:36 +00:00
playbin: Rename compressed unit test to complex
It's not really about compressed streams anymore, but also about stream switching and stream combiners.
This commit is contained in:
parent
0dee7777ff
commit
f763a2364f
2 changed files with 7 additions and 7 deletions
|
@ -126,7 +126,7 @@ check_PROGRAMS = \
|
|||
elements/multifdsink \
|
||||
elements/multisocketsink \
|
||||
elements/playbin \
|
||||
elements/playbin-compressed \
|
||||
elements/playbin-complex \
|
||||
$(check_pango) \
|
||||
$(check_subparse) \
|
||||
elements/videoconvert \
|
||||
|
@ -329,8 +329,8 @@ elements_libvisual_CFLAGS = $(CFLAGS) $(AM_CFLAGS)
|
|||
elements_playbin_LDADD = $(GST_BASE_LIBS) $(LDADD)
|
||||
elements_playbin_CFLAGS = $(GST_BASE_CFLAGS) $(AM_CFLAGS)
|
||||
|
||||
elements_playbin_compressed_LDADD = $(top_builddir)/gst-libs/gst/audio/libgstaudio-@GST_API_VERSION@.la $(GST_BASE_LIBS) $(LDADD)
|
||||
elements_playbin_compressed_CFLAGS = $(GST_PLUGINS_BASE_CFLAGS) $(GST_BASE_CFLAGS) $(AM_CFLAGS)
|
||||
elements_playbin_complex_LDADD = $(top_builddir)/gst-libs/gst/audio/libgstaudio-@GST_API_VERSION@.la $(GST_BASE_LIBS) $(LDADD)
|
||||
elements_playbin_complex_CFLAGS = $(GST_PLUGINS_BASE_CFLAGS) $(GST_BASE_CFLAGS) $(AM_CFLAGS)
|
||||
|
||||
elements_decodebin_LDADD = $(GST_BASE_LIBS) $(LDADD)
|
||||
elements_decodebin_CFLAGS = $(GST_BASE_CFLAGS) $(AM_CFLAGS)
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
/* GStreamer unit tests for playbin compressed stream support
|
||||
/* GStreamer unit tests for playbin complex stream support
|
||||
*
|
||||
* Copyright (C) 2006 Tim-Philipp Müller <tim centricular net>
|
||||
* Copyright (C) 2010 Sebastian Dröge <sebastian.droege@collabora.co.uk>
|
||||
|
@ -2483,9 +2483,9 @@ GST_END_TEST;
|
|||
#endif
|
||||
|
||||
static Suite *
|
||||
playbin_compressed_suite (void)
|
||||
playbin_complex_suite (void)
|
||||
{
|
||||
Suite *s = suite_create ("playbin_compressed");
|
||||
Suite *s = suite_create ("playbin_complex");
|
||||
TCase *tc_chain = tcase_create ("general");
|
||||
|
||||
suite_add_tcase (s, tc_chain);
|
||||
|
@ -2539,4 +2539,4 @@ playbin_compressed_suite (void)
|
|||
return s;
|
||||
}
|
||||
|
||||
GST_CHECK_MAIN (playbin_compressed);
|
||||
GST_CHECK_MAIN (playbin_complex);
|
Loading…
Reference in a new issue