debian/0000755000000000000000000000000011731357250007172 5ustar debian/watch0000644000000000000000000000006011472602435010217 0ustar version=3 http://sf.net/faac/faad2-(.*)\.tar.gz debian/source/0000755000000000000000000000000011730725701010471 5ustar debian/source/format0000644000000000000000000000001411730725701011677 0ustar 3.0 (quilt) debian/compat0000644000000000000000000000000211730725701010367 0ustar 9 debian/libfaad-dev.install0000644000000000000000000000005111730725701012713 0ustar usr/include usr/lib/*/*.a usr/lib/*/*.so debian/patches/0000755000000000000000000000000011730725701010620 5ustar debian/patches/series0000644000000000000000000000022111730725701012030 0ustar noinst-mp4ff.patch manpage.patch incorrect_pointer_size.patch bpa-stdin.patch path_max.patch fix_ftbfs_with_gcc4.5.patch symbol-visibility.patch debian/patches/incorrect_pointer_size.patch0000644000000000000000000000226611730725701016431 0ustar Description: faad segfaults on amd64 due to incorrect pointer size When running faad with a command line similar to: alessio@alessio-laptop:~$ faad -b 2 -f 2 -w sample.aac a SIGSEGV gets raised. This issue is due to an incorrect pointer size used in the write_audio{32,64}bit functions. Origin: Ubuntu Bug: https://sourceforge.net/support/tracker.php?aid=3110758 Bug-Debian: http://bugs.debian.org/603807 Bug-Ubuntu: https://launchpad.net/bugs/665802 Reviewed-by: Alessio Treglia Last-Update: 2010-11-17 --- frontend/audio.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) --- a/frontend/audio.c +++ b/frontend/audio.c @@ -347,7 +347,7 @@ { int ret; unsigned int i; - long *sample_buffer24 = (long*)sample_buffer; + int *sample_buffer24 = (int*)sample_buffer; char *data = malloc(samples*aufile->bits_per_sample*sizeof(char)/8); aufile->total_samples += samples; @@ -391,7 +391,7 @@ { int ret; unsigned int i; - long *sample_buffer32 = (long*)sample_buffer; + int *sample_buffer32 = (int*)sample_buffer; char *data = malloc(samples*aufile->bits_per_sample*sizeof(char)/8); aufile->total_samples += samples; debian/patches/symbol-visibility.patch0000644000000000000000000000370011730725701015333 0ustar Description: Set appropriate symbol visibility attributes. Author: Fabian Greffrath --- faad2.orig/include/neaacdec.h +++ faad2/include/neaacdec.h @@ -63,6 +63,10 @@ extern "C" { #ifndef NEAACDECAPI #define NEAACDECAPI __cdecl #endif +#elif defined(__GNUC__) && __GNUC__ >= 4 + #ifndef NEAACDECAPI + #define NEAACDECAPI __attribute__((visibility("default"))) + #endif #else #ifndef NEAACDECAPI #define NEAACDECAPI @@ -198,7 +202,7 @@ typedef struct NeAACDecFrameInfo unsigned char ps; } NeAACDecFrameInfo; -char* NEAACDECAPI NeAACDecGetErrorMessage(unsigned char errcode); +char NEAACDECAPI *NeAACDecGetErrorMessage(unsigned char errcode); unsigned long NEAACDECAPI NeAACDecGetCapabilities(void); @@ -231,12 +235,12 @@ void NEAACDECAPI NeAACDecPostSeekReset(N void NEAACDECAPI NeAACDecClose(NeAACDecHandle hDecoder); -void* NEAACDECAPI NeAACDecDecode(NeAACDecHandle hDecoder, +void NEAACDECAPI *NeAACDecDecode(NeAACDecHandle hDecoder, NeAACDecFrameInfo *hInfo, unsigned char *buffer, unsigned long buffer_size); -void* NEAACDECAPI NeAACDecDecode2(NeAACDecHandle hDecoder, +void NEAACDECAPI *NeAACDecDecode2(NeAACDecHandle hDecoder, NeAACDecFrameInfo *hInfo, unsigned char *buffer, unsigned long buffer_size, --- faad2.orig/libfaad/Makefile.am +++ faad2/libfaad/Makefile.am @@ -1,11 +1,12 @@ lib_LTLIBRARIES = libfaad.la -AM_CFLAGS = -iquote $(top_srcdir)/include +INCLUDES = -iquote $(top_srcdir)/include include_HEADERS = $(top_srcdir)/include/faad.h \ $(top_srcdir)/include/neaacdec.h libfaad_la_LDFLAGS = -version-info 2:0:0 libfaad_la_LIBADD = -lm +libfaad_la_CFLAGS = -fvisibility=hidden libfaad_la_SOURCES = bits.c cfft.c decoder.c drc.c \ drm_dec.c error.c filtbank.c \ debian/patches/fix_ftbfs_with_gcc4.5.patch0000644000000000000000000000136011730725701015711 0ustar Description: Correctly declare lrintf in libfaad/common.h to avoid a conflict of declaration in mathcalls.h to fix FTBFS on i386. Origin: Ubuntu Author: Bhavani Shankar Index: faad2-2.7/libfaad/common.h ===================================== --- faad2-2.7.orig/libfaad/common.h +++ faad2-2.7/libfaad/common.h @@ -330,7 +330,7 @@ #ifndef HAVE_LRINTF #define HAS_LRINTF // from http://www.stereopsis.com/FPU.html - static INLINE int lrintf(float f) + static INLINE int _lrintf(float f) { int i; __asm__ __volatile__ ( @@ -396,7 +396,7 @@ #ifndef HAS_LRINTF /* standard cast */ -#define lrintf(f) ((int32_t)(f)) +#define _lrintf(f) ((int32_t)(f)) #endif typedef real_t complex_t[2]; debian/patches/path_max.patch0000644000000000000000000000557411730725701013455 0ustar Description: Dynamically allocate file name buffers. Author: Fabian Greffrath Bug-Ubuntu: https://launchpad.net/bugs/475050 Last-Update: 2011-11-11 --- faad.orig/frontend/main.c +++ faad/frontend/main.c @@ -1107,9 +1107,9 @@ int main(int argc, char *argv[]) int mp4file = 0; int noGapless = 0; char *fnp; - char aacFileName[255]; - char audioFileName[255]; - char adtsFileName[255]; + char *aacFileName = NULL; + char *audioFileName = NULL; + char *adtsFileName = NULL; unsigned char header[8]; float length = 0; FILE *hMP4File; @@ -1157,6 +1157,12 @@ int main(int argc, char *argv[]) if (optarg) { outfile_set = 1; + audioFileName = (char *) malloc(sizeof(char) * (strlen(optarg) + 1)); + if (audioFileName == NULL) + { + faad_fprintf(stderr, "Error allocating memory for audioFileName.\n"); + return 1; + } strcpy(audioFileName, optarg); } break; @@ -1164,6 +1170,12 @@ int main(int argc, char *argv[]) if (optarg) { adts_out = 1; + adtsFileName = (char *) malloc(sizeof(char) * (strlen(optarg) + 1)); + if (adtsFileName == NULL) + { + faad_fprintf(stderr, "Error allocating memory for adtsFileName.\n"); + return 1; + } strcpy(adtsFileName, optarg); } break; @@ -1284,6 +1296,12 @@ int main(int argc, char *argv[]) #endif /* point to the specified file name */ + aacFileName = (char *) malloc(sizeof(char) * (strlen(argv[optind]) + 1)); + if (aacFileName == NULL) + { + faad_fprintf(stderr, "Error allocating memory for aacFileName.\n"); + return 1; + } strcpy(aacFileName, argv[optind]); #ifdef _WIN32 @@ -1297,6 +1315,12 @@ int main(int argc, char *argv[]) */ if(!writeToStdio && !outfile_set) { + audioFileName = (char *) malloc(sizeof(char) * (strlen(aacFileName) + strlen(file_ext[format]) + 1)); + if (audioFileName == NULL) + { + faad_fprintf(stderr, "Error allocating memory for audioFileName.\n"); + return 1; + } strcpy(audioFileName, aacFileName); fnp = (char *)strrchr(audioFileName,'.'); @@ -1357,6 +1381,11 @@ int main(int argc, char *argv[]) old_format, &length); } + if (audioFileName != NULL) + free (audioFileName); + if (adtsFileName != NULL) + free (adtsFileName); + if (!result && !infoOnly) { #ifdef _WIN32 @@ -1372,5 +1401,8 @@ int main(int argc, char *argv[]) dec_length, length/dec_length); } + if (aacFileName != NULL) + free (aacFileName); + return 0; } debian/patches/manpage.patch0000644000000000000000000000056211472602435013255 0ustar Fix hyphen in manpage. ========================================================================== --- a/frontend/faad.man +++ b/frontend/faad.man @@ -24,9 +24,9 @@ .br 3: 32\(hybit PCM data. .br -4: 32\(hybit floating\hy(point data. +4: 32\(hybit floating\(hypoint data. .br -5: 64\(hybit floating\hy(point data. +5: 64\(hybit floating\(hypoint data. .RE .RE .TP debian/patches/bpa-stdin.patch0000644000000000000000000001754511730725701013536 0ustar Description: The patch enables input on stdin for AAC/AAC+ streams. Origin: http://www.freebsd.org/cgi/cvsweb.cgi/ports/audio/faad/files/patch-frontend_main.c Bug: http://bugs.slimdevices.com/show_bug.cgi?id=10602 Forwarded: menno@audiocoding.com Author: Bryan Alton Reviewed-By: Mark Knight Bug-Ubuntu: https://launchpad.net/bugs/470562 $FreeBSD: ports/audio/faad/files/patch-frontend_main.c,v 1.3 2010/02/25 17:12:54 brooks Exp $ --- faad2.orig/frontend/main.c +++ faad2/frontend/main.c @@ -137,6 +137,31 @@ static void advance_buffer(aac_buffer *b b->bytes_into_buffer = 0; } +static void lookforheader(aac_buffer *b) +{ + int i = 0; + while (!b->at_eof ) + { + if (b->bytes_into_buffer > 4) + { + if( ((b->buffer[0+i] == 0xff) && ((b->buffer[1+i] & 0xf6) == 0xf0)) || + (b->buffer[0+i] == 'A' && b->buffer[1+i] == 'D' && b->buffer[2+i] == 'I' && b->buffer[3+i] == 'F')) + { + fill_buffer(b); + break; + } else { + i++; + b->file_offset += 1; + b->bytes_consumed += 1; + b->bytes_into_buffer -= 1; + } + } else { + fill_buffer(b); + i = 0; + } + } +} + static int adts_sample_rates[] = {96000,88200,64000,48000,44100,32000,24000,22050,16000,12000,11025,8000,7350,0,0,0}; static int adts_parse(aac_buffer *b, int *bitrate, float *length) @@ -424,6 +449,8 @@ static int decodeAACfile(char *aacfile, float length = 0; int first_time = 1; + int retval; + int streaminput = 0; aac_buffer b; @@ -439,17 +466,39 @@ static int decodeAACfile(char *aacfile, } } - b.infile = fopen(aacfile, "rb"); - if (b.infile == NULL) + if (0 == strcmp(aacfile, "-")) { - /* unable to open file */ - faad_fprintf(stderr, "Error opening file: %s\n", aacfile); - return 1; + b.infile = stdin; +#ifdef _WIN32 + setmode(fileno(stdin), O_BINARY); +#endif + + } else + { + b.infile = fopen(aacfile, "rb"); + if (b.infile == NULL) + { + /* unable to open file */ + faad_fprintf(stderr, "Error opening file: %s\n", aacfile); + return 1; + } } - fseek(b.infile, 0, SEEK_END); - fileread = ftell(b.infile); - fseek(b.infile, 0, SEEK_SET); + retval = fseek(b.infile, 0, SEEK_END); +#ifdef _WIN32 + if (0 == strcmp(aacfile, "-")) { + retval = -1; + } +#endif + if (retval ) + { + faad_fprintf(stderr, "Input not seekable %s\n", aacfile); + fileread = -1; + streaminput = 1; + } else { + fileread = ftell(b.infile); + fseek(b.infile, 0, SEEK_SET); + }; if (!(b.buffer = (unsigned char*)malloc(FAAD_MIN_STREAMSIZE*MAX_CHANNELS))) { @@ -494,19 +543,39 @@ static int decodeAACfile(char *aacfile, /* get AAC infos for printing */ header_type = 0; + if (streaminput == 1 ) + lookforheader(&b); + if ((b.buffer[0] == 0xFF) && ((b.buffer[1] & 0xF6) == 0xF0)) { - adts_parse(&b, &bitrate, &length); - fseek(b.infile, tagsize, SEEK_SET); - - bread = fread(b.buffer, 1, FAAD_MIN_STREAMSIZE*MAX_CHANNELS, b.infile); - if (bread != FAAD_MIN_STREAMSIZE*MAX_CHANNELS) - b.at_eof = 1; - else - b.at_eof = 0; - b.bytes_into_buffer = bread; - b.bytes_consumed = 0; - b.file_offset = tagsize; + if (streaminput ==1) + { + int frames, frame_length; + int samplerate; + float frames_per_sec, bytes_per_frame; + samplerate = adts_sample_rates[(b.buffer[2]&0x3c)>>2]; + frame_length = ((((unsigned int)b.buffer[3] & 0x3)) << 11) + | (((unsigned int)b.buffer[4]) << 3) | (b.buffer[5] >> 5); + + frames_per_sec = (float)samplerate/1024.0f; + bytes_per_frame = (float)frame_length/(float)(1000); + bitrate = (int)(8. * bytes_per_frame * frames_per_sec + 0.5); + length = 1; + faad_fprintf(stderr, "Streamed input format samplerate %d channels %d.\n",samplerate,channels); + + } else { + adts_parse(&b, &bitrate, &length); + fseek(b.infile, tagsize, SEEK_SET); + + bread = fread(b.buffer, 1, FAAD_MIN_STREAMSIZE*MAX_CHANNELS, b.infile); + if (bread != FAAD_MIN_STREAMSIZE*MAX_CHANNELS) + b.at_eof = 1; + else + b.at_eof = 0; + b.bytes_into_buffer = bread; + b.bytes_consumed = 0; + b.file_offset = tagsize; + } header_type = 1; } else if (memcmp(b.buffer, "ADIF", 4) == 0) { @@ -538,7 +607,8 @@ static int decodeAACfile(char *aacfile, if (b.buffer) free(b.buffer); NeAACDecClose(hDecoder); - fclose(b.infile); + if (b.infile != stdin) + fclose(b.infile); return 1; } advance_buffer(&b, bread); @@ -564,7 +634,8 @@ static int decodeAACfile(char *aacfile, if (infoOnly) { NeAACDecClose(hDecoder); - fclose(b.infile); + if (b.infile != stdin) + fclose(b.infile); if (b.buffer) free(b.buffer); return 0; @@ -621,7 +692,8 @@ static int decodeAACfile(char *aacfile, if (b.buffer) free(b.buffer); NeAACDecClose(hDecoder); - fclose(b.infile); + if (b.infile != stdin) + fclose(b.infile); return 0; } } else { @@ -662,7 +734,8 @@ static int decodeAACfile(char *aacfile, fclose(adtsFile); } - fclose(b.infile); + if (b.infile != stdin) + fclose(b.infile); if (!first_time && !adts_out) close_audio_file(aufile); @@ -750,6 +823,11 @@ static int decodeMP4file(char *mp4file, /* initialise the callback structure */ mp4ff_callback_t *mp4cb = malloc(sizeof(mp4ff_callback_t)); + if (strcmp(mp4file, "-") == 0 ) { + faad_fprintf(stderr, "Cannot open stdin for MP4 input \n"); + return 1; + } + mp4File = fopen(mp4file, "rb"); mp4cb->read = read_callback; mp4cb->seek = seek_callback; @@ -1016,6 +1094,7 @@ int main(int argc, char *argv[]) int result; int infoOnly = 0; int writeToStdio = 0; + int readFromStdin = 0; int object_type = LC; int def_srate = 0; int downMatrix = 0; @@ -1229,15 +1308,30 @@ int main(int argc, char *argv[]) } /* check for mp4 file */ - mp4file = 0; - hMP4File = fopen(aacFileName, "rb"); - if (!hMP4File) - { - faad_fprintf(stderr, "Error opening file: %s\n", aacFileName); - return 1; + if (0 == strcmp(aacFileName, "-")) { + faad_fprintf(stderr, "Reading from stdin: %s\n", aacFileName); + readFromStdin = 1; + hMP4File = stdin; +#ifdef _WIN32 + setmode(fileno(stdin), O_BINARY); +#endif + + } else { + + mp4file = 0; + hMP4File = fopen(aacFileName, "rb"); + if (!hMP4File) + { + faad_fprintf(stderr, "Error opening file: %s\n", aacFileName); + return 1; + } } + fread(header, 1, 8, hMP4File); - fclose(hMP4File); + + if (! readFromStdin ) + fclose(hMP4File); + if (header[4] == 'f' && header[5] == 't' && header[6] == 'y' && header[7] == 'p') mp4file = 1; @@ -1246,6 +1340,18 @@ int main(int argc, char *argv[]) result = decodeMP4file(aacFileName, audioFileName, adtsFileName, writeToStdio, outputFormat, format, downMatrix, noGapless, infoOnly, adts_out, &length); } else { + + if (readFromStdin == 1) { + ungetc(header[7],hMP4File); + ungetc(header[6],hMP4File); + ungetc(header[5],hMP4File); + ungetc(header[4],hMP4File); + ungetc(header[3],hMP4File); + ungetc(header[2],hMP4File); + ungetc(header[1],hMP4File); + ungetc(header[0],hMP4File); + } + result = decodeAACfile(aacFileName, audioFileName, adtsFileName, writeToStdio, def_srate, object_type, outputFormat, format, downMatrix, infoOnly, adts_out, old_format, &length); debian/patches/noinst-mp4ff.patch0000644000000000000000000000060711730725701014170 0ustar Description: libmp4ff ist not packaged, so do not install it either. Author: Fabian Greffrath --- faad2.orig/common/mp4ff/Makefile.am +++ faad2/common/mp4ff/Makefile.am @@ -1,5 +1,5 @@ -lib_LIBRARIES = libmp4ff.a -include_HEADERS = mp4ff.h mp4ffint.h +noinst_LIBRARIES = libmp4ff.a +noinst_HEADERS = mp4ff.h mp4ffint.h libmp4ff_a_CFLAGS = -DUSE_TAGGING=1 debian/rules0000755000000000000000000000014611730725701010252 0ustar #!/usr/bin/make -f %: dh $@ --with autoreconf override_dh_strip: dh_strip --dbg-package=faad2-dbg debian/changelog0000644000000000000000000002611611731357070011052 0ustar faad2 (2.7-8) unstable; urgency=low [ Fabian Greffrath ] * debian/patches/path_max.patch: + Dynamically allocate file name buffers, instead of relying on PATH_MAX. * Set appropriate symbol visibility attributes. * Rebuild autofoo with dh-autoreconf. * Add debian/libfaad2.symbols file. * Multi-Archify. * Remove redundant license blurb from debian/copyright. * libmp4ff ist not packaged, so do not install it either. * Simplify debian/*.install accordingly. [ Andres Mejia ] * Make dev package multiarch installable. * Bump to Standards-Version 3.9.3. -- Andres Mejia Sun, 18 Mar 2012 09:07:55 -0400 faad2 (2.7-7) unstable; urgency=low [ Andres Mejia ] * Update to my @debian.org email. * Update gbp.conf. [ Reinhard Tartler ] * Update Vcs-Browser field * bump standards version (no changes needed) [ Fabian Greffrath ] * Convert to 3.0 (quilt) source format. * Re-enable two patches that got lost in the 2.7-6 upload: - debian/patches/bpa-stdin.patch + Apply SqueezeCenter patches from FreeBSD that enable streaming with BBCiPlayer and ezstream (LP: #470562). - debian/patches/path_max.patch + Extend file name buffers for longer path names (LP: #475050). * Merge patch from 2.7-6ubuntu1: - debian/patches/fix_ftbfs_with_gcc4.5.patch + Correctly declare lrintf in libfaad/common.h to avoid a conflict of declaration in mathcalls.h to fix FTBFS on i386 * Improve debian/copyright. -- Fabian Greffrath Wed, 03 Aug 2011 14:19:49 +0200 faad2 (2.7-6) unstable; urgency=high [ Alessio Treglia ] * Fix segmentation fault in faad due to an incorrect pointer size (Closes: #603807, LP: #665802). * Add gbp config file. [ Andres Mejia ] * Revert changes in 2.7-5. Upload of 2.7-5 was unintentionally done. * Refresh patches. -- Andres Mejia Mon, 22 Nov 2010 19:17:36 -0500 faad2 (2.7-5) unstable; urgency=low * Update my e-mail address. * Apply SqueezeCenter patches from FreeBSD that enable streaming with BBCiPlayer and ezstream (LP: #470562). * Extend file name buffers for longer path names (LP: #475050). -- Fabian Greffrath Mon, 16 Aug 2010 16:43:14 +0200 faad2 (2.7-4) unstable; urgency=low * debian/control: Do not build the shared libmp4ff library packages anymore (Closes: #550679). The use of mp4ff from faad2 is discouraged by upstream, see . * Removed debian/patches/force-include-stdint_h.patch. * Removed debian/patches/libmp4ff-shared-lib.patch. * Removed debian/patches/70_automake-1.9.patch. * Added debian/README.source. * Bumped Standards-Version to 3.8.3. * Raised Build-Depends to debhelper (>= 7.0.50~), thanks lintian. * Removed debian/libmp4ff-dev.install and debian/libmp4ff0.install. * Removed libmp4ff0 from Depends for faad2-dbg. -- Fabian Greffrath Mon, 26 Oct 2009 12:04:41 +0100 faad2 (2.7-3) UNRELEASED; urgency=low * debian/patches/force-include-stdint_h.patch: New patch to force inclusion of stdint.h (Closes: #550679). -- Fabian Greffrath Thu, 15 Oct 2009 18:00:41 +0200 faad2 (2.7-2) unstable; urgency=low * upload to unstable. -- Reinhard Tartler Wed, 16 Sep 2009 21:07:45 +0200 faad2 (2.7-1) experimental; urgency=low [ Andres Mejia ] * New upstream release. (Closes: #515072) * Verified all patches are either applied upstream, or a different implementation is used. + (Closes: #505901) + (Closes: #503657) * Switch to quilt. * Add -DPIC for CFLAGS. * Don't include dpatch.make in debian/rules. * Update watch file to default DEHS would use. * Bump to using debhelper 7. * Use quilt (>= 0.46-7). * Update control file. * Add DM-Upload-Allowed: yes field. * Don't include dummy package anymore. * Add in description for libfaad2 that it contains shared library. * Move libfaad-dev to the front to be 'default' package debhelper acts on. * Add ${misc:Depends} for all packages. Remove libc dev packages from Depends. * Add debug packages. (Closes: #516680) * Rewrite debian/rules to use new debhelper and quilt. * Rename .files to .install. Be more specific what to include in libfaad-dev. Also include .install files for other packages. * Add libmp4ff-dev package. * Don't include version for rename of libfaad package. Place all debug symbols for binary packages in faad2-dbg. * Modify description for libmp4ff-dev. * Update address to FSF in debian/copyright. * Fix hyphen in manpage. Fixes lintian warning as well. * Patch faad2 to create a shared lib for libmp4ff. (Closes: #485373) * Allow to pass in more CFLAGS via DEB_CFLAGS. * Add in DRM (Digital Radio Mondiale) support. * Add Build-Depends of automake, autoconf, and autotools-dev. [ Fabian Greffrath ] * Add myself to Uploaders. * Clean up Build-Depends: libid3-dev was only needed for the obsolete XMMS plugin, autotools stuff shouldn't be needed at all. * Untagle library file names in the install rules. * Revert overriding of CFLAGS, dpkg-buildpackage will choose appripriate settings. Revert running the entire autoreconf sequence before calling ./configure. Build without DRM support, it has proven to break base functionality. * Clean up watch file. * Make faad2-dbg and libmp4ff-dev depend on libmp4ff0. * Improve short description for the libmp4ff\* packages. * debian/patches/70_automake-1.9.patch: New patch, run automake-1.9 to regenerate Makefile.in with the changes introduced by debian/patches/libmp4ff-shared-lib.patch. * Do not ship .la files in the development packages. * Add reasonable defaults to CFLAGS/CXXFLAGS. -- Fabian Greffrath Wed, 03 Jun 2009 11:02:00 +0200 faad2 (2.6.1-3.1) unstable; urgency=high * Non-maintainer upload by the security team * Include upstream patch to fix heap overflow in the frontend code (Closes: #499899) -- Steffen Joeris Fri, 26 Sep 2008 12:02:35 +0000 faad2 (2.6.1-3) unstable; urgency=low * Closes: #479802: Update man page to reflect on raw PCM is supported on standard out. Also, have faad fail on trying to send non-raw PCM to standard out. * Apply new knowledge about the differences between hyphens, en-dashes, and em-dashes to man pages. * Move faad man page to patch system. * Update standards version. * Add license declarations and copyright declarations to copyright file. Tidy up authors. -- Matthew W. S. Bell Thu, 19 Jun 2008 02:35:47 +0100 faad2 (2.6.1-2) unstable; urgency=low * Remove XMMS plugin as XMMS is being removed (Closes: #456724) -- Matthew W. S. Bell Fri, 21 Dec 2007 00:04:17 +0000 faad2 (2.6.1-1) unstable; urgency=low * Import new upstream version containing new license text (Closes: #451948) * Change build system to call autoreconf at build time, as upstream no longer ships generated files * Update debian/copyright to reflect new license text * Remove Build-Depends on libsndfile1-dev (Closes: #452362) -- Matthew W. S. Bell Wed, 28 Nov 2007 23:45:05 +0000 faad2 (2.6-1) unstable; urgency=low * Import new 2.6 release. Includes several small off-by-one scale fixes. * Update the copyright as new code includes a clarification of the license text, which indicates that the entire work is under the GPLv2 (closes: #419339). -- Matthew W. S. Bell Mon, 15 Oct 2007 00:16:21 +0100 faad2 (2.5-5) unstable; urgency=low * Make packages depends bin-NMU safe -- Matthew W. S. Bell Fri, 17 Aug 2007 16:07:59 +0100 faad2 (2.5-4) unstable; urgency=low * Add mp4ff headers to libfaad-dev package (Closes: 409648) -- Matthew W. S. Bell Fri, 11 May 2007 19:44:22 +0100 faad2 (2.5-3) unstable; urgency=low * Add patch to stabilise/sanitise headers (Closes: 404279) * Port several fixes from Ubuntu * Add an mp4ff static library -- Matthew W. S. Bell Sun, 15 Apr 2007 04:23:35 +0100 faad2 (2.5-2) unstable; urgency=low * add xmms-mp4 desription read not like nonsense (Closes: #399457) * Compile without Digital Radio Mondiale support, as it breaks base functionality * Update debian/copyright (See: #403117) -- Matthew W. S. Bell Mon, 4 Dec 2006 19:56:22 +0000 faad2 (2.5-1) unstable; urgency=low * Call make install with DESTDIR instead of prefix * Change configure/Makefile to provide xmms config differently * Add manual page for faad utility * Call make uninstall in clean * Add dummy libfaad2-0 pacakge to satisfy some third-party dependencies * Upload into main (Closes: #306366) -- Matthew W. S. Bell Wed, 18 Oct 2006 23:41:32 +0100 faad2 (2.5-0.0) unstable; urgency=low * New upstream release. * Add drm (Digital Radio Mondiale) support. -- Christian Marillat Wed, 6 Sep 2006 20:18:25 +0200 faad2 (2.0.0+cvs20060416-0.1) unstable; urgency=low * Rebuild for amd64. -- Christian Marillat Sat, 13 May 2006 08:58:34 +0200 faad2 (2.0.0+cvs20060416-0.0) unstable; urgency=low * CVS release. -- Christian Marillat Sun, 16 Apr 2006 17:15:00 +0200 faad2 (2.0.0-0.7) unstable; urgency=low * Rebuild for gcc 4.0 -- Christian Marillat Sat, 16 Jul 2005 17:34:28 +0200 faad2 (2.0.0-0.6) unstable; urgency=low * New patch from Gentoo to fix amd64 problem with some files. Thanks to Carl Schneidinger. -- Christian Marillat Fri, 20 May 2005 18:42:23 +0200 faad2 (2.0.0-0.5) unstable; urgency=low * Apply patch from Arnaud Rouanet to fix the -w option in faad. -- Christian Marillat Mon, 21 Mar 2005 10:13:05 +0100 faad2 (2.0.0-0.4) unstable; urgency=low * New patch 04_mp4ff.h to replace "mp4ff_int_types.h" include by -- Christian Marillat Wed, 9 Mar 2005 08:59:35 +0100 faad2 (2.0.0-0.3) unstable; urgency=low * Add libfaac-dev in Build-Depends. * Little hack to not build the mpeg4ip plugin. -- Christian Marillat Wed, 26 Jan 2005 07:36:25 +0100 faad2 (2.0.0-0.2) unstable; urgency=low * Build with libmp4 * Add new package xmms-mp4 -- Christian Marillat Mon, 25 Oct 2004 10:19:52 +0200 faad2 (2.0.0-0.1) unstable; urgency=low * Really apply my patch to link against -lm -- Christian Marillat Thu, 29 Jul 2004 15:48:22 +0200 faad2 (2.0.0-0.0) unstable; urgency=low * New upstream release. -- Christian Marillat Sun, 4 Jul 2004 00:26:23 +0200 faad2 (2.0-rc3-0.0) unstable; urgency=low * New upstream release. -- Christian Marillat Tue, 9 Dec 2003 10:57:01 +0100 faad2 (1.1-0.0) unstable; urgency=low * Initial Release. -- Christian Marillat Sun, 29 Dec 2002 23:09:33 +0100 debian/gbp.conf0000644000000000000000000000012011730725701010601 0ustar [DEFAULT] debian-branch = master upstream-branch = upstream pristine-tar = True debian/faad.install0000644000000000000000000000001011472602435011444 0ustar usr/bin debian/faad.manpages0000644000000000000000000000002211472602435011574 0ustar frontend/faad.man debian/control0000644000000000000000000000446011730726350010601 0ustar Source: faad2 Section: libs Priority: optional Maintainer: Debian Multimedia Maintainers Uploaders: Matthew W. S. Bell , Andres Mejia , Reinhard Tartler , Fabian Greffrath DM-Upload-Allowed: yes Standards-Version: 3.9.3 Build-Depends: debhelper (>= 9), dh-autoreconf Homepage: http://www.audiocoding.com/ Vcs-Git: git://git.debian.org/git/pkg-multimedia/faad2.git Vcs-Browser: http://anonscm.debian.org/gitweb/?p=pkg-multimedia/faad2.git Package: libfaad-dev Multi-Arch: same Section: libdevel Architecture: any Depends: libfaad2 (= ${binary:Version}), ${misc:Depends} Conflicts: libfaad2-dev Replaces: libfaad2-dev Description: freeware Advanced Audio Decoder - development files FAAD2 is the fastest ISO AAC audio decoder available. FAAD2 correctly decodes all MPEG-4 and MPEG-2 MAIN, LOW, LTP, LD and ER object type AAC files. . This package contains development files. Package: libfaad2 Architecture: any Multi-Arch: same Pre-Depends: ${misc:Pre-Depends} Depends: ${shlibs:Depends}, ${misc:Depends} Conflicts: libfaad2-0 Replaces: libfaad2-0 Description: freeware Advanced Audio Decoder - runtime files FAAD2 is the fastest ISO AAC audio decoder available. FAAD2 correctly decodes all MPEG-4 and MPEG-2 MAIN, LOW, LTP, LD and ER object type AAC files. . This package contains the shared library. Package: faad2-dbg Architecture: any Section: debug Priority: extra Depends: libfaad2 (= ${binary:Version}), faad (= ${binary:Version}), ${misc:Depends} Description: freeware Advanced Audio Decoder - debugging symbols FAAD2 is the fastest ISO AAC audio decoder available. FAAD2 correctly decodes all MPEG-4 and MPEG-2 MAIN, LOW, LTP, LD and ER object type AAC files. . This package contains the debugging symbols for all binary packages. Package: faad Section: sound Architecture: any Depends: ${shlibs:Depends}, ${misc:Depends} Conflicts: faad2 Replaces: faad2 Description: freeware Advanced Audio Decoder player FAAD2 is the fastest ISO AAC audio decoder available. FAAD2 correctly decodes all MPEG-4 and MPEG-2 MAIN, LOW, LTP, LD and ER object type AAC files. . This package contains a command line interface to play AAC or MP4 files. debian/libfaad2.install0000644000000000000000000000002111730725701012216 0ustar usr/lib/*/*.so.* debian/copyright0000644000000000000000000007202011730725701011125 0ustar Format: http://anonscm.debian.org/viewvc/dep/web/deps/dep5.mdwn?revision=174&view=markup Upstream-Name: FAAD2 Upstream-Contact: faac-dev@lists.sourceforge.net Source: http://www.audiocoding.com/faad2.html Files: * Copyright: 2002, M. Bakker 2002-2005, M. Bakker, Ahead Software AG, http://www.nero.com 2003-2005, M. Bakker, Nero AG, http://www.nero.com License: GPL-2+ Comment: ** Any non-GPL usage of this software or parts of this software is strictly ** forbidden. ** ** The "appropriate copyright message" mentioned in section 2c of the GPLv2 ** must read: "Code from FAAD2 is copyright (c) Nero AG, www.nero.com" Files: aacDECdrop/decode.h aacDECdrop/decthread.c aacDECdrop/decthread.h aacDECdrop/main.c aacDECdrop/misc.c aacDECdrop/misc.h aacDECdrop/wave_out.c aacDECdrop/wave_out.h Copyright: 2002, John Edwards License: GPL-2 Files: common/faad/getopt.* Copyright: 1987-1993, Free Software Foundation, Inc License: GPL-2+ Files: plugins/mpeg4ip/aa_file.cpp plugins/mpeg4ip/aa_file.h plugins/mpeg4ip/faad2.cpp plugins/mpeg4ip/faad2.h Copyright: 2003, Bill May License: GPL-2+ Files: plugins/QCD/QCDInputDLL.h plugins/QCD/QCDModDefs.h plugins/QCD/QCDModInput.h plugins/QCDMp4/QCDInputDLL.h plugins/QCDMp4/QCDModDefs.h plugins/QCDMp4/QCDModInput.h plugins/QCDMp4/QCDModTagEditor.h Copyright: 1997-2002, Quinnware License: other // This code is free. If you redistribute it in any form, leave this notice // here. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. Files: plugins/QCDMp4/mbs.h Copyright: 2001-2002, Cisco Systems Inc. License: MPL-1.1 Files: debian/* Copyright: 2002, Aubin Paul 2006-2008, Matthew W. S. Bell 2009-2011, Fabian Greffrath License: GPL-2+ License: GPL-2 This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License, version 2. . This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. . You should have received a copy of the GNU General Public License along with this program. If not, see . . On Debian systems, the complete text of the GNU General Public License version 2 can be found in `/usr/share/common-licenses/GPL-2'. License: GPL-2+ This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. . This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. . You should have received a copy of the GNU General Public License along with this program. If not, see . . On Debian systems, the complete text of the GNU General Public License version 2 can be found in `/usr/share/common-licenses/GPL-2'. License: MPL-1.1 MOZILLA PUBLIC LICENSE Version 1.1 . --------------- . 1. Definitions. . 1.0.1. "Commercial Use" means distribution or otherwise making the Covered Code available to a third party. . 1.1. "Contributor" means each entity that creates or contributes to the creation of Modifications. . 1.2. "Contributor Version" means the combination of the Original Code, prior Modifications used by a Contributor, and the Modifications made by that particular Contributor. . 1.3. "Covered Code" means the Original Code or Modifications or the combination of the Original Code and Modifications, in each case including portions thereof. . 1.4. "Electronic Distribution Mechanism" means a mechanism generally accepted in the software development community for the electronic transfer of data. . 1.5. "Executable" means Covered Code in any form other than Source Code. . 1.6. "Initial Developer" means the individual or entity identified as the Initial Developer in the Source Code notice required by Exhibit A. . 1.7. "Larger Work" means a work which combines Covered Code or portions thereof with code not governed by the terms of this License. . 1.8. "License" means this document. . 1.8.1. "Licensable" means having the right to grant, to the maximum extent possible, whether at the time of the initial grant or subsequently acquired, any and all of the rights conveyed herein. . 1.9. "Modifications" means any addition to or deletion from the substance or structure of either the Original Code or any previous Modifications. When Covered Code is released as a series of files, a Modification is: A. Any addition to or deletion from the contents of a file containing Original Code or previous Modifications. . B. Any new file that contains any part of the Original Code or previous Modifications. . 1.10. "Original Code" means Source Code of computer software code which is described in the Source Code notice required by Exhibit A as Original Code, and which, at the time of its release under this License is not already Covered Code governed by this License. . 1.10.1. "Patent Claims" means any patent claim(s), now owned or hereafter acquired, including without limitation, method, process, and apparatus claims, in any patent Licensable by grantor. . 1.11. "Source Code" means the preferred form of the Covered Code for making modifications to it, including all modules it contains, plus any associated interface definition files, scripts used to control compilation and installation of an Executable, or source code differential comparisons against either the Original Code or another well known, available Covered Code of the Contributor's choice. The Source Code can be in a compressed or archival form, provided the appropriate decompression or de-archiving software is widely available for no charge. . 1.12. "You" (or "Your") means an individual or a legal entity exercising rights under, and complying with all of the terms of, this License or a future version of this License issued under Section 6.1. For legal entities, "You" includes any entity which controls, is controlled by, or is under common control with You. For purposes of this definition, "control" means (a) the power, direct or indirect, to cause the direction or management of such entity, whether by contract or otherwise, or (b) ownership of more than fifty percent (50%) of the outstanding shares or beneficial ownership of such entity. . 2. Source Code License. . 2.1. The Initial Developer Grant. The Initial Developer hereby grants You a world-wide, royalty-free, non-exclusive license, subject to third party intellectual property claims: (a) under intellectual property rights (other than patent or trademark) Licensable by Initial Developer to use, reproduce, modify, display, perform, sublicense and distribute the Original Code (or portions thereof) with or without Modifications, and/or as part of a Larger Work; and . (b) under Patents Claims infringed by the making, using or selling of Original Code, to make, have made, use, practice, sell, and offer for sale, and/or otherwise dispose of the Original Code (or portions thereof). . (c) the licenses granted in this Section 2.1(a) and (b) are effective on the date Initial Developer first distributes Original Code under the terms of this License. . (d) Notwithstanding Section 2.1(b) above, no patent license is granted: 1) for code that You delete from the Original Code; 2) separate from the Original Code; or 3) for infringements caused by: i) the modification of the Original Code or ii) the combination of the Original Code with other software or devices. . 2.2. Contributor Grant. Subject to third party intellectual property claims, each Contributor hereby grants You a world-wide, royalty-free, non-exclusive license . (a) under intellectual property rights (other than patent or trademark) Licensable by Contributor, to use, reproduce, modify, display, perform, sublicense and distribute the Modifications created by such Contributor (or portions thereof) either on an unmodified basis, with other Modifications, as Covered Code and/or as part of a Larger Work; and . (b) under Patent Claims infringed by the making, using, or selling of Modifications made by that Contributor either alone and/or in combination with its Contributor Version (or portions of such combination), to make, use, sell, offer for sale, have made, and/or otherwise dispose of: 1) Modifications made by that Contributor (or portions thereof); and 2) the combination of Modifications made by that Contributor with its Contributor Version (or portions of such combination). . (c) the licenses granted in Sections 2.2(a) and 2.2(b) are effective on the date Contributor first makes Commercial Use of the Covered Code. . (d) Notwithstanding Section 2.2(b) above, no patent license is granted: 1) for any code that Contributor has deleted from the Contributor Version; 2) separate from the Contributor Version; 3) for infringements caused by: i) third party modifications of Contributor Version or ii) the combination of Modifications made by that Contributor with other software (except as part of the Contributor Version) or other devices; or 4) under Patent Claims infringed by Covered Code in the absence of Modifications made by that Contributor. . 3. Distribution Obligations. . 3.1. Application of License. The Modifications which You create or to which You contribute are governed by the terms of this License, including without limitation Section 2.2. The Source Code version of Covered Code may be distributed only under the terms of this License or a future version of this License released under Section 6.1, and You must include a copy of this License with every copy of the Source Code You distribute. You may not offer or impose any terms on any Source Code version that alters or restricts the applicable version of this License or the recipients' rights hereunder. However, You may include an additional document offering the additional rights described in Section 3.5. . 3.2. Availability of Source Code. Any Modification which You create or to which You contribute must be made available in Source Code form under the terms of this License either on the same media as an Executable version or via an accepted Electronic Distribution Mechanism to anyone to whom you made an Executable version available; and if made available via Electronic Distribution Mechanism, must remain available for at least twelve (12) months after the date it initially became available, or at least six (6) months after a subsequent version of that particular Modification has been made available to such recipients. You are responsible for ensuring that the Source Code version remains available even if the Electronic Distribution Mechanism is maintained by a third party. . 3.3. Description of Modifications. You must cause all Covered Code to which You contribute to contain a file documenting the changes You made to create that Covered Code and the date of any change. You must include a prominent statement that the Modification is derived, directly or indirectly, from Original Code provided by the Initial Developer and including the name of the Initial Developer in (a) the Source Code, and (b) in any notice in an Executable version or related documentation in which You describe the origin or ownership of the Covered Code. . 3.4. Intellectual Property Matters (a) Third Party Claims. If Contributor has knowledge that a license under a third party's intellectual property rights is required to exercise the rights granted by such Contributor under Sections 2.1 or 2.2, Contributor must include a text file with the Source Code distribution titled "LEGAL" which describes the claim and the party making the claim in sufficient detail that a recipient will know whom to contact. If Contributor obtains such knowledge after the Modification is made available as described in Section 3.2, Contributor shall promptly modify the LEGAL file in all copies Contributor makes available thereafter and shall take other steps (such as notifying appropriate mailing lists or newsgroups) reasonably calculated to inform those who received the Covered Code that new knowledge has been obtained. . (b) Contributor APIs. If Contributor's Modifications include an application programming interface and Contributor has knowledge of patent licenses which are reasonably necessary to implement that API, Contributor must also include this information in the LEGAL file. . (c) Representations. Contributor represents that, except as disclosed pursuant to Section 3.4(a) above, Contributor believes that Contributor's Modifications are Contributor's original creation(s) and/or Contributor has sufficient rights to grant the rights conveyed by this License. . 3.5. Required Notices. You must duplicate the notice in Exhibit A in each file of the Source Code. If it is not possible to put such notice in a particular Source Code file due to its structure, then You must include such notice in a location (such as a relevant directory) where a user would be likely to look for such a notice. If You created one or more Modification(s) You may add your name as a Contributor to the notice described in Exhibit A. You must also duplicate this License in any documentation for the Source Code where You describe recipients' rights or ownership rights relating to Covered Code. You may choose to offer, and to charge a fee for, warranty, support, indemnity or liability obligations to one or more recipients of Covered Code. However, You may do so only on Your own behalf, and not on behalf of the Initial Developer or any Contributor. You must make it absolutely clear than any such warranty, support, indemnity or liability obligation is offered by You alone, and You hereby agree to indemnify the Initial Developer and every Contributor for any liability incurred by the Initial Developer or such Contributor as a result of warranty, support, indemnity or liability terms You offer. . 3.6. Distribution of Executable Versions. You may distribute Covered Code in Executable form only if the requirements of Section 3.1-3.5 have been met for that Covered Code, and if You include a notice stating that the Source Code version of the Covered Code is available under the terms of this License, including a description of how and where You have fulfilled the obligations of Section 3.2. The notice must be conspicuously included in any notice in an Executable version, related documentation or collateral in which You describe recipients' rights relating to the Covered Code. You may distribute the Executable version of Covered Code or ownership rights under a license of Your choice, which may contain terms different from this License, provided that You are in compliance with the terms of this License and that the license for the Executable version does not attempt to limit or alter the recipient's rights in the Source Code version from the rights set forth in this License. If You distribute the Executable version under a different license You must make it absolutely clear that any terms which differ from this License are offered by You alone, not by the Initial Developer or any Contributor. You hereby agree to indemnify the Initial Developer and every Contributor for any liability incurred by the Initial Developer or such Contributor as a result of any such terms You offer. . 3.7. Larger Works. You may create a Larger Work by combining Covered Code with other code not governed by the terms of this License and distribute the Larger Work as a single product. In such a case, You must make sure the requirements of this License are fulfilled for the Covered Code. . 4. Inability to Comply Due to Statute or Regulation. . If it is impossible for You to comply with any of the terms of this License with respect to some or all of the Covered Code due to statute, judicial order, or regulation then You must: (a) comply with the terms of this License to the maximum extent possible; and (b) describe the limitations and the code they affect. Such description must be included in the LEGAL file described in Section 3.4 and must be included with all distributions of the Source Code. Except to the extent prohibited by statute or regulation, such description must be sufficiently detailed for a recipient of ordinary skill to be able to understand it. . 5. Application of this License. . This License applies to code to which the Initial Developer has attached the notice in Exhibit A and to related Covered Code. . 6. Versions of the License. . 6.1. New Versions. Netscape Communications Corporation ("Netscape") may publish revised and/or new versions of the License from time to time. Each version will be given a distinguishing version number. . 6.2. Effect of New Versions. Once Covered Code has been published under a particular version of the License, You may always continue to use it under the terms of that version. You may also choose to use such Covered Code under the terms of any subsequent version of the License published by Netscape. No one other than Netscape has the right to modify the terms applicable to Covered Code created under this License. . 6.3. Derivative Works. If You create or use a modified version of this License (which you may only do in order to apply it to code which is not already Covered Code governed by this License), You must (a) rename Your license so that the phrases "Mozilla", "MOZILLAPL", "MOZPL", "Netscape", "MPL", "NPL" or any confusingly similar phrase do not appear in your license (except to note that your license differs from this License) and (b) otherwise make it clear that Your version of the license contains terms which differ from the Mozilla Public License and Netscape Public License. (Filling in the name of the Initial Developer, Original Code or Contributor in the notice described in Exhibit A shall not of themselves be deemed to be modifications of this License.) . 7. DISCLAIMER OF WARRANTY. . COVERED CODE IS PROVIDED UNDER THIS LICENSE ON AN "AS IS" BASIS, WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, WITHOUT LIMITATION, WARRANTIES THAT THE COVERED CODE IS FREE OF DEFECTS, MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE OR NON-INFRINGING. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE COVERED CODE IS WITH YOU. SHOULD ANY COVERED CODE PROVE DEFECTIVE IN ANY RESPECT, YOU (NOT THE INITIAL DEVELOPER OR ANY OTHER CONTRIBUTOR) ASSUME THE COST OF ANY NECESSARY SERVICING, REPAIR OR CORRECTION. THIS DISCLAIMER OF WARRANTY CONSTITUTES AN ESSENTIAL PART OF THIS LICENSE. NO USE OF ANY COVERED CODE IS AUTHORIZED HEREUNDER EXCEPT UNDER THIS DISCLAIMER. . 8. TERMINATION. . 8.1. This License and the rights granted hereunder will terminate automatically if You fail to comply with terms herein and fail to cure such breach within 30 days of becoming aware of the breach. All sublicenses to the Covered Code which are properly granted shall survive any termination of this License. Provisions which, by their nature, must remain in effect beyond the termination of this License shall survive. . 8.2. If You initiate litigation by asserting a patent infringement claim (excluding declatory judgment actions) against Initial Developer or a Contributor (the Initial Developer or Contributor against whom You file such action is referred to as "Participant") alleging that: . (a) such Participant's Contributor Version directly or indirectly infringes any patent, then any and all rights granted by such Participant to You under Sections 2.1 and/or 2.2 of this License shall, upon 60 days notice from Participant terminate prospectively, unless if within 60 days after receipt of notice You either: (i) agree in writing to pay Participant a mutually agreeable reasonable royalty for Your past and future use of Modifications made by such Participant, or (ii) withdraw Your litigation claim with respect to the Contributor Version against such Participant. If within 60 days of notice, a reasonable royalty and payment arrangement are not mutually agreed upon in writing by the parties or the litigation claim is not withdrawn, the rights granted by Participant to You under Sections 2.1 and/or 2.2 automatically terminate at the expiration of the 60 day notice period specified above. . (b) any software, hardware, or device, other than such Participant's Contributor Version, directly or indirectly infringes any patent, then any rights granted to You by such Participant under Sections 2.1(b) and 2.2(b) are revoked effective as of the date You first made, used, sold, distributed, or had made, Modifications made by that Participant. . 8.3. If You assert a patent infringement claim against Participant alleging that such Participant's Contributor Version directly or indirectly infringes any patent where such claim is resolved (such as by license or settlement) prior to the initiation of patent infringement litigation, then the reasonable value of the licenses granted by such Participant under Sections 2.1 or 2.2 shall be taken into account in determining the amount or value of any payment or license. . 8.4. In the event of termination under Sections 8.1 or 8.2 above, all end user license agreements (excluding distributors and resellers) which have been validly granted by You or any distributor hereunder prior to termination shall survive termination. . 9. LIMITATION OF LIABILITY. . UNDER NO CIRCUMSTANCES AND UNDER NO LEGAL THEORY, WHETHER TORT (INCLUDING NEGLIGENCE), CONTRACT, OR OTHERWISE, SHALL YOU, THE INITIAL DEVELOPER, ANY OTHER CONTRIBUTOR, OR ANY DISTRIBUTOR OF COVERED CODE, OR ANY SUPPLIER OF ANY OF SUCH PARTIES, BE LIABLE TO ANY PERSON FOR ANY INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES OF ANY CHARACTER INCLUDING, WITHOUT LIMITATION, DAMAGES FOR LOSS OF GOODWILL, WORK STOPPAGE, COMPUTER FAILURE OR MALFUNCTION, OR ANY AND ALL OTHER COMMERCIAL DAMAGES OR LOSSES, EVEN IF SUCH PARTY SHALL HAVE BEEN INFORMED OF THE POSSIBILITY OF SUCH DAMAGES. THIS LIMITATION OF LIABILITY SHALL NOT APPLY TO LIABILITY FOR DEATH OR PERSONAL INJURY RESULTING FROM SUCH PARTY'S NEGLIGENCE TO THE EXTENT APPLICABLE LAW PROHIBITS SUCH LIMITATION. SOME JURISDICTIONS DO NOT ALLOW THE EXCLUSION OR LIMITATION OF INCIDENTAL OR CONSEQUENTIAL DAMAGES, SO THIS EXCLUSION AND LIMITATION MAY NOT APPLY TO YOU. . 10. U.S. GOVERNMENT END USERS. . The Covered Code is a "commercial item," as that term is defined in 48 C.F.R. 2.101 (Oct. 1995), consisting of "commercial computer software" and "commercial computer software documentation," as such terms are used in 48 C.F.R. 12.212 (Sept. 1995). Consistent with 48 C.F.R. 12.212 and 48 C.F.R. 227.7202-1 through 227.7202-4 (June 1995), all U.S. Government End Users acquire Covered Code with only those rights set forth herein. . 11. MISCELLANEOUS. . This License represents the complete agreement concerning subject matter hereof. If any provision of this License is held to be unenforceable, such provision shall be reformed only to the extent necessary to make it enforceable. This License shall be governed by California law provisions (except to the extent applicable law, if any, provides otherwise), excluding its conflict-of-law provisions. With respect to disputes in which at least one party is a citizen of, or an entity chartered or registered to do business in the United States of America, any litigation relating to this License shall be subject to the jurisdiction of the Federal Courts of the Northern District of California, with venue lying in Santa Clara County, California, with the losing party responsible for costs, including without limitation, court costs and reasonable attorneys' fees and expenses. The application of the United Nations Convention on Contracts for the International Sale of Goods is expressly excluded. Any law or regulation which provides that the language of a contract shall be construed against the drafter shall not apply to this License. . 12. RESPONSIBILITY FOR CLAIMS. . As between Initial Developer and the Contributors, each party is responsible for claims and damages arising, directly or indirectly, out of its utilization of rights under this License and You agree to work with Initial Developer and Contributors to distribute such responsibility on an equitable basis. Nothing herein is intended or shall be deemed to constitute any admission of liability. . 13. MULTIPLE-LICENSED CODE. . Initial Developer may designate portions of the Covered Code as "Multiple-Licensed". "Multiple-Licensed" means that the Initial Developer permits you to utilize portions of the Covered Code under Your choice of the NPL or the alternative licenses, if any, specified by the Initial Developer in the file described in Exhibit A. . EXHIBIT A -Mozilla Public License. . ``The contents of this file are subject to the Mozilla Public License Version 1.1 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.mozilla.org/MPL/ . Software distributed under the License is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License for the specific language governing rights and limitations under the License. . The Original Code is ______________________________________. . The Initial Developer of the Original Code is ________________________. Portions created by ______________________ are Copyright (C) ______ _______________________. All Rights Reserved. . Contributor(s): ______________________________________. . Alternatively, the contents of this file may be used under the terms of the _____ license (the "[___] License"), in which case the provisions of [______] License are applicable instead of those above. If you wish to allow use of your version of this file only under the terms of the [____] License and not to allow others to use your version of this file under the MPL, indicate your decision by deleting the provisions above and replace them with the notice and other provisions required by the [___] License. If you do not delete the provisions above, a recipient may use your version of this file under either the MPL or the [___] License." . [NOTE: The text of this Exhibit A may differ slightly from the text of the notices in the Source Code files of the Original Code. You should use the text of this Exhibit A rather than the text found in the Original Code Source Code for Your Modifications.] debian/libfaad2.symbols0000644000000000000000000000060711730725701012252 0ustar libfaad.so.2 libfaad2 #MINVER# NeAACDecAudioSpecificConfig@Base 2.7 NeAACDecClose@Base 2.7 NeAACDecDecode2@Base 2.7 NeAACDecDecode@Base 2.7 NeAACDecGetCapabilities@Base 2.7 NeAACDecGetCurrentConfiguration@Base 2.7 NeAACDecGetErrorMessage@Base 2.7 NeAACDecInit2@Base 2.7 NeAACDecInit@Base 2.7 NeAACDecOpen@Base 2.7 NeAACDecPostSeekReset@Base 2.7 NeAACDecSetConfiguration@Base 2.7