package/mp4v2: bump to version 2.1.1
- Switch to new active fork: https://github.com/enzo1982/mp4v2/discussions/1461abd2b13
- C++11 is not needed anymore thanks to5a57bc2ce8
- Drop patch (not needed since23f8b907d4
) - Update license (minor fix:0c37402d9d
) - Version 2.1.1 was never released before so no issue is expected (except a misunderstanding of users but new upstream is aware of this: https://github.com/enzo1982/mp4v2/discussions/1#discussioncomment-2399344) https://github.com/enzo1982/mp4v2/releases/tag/v2.1.1 https://github.com/enzo1982/mp4v2/releases/tag/v2.1.0 Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com> Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
This commit is contained in:
parent
618a23100f
commit
a324bbcf7e
@ -1,99 +0,0 @@
|
||||
From a5ca35b044bbf13c0b16f0066bf24646604bb218 Mon Sep 17 00:00:00 2001
|
||||
From: "Jason A. Donenfeld" <Jason@zx2c4.com>
|
||||
Date: Thu, 6 Aug 2020 15:22:04 +0200
|
||||
Subject: [PATCH] Static cast to unsigned int for cases
|
||||
|
||||
Signed-off-by: Jason A. Donenfeld <Jason@zx2c4.com>
|
||||
[Retrieved from:
|
||||
https://gitweb.gentoo.org/repo/gentoo.git/tree/media-libs/libmp4v2/files/libmp4v2-2.0.0-unsigned-int-cast.patch]
|
||||
Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
|
||||
---
|
||||
libutil/Utility.cpp | 2 +-
|
||||
util/mp4art.cpp | 2 +-
|
||||
util/mp4chaps.cpp | 2 +-
|
||||
util/mp4file.cpp | 2 +-
|
||||
util/mp4subtitle.cpp | 2 +-
|
||||
util/mp4track.cpp | 2 +-
|
||||
6 files changed, 6 insertions(+), 6 deletions(-)
|
||||
|
||||
diff --git a/libutil/Utility.cpp b/libutil/Utility.cpp
|
||||
index 76cdd12..d6739d4 100644
|
||||
--- a/libutil/Utility.cpp
|
||||
+++ b/libutil/Utility.cpp
|
||||
@@ -493,7 +493,7 @@ Utility::process_impl()
|
||||
if( codes.find( code ) == codes.end() )
|
||||
continue;
|
||||
|
||||
- switch( code ) {
|
||||
+ switch( static_cast<unsigned int>( code ) ) {
|
||||
case 'z':
|
||||
_optimize = true;
|
||||
break;
|
||||
diff --git a/util/mp4art.cpp b/util/mp4art.cpp
|
||||
index add935e..6e7f531 100644
|
||||
--- a/util/mp4art.cpp
|
||||
+++ b/util/mp4art.cpp
|
||||
@@ -376,7 +376,7 @@ ArtUtility::utility_option( int code, bool& handled )
|
||||
{
|
||||
handled = true;
|
||||
|
||||
- switch( code ) {
|
||||
+ switch( static_cast<unsigned int> ( code ) ) {
|
||||
case LC_ART_ANY:
|
||||
_artFilter = numeric_limits<uint32_t>::max();
|
||||
break;
|
||||
diff --git a/util/mp4chaps.cpp b/util/mp4chaps.cpp
|
||||
index 98400f8..ccc8b70 100644
|
||||
--- a/util/mp4chaps.cpp
|
||||
+++ b/util/mp4chaps.cpp
|
||||
@@ -632,7 +632,7 @@ ChapterUtility::utility_option( int code, bool& handled )
|
||||
{
|
||||
handled = true;
|
||||
|
||||
- switch( code ) {
|
||||
+ switch( static_cast<unsigned int> ( code ) ) {
|
||||
case 'A':
|
||||
case LC_CHPT_ANY:
|
||||
_ChapterType = MP4ChapterTypeAny;
|
||||
diff --git a/util/mp4file.cpp b/util/mp4file.cpp
|
||||
index c27844b..b127cd1 100644
|
||||
--- a/util/mp4file.cpp
|
||||
+++ b/util/mp4file.cpp
|
||||
@@ -189,7 +189,7 @@ FileUtility::utility_option( int code, bool& handled )
|
||||
{
|
||||
handled = true;
|
||||
|
||||
- switch( code ) {
|
||||
+ switch( static_cast<unsigned int>( code ) ) {
|
||||
case LC_LIST:
|
||||
_action = &FileUtility::actionList;
|
||||
break;
|
||||
diff --git a/util/mp4subtitle.cpp b/util/mp4subtitle.cpp
|
||||
index 7462153..19d977d 100644
|
||||
--- a/util/mp4subtitle.cpp
|
||||
+++ b/util/mp4subtitle.cpp
|
||||
@@ -164,7 +164,7 @@ SubtitleUtility::utility_option( int code, bool& handled )
|
||||
{
|
||||
handled = true;
|
||||
|
||||
- switch( code ) {
|
||||
+ switch( static_cast<unsigned int>( code ) ) {
|
||||
case LC_LIST:
|
||||
_action = &SubtitleUtility::actionList;
|
||||
break;
|
||||
diff --git a/util/mp4track.cpp b/util/mp4track.cpp
|
||||
index d550506..cd63d7e 100644
|
||||
--- a/util/mp4track.cpp
|
||||
+++ b/util/mp4track.cpp
|
||||
@@ -788,7 +788,7 @@ TrackUtility::utility_option( int code, bool& handled )
|
||||
{
|
||||
handled = true;
|
||||
|
||||
- switch( code ) {
|
||||
+ switch( static_cast<unsigned int>( code ) ) {
|
||||
case LC_TRACK_WILDCARD:
|
||||
_trackMode = TM_WILDCARD;
|
||||
break;
|
||||
--
|
||||
2.28.0
|
||||
|
@ -1,12 +1,11 @@
|
||||
config BR2_PACKAGE_MP4V2
|
||||
bool "mp4v2"
|
||||
depends on BR2_INSTALL_LIBSTDCPP
|
||||
depends on BR2_TOOLCHAIN_GCC_AT_LEAST_5 # C++11
|
||||
help
|
||||
The MP4v2 library provides functions to read, create, and
|
||||
modify mp4 files.
|
||||
|
||||
https://github.com/TechSmith/mp4v2/
|
||||
https://mp4v2.org/
|
||||
|
||||
if BR2_PACKAGE_MP4V2
|
||||
|
||||
@ -19,6 +18,5 @@ config BR2_PACKAGE_MP4V2_UTIL
|
||||
|
||||
endif
|
||||
|
||||
comment "mp4v2 needs a toolchain w/ C++, gcc >= 5"
|
||||
depends on !BR2_INSTALL_LIBSTDCPP || \
|
||||
!BR2_TOOLCHAIN_GCC_AT_LEAST_5
|
||||
comment "mp4v2 needs a toolchain w/ C++"
|
||||
depends on !BR2_INSTALL_LIBSTDCPP
|
||||
|
@ -1,3 +1,3 @@
|
||||
# Locally computed
|
||||
sha256 de31e430e2641f25b67d10c47b0cda35279881b0196120e33bcd71b9cef1bd58 mp4v2-5.0.1.tar.gz
|
||||
sha256 15e38684c940176e2fc76331a2299d2ab5115ac997078f768ef31b896af69fc5 COPYING
|
||||
sha256 29420c62e56a2e527fd8979d59d05ed6d83ebe27e0e2c782c1ec19a3a402eaee mp4v2-2.1.1.tar.bz2
|
||||
sha256 7187891a4c39ee9e7ec70c71fc7dc8b8ed02c6f56ae1ffc017a34ac66dca5390 COPYING
|
||||
|
@ -4,9 +4,10 @@
|
||||
#
|
||||
################################################################################
|
||||
|
||||
MP4V2_VERSION = 5.0.1
|
||||
MP4V2_VERSION = 2.1.1
|
||||
MP4V2_SITE = \
|
||||
$(call github,TechSmith,mp4v2,Release-ThirdParty-MP4v2-$(MP4V2_VERSION))
|
||||
https://github.com/enzo1982/mp4v2/releases/download/v$(MP4V2_VERSION)
|
||||
MP4V2_SOURCE = mp4v2-$(MP4V2_VERSION).tar.bz2
|
||||
MP4V2_INSTALL_STAGING = YES
|
||||
MP4V2_LICENSE = MPL-1.1
|
||||
MP4V2_LICENSE_FILES = COPYING
|
||||
|
Loading…
Reference in New Issue
Block a user