shithub: aacenc

Download patch

ref: 972a5284df9d375bafdde74f33b3aac75df06d18
parent: 80d6cebd29a5724da867ddfef975f69132aee232
author: Krzysztof Nikiel <knik@users.sourceforge.net>
date: Thu Aug 10 16:57:28 EDT 2017

made mp4 brands more apple compatible

--- a/frontend/mp4write.c
+++ b/frontend/mp4write.c
@@ -103,11 +103,12 @@
 {
     int size = 0;
 
-    size += stringout("isom");
+    size += stringout("M4A ");
     size += u32out(0);
     size += stringout("M4A ");
     size += stringout("mp42");
-    size += stringout("mp41");
+    size += stringout("isom");
+    size += u32out(0);
 
     return size;
 }