mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-01-04 22:48:49 +00:00
examples: move vp8 parser test to codecparser example directory
This commit is contained in:
parent
82be4ad395
commit
e7512329ca
5 changed files with 12 additions and 8 deletions
3
.gitignore
vendored
3
.gitignore
vendored
|
@ -53,6 +53,9 @@ gst*orc.h
|
||||||
|
|
||||||
/tests/check/orc
|
/tests/check/orc
|
||||||
/tests/examples/codecparsers/parse-jpeg
|
/tests/examples/codecparsers/parse-jpeg
|
||||||
|
/tests/examples/codecparsers/parse-vp8
|
||||||
|
/tests/examples/gtk/gtkglsink
|
||||||
|
/tests/examples/gtk/gtksink
|
||||||
/tests/examples/shapewipe/shapewipe-example
|
/tests/examples/shapewipe/shapewipe-example
|
||||||
/tests/examples/jack/jack_client
|
/tests/examples/jack/jack_client
|
||||||
/tests/examples/opencv/gstmotioncells_dynamic_test
|
/tests/examples/opencv/gstmotioncells_dynamic_test
|
||||||
|
|
|
@ -1,7 +1,14 @@
|
||||||
noinst_PROGRAMS = parse-jpeg
|
noinst_PROGRAMS = parse-jpeg parse-vp8
|
||||||
|
|
||||||
parse_jpeg_SOURCES = parse-jpeg.c
|
parse_jpeg_SOURCES = parse-jpeg.c
|
||||||
parse_jpeg_CFLAGS = $(GST_PLUGINS_BAD_CFLAGS) $(GST_CFLAGS)
|
parse_jpeg_CFLAGS = $(GST_PLUGINS_BAD_CFLAGS) $(GST_CFLAGS)
|
||||||
parse_jpeg_LDFLAGS = $(GST_LIBS)
|
parse_jpeg_LDFLAGS = $(GST_LIBS)
|
||||||
parse_jpeg_LDADD = \
|
parse_jpeg_LDADD = \
|
||||||
$(top_builddir)/gst-libs/gst/codecparsers/libgstcodecparsers-$(GST_API_VERSION).la
|
$(top_builddir)/gst-libs/gst/codecparsers/libgstcodecparsers-$(GST_API_VERSION).la
|
||||||
|
|
||||||
|
parse_vp8_SOURCES = parse-vp8.c
|
||||||
|
parse_vp8_CFLAGS = $(GST_PLUGINS_BAD_CFLAGS) $(GST_CFLAGS)
|
||||||
|
parse_vp8_LDFLAGS = $(GST_LIBS)
|
||||||
|
parse_vp8_LDADD = \
|
||||||
|
$(top_builddir)/gst-libs/gst/codecparsers/libgstcodecparsers-$(GST_API_VERSION).la
|
||||||
|
|
||||||
|
|
1
tests/icles/.gitignore
vendored
1
tests/icles/.gitignore
vendored
|
@ -1,4 +1,3 @@
|
||||||
equalizer-test
|
equalizer-test
|
||||||
metadata_editor
|
metadata_editor
|
||||||
pitch-test
|
pitch-test
|
||||||
vp8parser-test
|
|
||||||
|
|
|
@ -11,11 +11,6 @@ else
|
||||||
GST_SOUNDTOUCH_TESTS =
|
GST_SOUNDTOUCH_TESTS =
|
||||||
endif
|
endif
|
||||||
|
|
||||||
GST_VP8PARSER_TESTS = vp8parser-test
|
|
||||||
vp8parser_test_SOURCES = vp8parser-test.c
|
|
||||||
vp8parser_test_CFLAGS = -I$(top_srcdir)/gst-libs $(GST_CFLAGS)
|
|
||||||
vp8parser_test_LDADD = $(top_builddir)/gst-libs/gst/codecparsers/libgstcodecparsers-@GST_API_VERSION@.la $(GST_LIBS)
|
|
||||||
|
|
||||||
# needs porting
|
# needs porting
|
||||||
#if HAVE_GTK
|
#if HAVE_GTK
|
||||||
#
|
#
|
||||||
|
@ -30,5 +25,5 @@ vp8parser_test_LDADD = $(top_builddir)/gst-libs/gst/codecparsers/libgstcodecp
|
||||||
GST_METADATA_TESTS =
|
GST_METADATA_TESTS =
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
noinst_PROGRAMS = $(GST_SOUNDTOUCH_TESTS) $(GST_METADATA_TESTS) $(GST_VP8PARSER_TESTS)
|
noinst_PROGRAMS = $(GST_SOUNDTOUCH_TESTS) $(GST_METADATA_TESTS)
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue