Commit 29e87531 authored by Julian Scheel's avatar Julian Scheel Committed by Thomas Petazzoni
Browse files

bitstream: new package



BiTStream is a set of headers to ease processing of mpeg ts
streams. It is used by dvblast.

[Thomas:
 - add missing hash file.
 - add missing BITSTREAM_LICENSE_FILES information.
 - rewrap Config.in help text.
 - use lowercase name for the package in the comment header in
   bitstream.mk.]

Signed-off-by: default avatarJulian Scheel <julian@jusst.de>
Signed-off-by: default avatarThomas Petazzoni <thomas.petazzoni@free-electrons.com>
parent 60be5da7
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -953,6 +953,7 @@ menu "Logging"
endmenu

menu "Multimedia"
	source "package/bitstream/Config.in"
	source "package/libass/Config.in"
	source "package/libbluray/Config.in"
	source "package/libdcadec/Config.in"
+8 −0
Original line number Diff line number Diff line
config BR2_PACKAGE_BITSTREAM
	bool "bitstream"
	help
	  biTStream is a set of C headers allowing a simpler access to
	  binary structures such as specified by MPEG, DVB, IETF,
	  SMPTE, IEEE, SCTE, etc.

	  http://www.videolan.org/developers/bitstream.html
+4 −0
Original line number Diff line number Diff line
# from https://get.videolan.org/bitstream/1.1/bitstream-1.1.tar.bz2.md5
md5 88e6e786242196b4d73a5b6075aeb1a2 bitstream-1.1.tar.bz2
# locally calculated
sha256 90b65f619895d31e652386d5d7d2d2d62cccd44383c1fac9145d659013a2de9e bitstream-1.1.tar.bz2
+21 −0
Original line number Diff line number Diff line
################################################################################
#
# bitstream
#
################################################################################

BITSTREAM_VERSION = 1.1
BITSTREAM_SOURCE = bitstream-$(BITSTREAM_VERSION).tar.bz2
BITSTREAM_SITE = https://get.videolan.org/bitstream/$(BITSTREAM_VERSION)
BITSTREAM_LICENSE = MIT
BITSTREAM_LICENSE_FILES = COPYING

# package consists of header files only
BITSTREAM_INSTALL_STAGING = YES
BITSTREAM_INSTALL_TARGET = NO

define BITSTREAM_INSTALL_STAGING_CMDS
	$(MAKE) -C $(@D) DESTDIR=$(STAGING_DIR) PREFIX=/usr install
endef

$(eval $(generic-package))