- Apr 09, 2018
-
-
Tristan Matthews authored
Fixes #1975
-
- Mar 21, 2018
-
-
Fixes #32
-
- Mar 16, 2018
-
-
Thomas Daede authored
-
Thomas Daede authored
-
Thomas Daede authored
Codebooks that are not an exact divisor of the partition size are now truncated to fit within the partition.
- Dec 11, 2017
-
-
If the number of channels is not within the allowed range we call oggback_writeclear altough it's not initialized yet. This fixes =23371== Invalid free() / delete / delete[] / realloc() ==23371== at 0x4C2CE1B: free (vg_replace_malloc.c:530) ==23371== by 0x829CA31: oggpack_writeclear (in /usr/lib/x86_64-linux-gnu/libogg.so.0.8.2) ==23371== by 0x84B96EE: vorbis_analysis_headerout (info.c:652) ==23371== by 0x9FBCBCC: ??? (in /usr/lib/x86_64-linux-gnu/sox/libsox_fmt_vorbis.so) ==23371== by 0x4E524F1: ??? (in /usr/lib/x86_64-linux-gnu/libsox.so.2.0.1) ==23371== by 0x4E52CCA: sox_open_write (in /usr/lib/x86_64-linux-gnu/libsox.so.2.0.1) ==23371== by 0x10D82A: open_output_file (sox.c:1556) ==23371== by 0x10D82A: process (sox.c:1753) ==23371== by 0x10D82A: main (sox.c:3012) ==23371== Address 0x68768c8 is 488 bytes inside a block of size 880 alloc'd ==23371== at 0x4C2BB1F: malloc (vg_replace_malloc.c:298) ==23371== by 0x4C2DE9F: realloc (vg_replace_malloc.c:785) ==23371== by 0x4E545C2: lsx_realloc (in /usr/lib/x86_64-linux-gnu/libsox.so.2.0.1) ==23371== by 0x9FBC9A0: ??? (in /usr/lib/x86_64-linux-gnu/sox/libsox_fmt_vorbis.so) ==23371== by 0x4E524F1: ??? (in /usr/lib/x86_64-linux-gnu/libsox.so.2.0.1) ==23371== by 0x4E52CCA: sox_open_write (in /usr/lib/x86_64-linux-gnu/libsox.so.2.0.1) ==23371== by 0x10D82A: open_output_file (sox.c:1556) ==23371== by 0x10D82A: process (sox.c:1753) ==23371== by 0x10D82A: main (sox.c:3012) as seen when using the testcase from CVE-2017-11333 with 008d23b782be09c8d75ba8190b1794abd66c7121 applied. However the error was there before.
-
Otherwise for(i=0;i<vi->channels;i++){ /* the encoder setup assumes that all the modes used by any specific bitrate tweaking use the same floor */ int submap=info->chmuxlist[i]; overreads later in mapping0_forward since chmuxlist is a fixed array of 256 elements max.
-
- Nov 11, 2017
-
-
Loren M. Lang authored
The minimum between the encoded residue boundaries and actual block size needs to be used, otherwise it pushes the boundaries to the edge of the actual blocksize or beyond.
-
- Nov 10, 2017
-
-
Tristan Matthews authored
Regression started at commit "4b67376d Remove multiple subtly different inline..."
-
- Sep 25, 2017
-
-
Ralph Giles authored
Add a .ycm_extra.conf.py script to return the same CFLAGS we pass for `make debug`. These are passed to libclang so symbol lookup works correctly. Note this doesn't pick up changes to the build config, including non-default locations for the ogg headers, but it's better than nothing.
-
- Jul 25, 2017
-
-
info is allocated with calloc() already. Signed-off-by:
Ralph Giles <giles@thaumas.net>
-
- Jul 24, 2017
-
-
This symbol is only defined (with the value 1) when building for the Windows target, so we need to ifdef, not if. Signed-off-by:
Ralph Giles <giles@thaumas.net>
-
- Jul 23, 2017
-
-
Signed-off-by:
Ralph Giles <giles@thaumas.net>
-
- Jul 22, 2017
-
-
Ralph Giles authored
The tagging method is different now that our main repository is in git instead of subversion.
-
On Windows the vorbis shared library exports some symbols defined in the vorbisen.c file. To allow error free linking this file should be added to to the VORBIS_SOURCES. Signed-off-by:
Ralph Giles <giles@thaumas.net>
-
https://xiph.org/vorbis/doc/Vorbis_I_spec.html#x1-630004.2.2 specifies these fields as 32bit signed. oggpack_read(opb,32), which is used to read these fields, returns 32 bits stored in a long. On architectures where long is 64bit, this results in a positive value being returned. This value is then stored in struct vorbis_info in bitrate_upper, bitrate_nominal and bitrate_lower, also as long. ogginfo relies on these values in order to display the respective header fields and thus misrepresented the stored value -1 (which has the intended meaning of "bitrate not set") as 2**32-1 on architectures where long is 64bit. Explicitly cast the return value of oggpack_read() to a signed 32bit integer type. A nominal bitrate value of -1 is valid as per specification, and is written by libvorbis for VBR files with samplerate >= 50000Hz. Signed-off-by:
Timothy B. Terriberry <tterribe@xiph.org>
-
- Jun 16, 2017
-
-
Ralph Giles authored
Most checked-in files had a comment with a filename and last-modified string automatically updated by the subversion version control tool. These became obsolete when we migrated the repository to git. Remove them.
-
Timothy B. Terriberry authored
If b->dims is very large, vals will be 1 and acc1 will overflow a long. This causes us to read too many values for this codebook. Signed-off-by:
Monty <xiphmont@xiph.org>
-
- Oct 05, 2016
-
-
Ralph Giles authored
-
Signed-off-by:
Ralph Giles <giles@thaumas.net>
-
-
This allows to switch between different build systems when building multiple test matrix configurations.
-
Ralph Giles authored
Both the generated format specification document and the static html documents depend on the logo in fish_xiph_org.png. Unfortunately we can't list them both in their respective dependencies because both are passed to doc_DATA for installation and automake doesn't seem to remove duplicates, causing /usr/bin/install to complain about the overwrite. I couldn't find a good solution to this. Wrapping the doc_DATA value in GNU make's $(sort /list/) function would work, but automake warns about the non-portable construct. Instead, I've just removed it from the spec dependency list and appended it manually.
-
Ralph Giles authored
New equations were added to the spec source in the previous update (early last year) but the generated graphic versions where not added to the repository. Also add all the generated figures to the distribution. No sense in shipping a spec with broken links.
-
Signed-off-by:
Ralph Giles <giles@thaumas.net>
-
Marcel Metz authored
-
Marcel Metz authored
-
Marcel Metz authored
-
Marcel Metz authored
-
Marcel Metz authored
This allows to switch between different build systems when building multiple test matrix configurations.
-
Marcel Metz authored
Preparations for building with multiple build systems
-
- Oct 04, 2016
-
-
Include vorbis library when linking vorbisfile and vorbisenc. Signed-off-by:
Ralph Giles <giles@thaumas.net>
-
- Sep 08, 2016
-
-
Ralph Giles authored
This makes the minimal changes necessary to build the dynamic solution Win32|Debug target with VS2015 and against the static solution from the ogg master branch. The other targets can be added after updating the project files for VS2015.
-
- Jul 22, 2016
-
-
This allows linking to specific sections. Signed-off-by:
Timothy B. Terriberry <tterribe@xiph.org>
-
- May 14, 2016
-
-
The `doc/Vorbis_I_spec*.png` files are checked into git, but were also being incorrectly deleted during `make clean` because they were listed in `CLEANFILES`.
-
- Mar 28, 2016
-
-
Ralph Giles authored
Configure only looks for doxygen if --enable-docs is passed, so report that as the issue instead.
-
Ralph Giles authored
We want to be warning-free, so this should be the default, not just debug builds. It already is on most other targets.
-
Ralph Giles authored
Recover the full compiler command lines for reference in the logs after the AM_SILENT_RULES change.
-
Ralph Giles authored
Makes warnings more obvious.
-