FishSound 1.0.1 Release
-----------------------

libfishsound provides a simple programming interface for decoding and
encoding audio data using Xiph.org codecs (FLAC, Speex and Vorbis).

This release is available as a source tarball at:

https://downloads.xiph.org/releases/libfishsound/libfishsound-1.0.1.tar.gz

New in this release
-------------------

This is a stable maintenance release including build fixes and
improved handling of optional features.

This release contains security and other bugfixes:

Conrad Parker (5):
      configure: set valgrind --num-callers to 50 (max).
      README: add project communication info.
      flac: set vendor_string.length = 0.
      Add TODO file with some suggested improvements.
      Drop Requires: line from fishsound.pc.in

Petter Reinholdtsen (12):
      Added gitlab CI build test for gcc, clang and mingw.
      Fixed incompatible flac callback types.
      Patch configure.ac to specify config macro dir.
      Fixed flac build with --disable-decode.
      Fixed speex build with --disable-decode.
      Regenerated config.h.in based on current configure.ac.
      Fixed --disable-vorbis option.
      Changed identifiers "__FISH_SOUND_H__" and "_FishSoundFlacInfo" to
        avoid C++ naming convention conflict.
      Use correct oggz argument type in examples.
      Changed expected function signature of fs_vector_foreach to expect
        void.
      Make sure to check the correct flac init return values.
      Implemented --disable-oggz to ignore oggz when present.

 .gitlab-ci.yml                       | 91 +++++++++++++++++++++++++++++++++
 ChangeLog                            |  7 +++
 README                               | 24 ++++++++-
 TODO                                 | 12 +++++
 config.h.in                          | 16 +++---
 configure.ac                         | 39 ++++++++-------
 fishsound.pc.in                      |  1 -
 include/fishsound/fishsound.h        |  6 +--
 release_notes/libfishsound-1.0.1.txt | 97 ++++++++++++++++++++++++++++++++++++
 src/examples/fishsound-decenc.c      |  3 +-
 src/examples/fishsound-decode.c      |  3 +-
 src/examples/fishsound-identify.c    |  4 +-
 src/examples/fishsound-info.c        |  3 +-
 src/libfishsound/flac.c              | 30 ++++++++---
 src/libfishsound/fs_vector.c         |  2 +-
 src/libfishsound/fs_vector.h         |  2 +-
 src/libfishsound/speex.c             | 31 ++++++------
 17 files changed, 311 insertions(+), 60 deletions(-)

About libfishsound
------------------

libfishsound by itself is designed to handle raw codec streams from a
lower level layer such as UDP datagrams. When these codecs are used in
files, they are commonly encapsulated in Ogg to produce Ogg FLAC, Speex
and Ogg Vorbis files.

libfishsound is a wrapper around the existing codec libraries and provides
a consistent, higher-level programming interface. It has been designed for
use in a wide variety of applications; it has no direct dependencies on
Ogg encapsulation, though it is most commonly used in conjunction with
liboggz to decode or encode FLAC, Speex or Vorbis audio tracks in Ogg files,
including Ogg Theora and Annodex.

FishSound has been developed and tested on GNU/Linux, Darwin/MacOSX and
Win32. It probably also works on other Unix-like systems via GNU autoconf.
For Win32: nmake Makefiles, Visual Studio .NET 2003 solution files and
Visual C++ 6.0 workspace files are all provided in the source distribution.

Full documentation of the FishSound API, customization and installation,
and complete examples of Ogg FLAC, Speex and Ogg Vorbis decoding and encoding
are provided in the source tarball, and can be read online at:

    https://www.xiph.org/fishsound/doc/

FishSound is Free Software, available under a BSD-style license.

More information is available online at the FishSound homepage:

    https://www.xiph.org/fishsound/

enjoy :)

-- 
Happy hacking
Petter Reinholdtsen
