Browse Source

bump to ver 0.2.3

master v0.2.3
Alexandros Theodotou 3 years ago
parent
commit
6da0a394ea
Signed by: alex
GPG Key ID: 022EAE42313D70F3
  1. 18
      CHANGELOG.md
  2. 3
      README.md
  3. 18
      meson.build
  4. 13
      meson_options.txt

18
CHANGELOG.md

@ -0,0 +1,18 @@ @@ -0,0 +1,18 @@
# Changelog
All notable changes to this project will be documented in this file.
## [0.2.3] - 2020-08-15
### Changed
- Use minimp3 instead of ffmpeg for mp3
### Removed
- Remove ffmpeg dependency
----
Copyright (C) 2019-2020 Alexandros Theodotou
Copying and distribution of this file, with or without modification,
are permitted in any medium without royalty provided the copyright
notice and this notice are preserved. This file is offered as-is,
without any warranty.

3
README.md

@ -7,6 +7,9 @@ and resampling audio files, based on Robin Gareus' @@ -7,6 +7,9 @@ and resampling audio files, based on Robin Gareus'
`audio_decoder` code
(https://github.com/x42/silan/tree/master/audio_decoder)
libaudec supports all formats supported by sndfile,
in addition to MP3.
This library is meant to be linked in statically
to larger projects.

18
meson.build

@ -17,7 +17,7 @@ @@ -17,7 +17,7 @@
project (
'libaudec', ['c'],
version: '0.2.2',
version: '0.2.3',
license: 'AGPLv3+',
meson_version: '>= 0.47.0',
default_options: [
@ -142,22 +142,6 @@ audec_cflags = cc.get_supported_arguments ( @@ -142,22 +142,6 @@ audec_cflags = cc.get_supported_arguments (
audec_cflags)
audec_deps = []
#libavcodec_dep = dependency (
#'libavcodec', required: get_option ('ffmpeg'))
#libavformat_dep = dependency (
#'libavformat', required: get_option ('ffmpeg'))
#libavutil_dep = dependency (
#'libavutil', required: get_option ('ffmpeg'))
#audec_deps += [
#libavcodec_dep,
#libavformat_dep,
#libavutil_dep,
#]
#have_ffmpeg = libavcodec_dep.found () and libavformat_dep.found () and libavutil_dep.found () and not get_option ('ffmpeg').disabled ()
#if have_ffmpeg
#cdata.set('HAVE_FFMPEG', 1)
#endif
have_ffmpeg = false
audec_deps += [
dependency('sndfile', version: '>=1.0.25'),

13
meson_options.txt

@ -15,22 +15,9 @@ @@ -15,22 +15,9 @@
# You should have received a copy of the GNU Affero General Public License
# along with libaudec. If not, see <https://www.gnu.org/licenses/>.
option (
'ffmpeg',
type: 'feature',
value: 'disabled',
yield: true,
description: 'Compile with ffmpeg (for MP3 support)')
option (
'tests',
type: 'boolean',
value: true,
yield: true,
description: 'Compile tests')
option (
'mp3_tests',
type: 'boolean',
value: false,
description: 'Compile mp3 tests')

Loading…
Cancel
Save