mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-04 16:39:39 +00:00
8c7bc7dff8
This is a mirror of h265parse element in upstream gst-plugins-bad. There could be additional patches but all should go to upstream. This is for making development faster. Note: vaapiparse_h265 will get build only for GStreamer version >= 1.4
60 lines
1.2 KiB
Makefile
60 lines
1.2 KiB
Makefile
SUBDIRS = libvpx
|
|
|
|
EXTRA_DIST =
|
|
|
|
codecparsers_srcdir = \
|
|
$(top_srcdir)/ext/codecparsers/gst-libs/gst/codecparsers
|
|
|
|
codecparsers_source_c = \
|
|
dboolhuff.c \
|
|
gsth264parser.c \
|
|
gstjpegparser.c \
|
|
gstmpeg4parser.c \
|
|
gstmpegvideoparser.c \
|
|
gstvc1parser.c \
|
|
gstvp8parser.c \
|
|
gstvp8rangedecoder.c \
|
|
nalutils.c \
|
|
parserutils.c \
|
|
vp8utils.c \
|
|
gsth265parser.c \
|
|
$(NULL)
|
|
|
|
EXTRA_DIST += $(codecparsers_source_c:%.c=$(codecparsers_srcdir)/%.c)
|
|
|
|
codecparsers_source_h = \
|
|
dboolhuff.h \
|
|
gsth264parser.h \
|
|
gstjpegparser.h \
|
|
gstmpeg4parser.h \
|
|
gstmpegvideoparser.h \
|
|
gstvc1parser.h \
|
|
gstvp8parser.h \
|
|
gstvp8rangedecoder.h \
|
|
nalutils.h \
|
|
parserutils.h \
|
|
vp8utils.h \
|
|
gsth265parser.h \
|
|
$(NULL)
|
|
|
|
EXTRA_DIST += $(codecparsers_source_h:%.h=$(codecparsers_srcdir)/%.h)
|
|
|
|
videoparsers_srcdir = \
|
|
$(top_srcdir)/ext/codecparsers/gst/videoparsers
|
|
|
|
videoparsers_source_c = \
|
|
gsth264parse.c \
|
|
gsth265parse.c \
|
|
$(NULL)
|
|
|
|
EXTRA_DIST += $(videoparsers_source_c:%.c=$(videoparsers_srcdir)/%.c)
|
|
|
|
videoparsers_source_h = \
|
|
gsth264parse.h \
|
|
gsth265parse.h \
|
|
$(NULL)
|
|
|
|
EXTRA_DIST += $(videoparsers_source_h:%.h=$(videoparsers_srcdir)/%.h)
|
|
|
|
# Extra clean files so that maintainer-clean removes *everything*
|
|
MAINTAINERCLEANFILES = Makefile.in
|