diff mbox series

[1/1] package/mp4v2: fix build with gcc <= 5

Message ID 20200530095115.3213648-1-fontaine.fabrice@gmail.com
State Accepted
Headers show
Series [1/1] package/mp4v2: fix build with gcc <= 5 | expand

Commit Message

Fabrice Fontaine May 30, 2020, 9:51 a.m. UTC
Fixes:
 - http://autobuild.buildroot.org/results/14937c96a82fb3d10e5d83bd7b2905b846fb09f9

Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
---
 ...mp4track.cpp-replace-nullptr-by-NULL.patch | 45 +++++++++++++++++++
 1 file changed, 45 insertions(+)
 create mode 100644 package/mp4v2/0002-src-mp4track.cpp-replace-nullptr-by-NULL.patch

Comments

Yann E. MORIN May 31, 2020, 7:52 a.m. UTC | #1
Fabrice, All,

On 2020-05-30 11:51 +0200, Fabrice Fontaine spake thusly:
> Fixes:
>  - http://autobuild.buildroot.org/results/14937c96a82fb3d10e5d83bd7b2905b846fb09f9
> 
> Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>

Applied to master, after expanding the commit log slightly to add a
blurb that nullptr and NULL are usualy not interchangeable.

Please do not forget to send upstream. ;-)

Regards,
Yann E. MORIN.

> ---
>  ...mp4track.cpp-replace-nullptr-by-NULL.patch | 45 +++++++++++++++++++
>  1 file changed, 45 insertions(+)
>  create mode 100644 package/mp4v2/0002-src-mp4track.cpp-replace-nullptr-by-NULL.patch
> 
> diff --git a/package/mp4v2/0002-src-mp4track.cpp-replace-nullptr-by-NULL.patch b/package/mp4v2/0002-src-mp4track.cpp-replace-nullptr-by-NULL.patch
> new file mode 100644
> index 0000000000..91074c8b74
> --- /dev/null
> +++ b/package/mp4v2/0002-src-mp4track.cpp-replace-nullptr-by-NULL.patch
> @@ -0,0 +1,45 @@
> +From 78cf76b5d661e37e958163c37c0ad95940c09591 Mon Sep 17 00:00:00 2001
> +From: Fabrice Fontaine <fontaine.fabrice@gmail.com>
> +Date: Sat, 30 May 2020 11:42:19 +0200
> +Subject: [PATCH] src/mp4track.cpp: replace nullptr by NULL
> +
> +Commit 15ec11166ba9ee7b77631d0d9234522f656cfd66 added code that uses
> +nullptr. nullptr is C++11, it will break the build with older gcc so
> +switch back to NULL
> +
> +Fixes:
> + - http://autobuild.buildroot.org/results/14937c96a82fb3d10e5d83bd7b2905b846fb09f9
> +
> +Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
> +[Upstream status: not sent yet]
> +---
> + src/mp4track.cpp | 6 +++---
> + 1 file changed, 3 insertions(+), 3 deletions(-)
> +
> +diff --git a/src/mp4track.cpp b/src/mp4track.cpp
> +index 4b8fc9d..42489eb 100644
> +--- a/src/mp4track.cpp
> ++++ b/src/mp4track.cpp
> +@@ -908,16 +908,16 @@ File* MP4Track::GetSampleFile( MP4SampleId sampleId )
> +        MP4FtypAtom *pFtypAtom = reinterpret_cast<MP4FtypAtom *>( m_File.FindAtom( "ftyp" ) );
> + 
> +        // MOV spec does not require "ftyp" atom...
> +-       if ( pFtypAtom == nullptr )
> ++       if ( pFtypAtom == NULL )
> +        {
> +-          return nullptr;
> ++          return NULL;
> +        }
> +        else
> +        {
> +           // ... but most often it is present with a "qt  " value
> +           const char *majorBrand = pFtypAtom->majorBrand.GetValue();
> +           if ( ::strcmp( pFtypAtom->majorBrand.GetValue(), "qt  " ) == 0 )
> +-             return nullptr;
> ++             return NULL;
> +        }
> +        throw new Exception( "invalid stsd entry", __FILE__, __LINE__, __FUNCTION__ );
> +     }
> +-- 
> +2.26.2
> +
> -- 
> 2.26.2
> 
> _______________________________________________
> buildroot mailing list
> buildroot@busybox.net
> http://lists.busybox.net/mailman/listinfo/buildroot
Peter Korsgaard June 2, 2020, 6:11 a.m. UTC | #2
>>>>> "Fabrice" == Fabrice Fontaine <fontaine.fabrice@gmail.com> writes:

 > Fixes:
 >  - http://autobuild.buildroot.org/results/14937c96a82fb3d10e5d83bd7b2905b846fb09f9

 > Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>

Committed to 2020.02.x, thanks.
diff mbox series

Patch

diff --git a/package/mp4v2/0002-src-mp4track.cpp-replace-nullptr-by-NULL.patch b/package/mp4v2/0002-src-mp4track.cpp-replace-nullptr-by-NULL.patch
new file mode 100644
index 0000000000..91074c8b74
--- /dev/null
+++ b/package/mp4v2/0002-src-mp4track.cpp-replace-nullptr-by-NULL.patch
@@ -0,0 +1,45 @@ 
+From 78cf76b5d661e37e958163c37c0ad95940c09591 Mon Sep 17 00:00:00 2001
+From: Fabrice Fontaine <fontaine.fabrice@gmail.com>
+Date: Sat, 30 May 2020 11:42:19 +0200
+Subject: [PATCH] src/mp4track.cpp: replace nullptr by NULL
+
+Commit 15ec11166ba9ee7b77631d0d9234522f656cfd66 added code that uses
+nullptr. nullptr is C++11, it will break the build with older gcc so
+switch back to NULL
+
+Fixes:
+ - http://autobuild.buildroot.org/results/14937c96a82fb3d10e5d83bd7b2905b846fb09f9
+
+Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
+[Upstream status: not sent yet]
+---
+ src/mp4track.cpp | 6 +++---
+ 1 file changed, 3 insertions(+), 3 deletions(-)
+
+diff --git a/src/mp4track.cpp b/src/mp4track.cpp
+index 4b8fc9d..42489eb 100644
+--- a/src/mp4track.cpp
++++ b/src/mp4track.cpp
+@@ -908,16 +908,16 @@ File* MP4Track::GetSampleFile( MP4SampleId sampleId )
+        MP4FtypAtom *pFtypAtom = reinterpret_cast<MP4FtypAtom *>( m_File.FindAtom( "ftyp" ) );
+ 
+        // MOV spec does not require "ftyp" atom...
+-       if ( pFtypAtom == nullptr )
++       if ( pFtypAtom == NULL )
+        {
+-          return nullptr;
++          return NULL;
+        }
+        else
+        {
+           // ... but most often it is present with a "qt  " value
+           const char *majorBrand = pFtypAtom->majorBrand.GetValue();
+           if ( ::strcmp( pFtypAtom->majorBrand.GetValue(), "qt  " ) == 0 )
+-             return nullptr;
++             return NULL;
+        }
+        throw new Exception( "invalid stsd entry", __FILE__, __LINE__, __FUNCTION__ );
+     }
+-- 
+2.26.2
+