Codebase list squeezelite / debian/1.8-4.1
Import Debian changes 1.8-4.1 squeezelite (1.8-4.1) unstable; urgency=medium . * Non-maintainer upload. * debian/patches: Fix build with ffmpeg 4.0. Thanks to James Cowgill for the patch. (Closes: #888335) Sebastian Ramacher authored 5 years ago Chris Boot committed 3 years ago
3 changed file(s) with 25 addition(s) and 0 deletion(s). Raw diff Collapse all Expand all
0 squeezelite (1.8-4.1) unstable; urgency=medium
1
2 * Non-maintainer upload.
3 * debian/patches: Fix build with ffmpeg 4.0. Thanks to James Cowgill for the
4 patch. (Closes: #888335)
5
6 -- Sebastian Ramacher <sramacher@debian.org> Wed, 11 Jul 2018 22:17:50 +0200
7
08 squeezelite (1.8-4) unstable; urgency=medium
19
210 * Run wrap-and-sort.
0 Description: Fix FTBFS with FFmpeg 4.0
1 Author: James Cowgill <jcowgill@debian.org>
2 Bug-Debian: https://bugs.debian.org/888335
3 ---
4 This patch header follows DEP-3: http://dep.debian.net/deps/dep3/
5 --- a/ffmpeg.c
6 +++ b/ffmpeg.c
7 @@ -264,7 +264,7 @@ static decode_state ff_decode(void) {
8 ff->mmsh_bytes_left = ff->mmsh_bytes_pad = ff->mmsh_packet_len = 0;
9
10 if (!ff->readbuf) {
11 - ff->readbuf = AV(ff, malloc, READ_SIZE + FF_INPUT_BUFFER_PADDING_SIZE);
12 + ff->readbuf = AV(ff, malloc, READ_SIZE + AV_INPUT_BUFFER_PADDING_SIZE);
13 }
14
15 avio = AVIO(ff, alloc_context, ff->readbuf, READ_SIZE, 0, NULL, _read_data, NULL, NULL);
11 Makefile-portaudio.patch
22 ffmpeg_2.9.patch
33 rename-logs.patch
4 ffmpeg4.0.patch