Codebase list faad2 / c01df4f
Remove debian/patches/faad2_version.patch, upstream has changed the FAAD2_VERSION macro to read 'unknown'; refresh debian/patches/reproducible-build.patch Fabian Greffrath 6 years ago
3 changed file(s) with 6 addition(s) and 23 deletion(s). Raw diff Collapse all Expand all
+0
-16
debian/patches/faad2_version.patch less more
0 Description: Set the FAAD2_VERSION macro back to the version string.
1 In the next upstream release this macro will read "unknown version" and an API
2 will be provided to retrieve the actual library version at run-time.
3 Author: Fabian Greffrath <fabian@debian.org>
4
5 --- a/include/neaacdec.h
6 +++ b/include/neaacdec.h
7 @@ -73,7 +73,7 @@ extern "C" {
8 #endif
9 #endif
10
11 -#define FAAD2_VERSION PACKAGE_VERSION
12 +#define FAAD2_VERSION "2.8.1"
13
14 /* object types for AAC */
15 #define MAIN 1
55
66 --- a/frontend/main.c
77 +++ b/frontend/main.c
8 @@ -1301,7 +1301,6 @@ int main(int argc, char *argv[])
8 @@ -1194,7 +1194,6 @@ int main(int argc, char *argv[])
9 NeAACDecGetVersion(&faad_id_string, &faad_copyright_string);
910
10
11 faad_fprintf(stderr, " *********** Ahead Software MPEG-4 AAC Decoder V%s ******************\n\n", FAAD2_VERSION);
11 faad_fprintf(stderr, " *********** Ahead Software MPEG-4 AAC Decoder V%s ******************\n\n", faad_id_string);
1212 - faad_fprintf(stderr, " Build: %s\n", __DATE__);
13 faad_fprintf(stderr, " Copyright 2002-2004: Ahead Software AG\n");
14 faad_fprintf(stderr, " http://www.audiocoding.com\n");
15 faad_fprintf(stderr, "\n Latest version and bug tracking available here:\n");
13 faad_fprintf(stderr, "%s", faad_copyright_string);
14 if (cap & FIXED_POINT_CAP)
15 faad_fprintf(stderr, " Fixed point version\n");
0 faad2_version.patch
10 reproducible-build.patch