Re: [FFmpeg-devel] [PATCH]lavc/sinewin: Do not declare tables as const

2018-10-19 Thread Carl Eugen Hoyos
2018-10-19 20:35 GMT+02:00, Paul B Mahol : > On 10/19/18, Carl Eugen Hoyos wrote: >> 2018-10-16 23:58 GMT+02:00, Carl Eugen Hoyos : >>> 2018-10-14 23:51 GMT+02:00, Carl Eugen Hoyos : 2018-10-14 22:30 GMT+02:00, Hendrik Leppkes : > On Sun, Oct 14, 2018 at 10:18 PM Carl Eugen Hoyos > w

Re: [FFmpeg-devel] [PATCH]lavc/sinewin: Do not declare tables as const

2018-10-19 Thread Paul B Mahol
On 10/19/18, Carl Eugen Hoyos wrote: > 2018-10-16 23:58 GMT+02:00, Carl Eugen Hoyos : >> 2018-10-14 23:51 GMT+02:00, Carl Eugen Hoyos : >>> 2018-10-14 22:30 GMT+02:00, Hendrik Leppkes : On Sun, Oct 14, 2018 at 10:18 PM Carl Eugen Hoyos wrote: > > Attached patch is supposed to fi

Re: [FFmpeg-devel] [PATCH]lavc/sinewin: Do not declare tables as const

2018-10-19 Thread Carl Eugen Hoyos
2018-10-16 23:58 GMT+02:00, Carl Eugen Hoyos : > 2018-10-14 23:51 GMT+02:00, Carl Eugen Hoyos : >> 2018-10-14 22:30 GMT+02:00, Hendrik Leppkes : >>> On Sun, Oct 14, 2018 at 10:18 PM Carl Eugen Hoyos >>> wrote: Attached patch is supposed to fix ticket #7491, I currently don't have gc

Re: [FFmpeg-devel] [PATCH]lavc/sinewin: Do not declare tables as const

2018-10-16 Thread Carl Eugen Hoyos
2018-10-14 23:51 GMT+02:00, Carl Eugen Hoyos : > 2018-10-14 22:30 GMT+02:00, Hendrik Leppkes : >> On Sun, Oct 14, 2018 at 10:18 PM Carl Eugen Hoyos >> wrote: >>> >>> Attached patch is supposed to fix ticket #7491, I currently >>> don't have gcc 8 to test myself. >> >> Only the 120 and 960 tables a

Re: [FFmpeg-devel] [PATCH]lavc/sinewin: Do not declare tables as const

2018-10-14 Thread Carl Eugen Hoyos
2018-10-14 22:30 GMT+02:00, Hendrik Leppkes : > On Sun, Oct 14, 2018 at 10:18 PM Carl Eugen Hoyos > wrote: >> >> Attached patch is supposed to fix ticket #7491, I currently >> don't have gcc 8 to test myself. > > Only the 120 and 960 tables are affected by this bug because > they are not being cre

Re: [FFmpeg-devel] [PATCH]lavc/sinewin: Do not declare tables as const

2018-10-14 Thread Hendrik Leppkes
On Sun, Oct 14, 2018 at 10:18 PM Carl Eugen Hoyos wrote: > > Hi! > > Attached patch is supposed to fix ticket #7491, I currently don't have > gcc 8 to test myself. > Only the 120 and 960 tables are affected by this bug because they are not being created by the hardcoded tables logic, yet this pat

[FFmpeg-devel] [PATCH]lavc/sinewin: Do not declare tables as const

2018-10-14 Thread Carl Eugen Hoyos
Hi! Attached patch is supposed to fix ticket #7491, I currently don't have gcc 8 to test myself. Please comment, Carl Eugen From 90ac3c2b931d060e918a66047ff76c7d45f2274a Mon Sep 17 00:00:00 2001 From: Carl Eugen Hoyos Date: Sun, 14 Oct 2018 22:13:34 +0200 Subject: [PATCH] lavc/sinewin: Do not de