Re: [FFmpeg-devel] [PATCH]lavc/alac: Make a variable unsigned

2019-04-19 Thread Carl Eugen Hoyos
2019-04-18 13:53 GMT+02:00, Carl Eugen Hoyos : > Attached patch silences a warning that is shown with some gcc versions. Patch applied. Carl Eugen ___ ffmpeg-devel mailing list ffmpeg-devel@ffmpeg.org https://ffmpeg.org/mailman/listinfo/ffmpeg-devel

Re: [FFmpeg-devel] [PATCH]lavc/alac: Make a variable unsigned

2019-04-18 Thread Lauri Kasanen
On Thu, 18 Apr 2019 15:07:03 +0200 Hendrik Leppkes wrote: > On Thu, Apr 18, 2019 at 2:54 PM Lauri Kasanen wrote: > > > > On Thu, 18 Apr 2019 13:53:37 +0200 > > Carl Eugen Hoyos wrote: > > > > > Hi! > > > > > > Attached patch silences a warning that is shown with some gcc versions. > > > > It

Re: [FFmpeg-devel] [PATCH]lavc/alac: Make a variable unsigned

2019-04-18 Thread Carl Eugen Hoyos
2019-04-18 14:54 GMT+02:00, Lauri Kasanen : > On Thu, 18 Apr 2019 13:53:37 +0200 > Carl Eugen Hoyos wrote: > >> Hi! >> >> Attached patch silences a warning that is shown with some gcc versions. > > It pokes my style sense to have different things in the sizeof() and > the var. How about uint32_t

Re: [FFmpeg-devel] [PATCH]lavc/alac: Make a variable unsigned

2019-04-18 Thread Hendrik Leppkes
On Thu, Apr 18, 2019 at 2:54 PM Lauri Kasanen wrote: > > On Thu, 18 Apr 2019 13:53:37 +0200 > Carl Eugen Hoyos wrote: > > > Hi! > > > > Attached patch silences a warning that is shown with some gcc versions. > > It pokes my style sense to have different things in the sizeof() and > the var. How

Re: [FFmpeg-devel] [PATCH]lavc/alac: Make a variable unsigned

2019-04-18 Thread Lauri Kasanen
On Thu, 18 Apr 2019 13:53:37 +0200 Carl Eugen Hoyos wrote: > Hi! > > Attached patch silences a warning that is shown with some gcc versions. It pokes my style sense to have different things in the sizeof() and the var. How about uint32_t in both? - Lauri

[FFmpeg-devel] [PATCH]lavc/alac: Make a variable unsigned

2019-04-18 Thread Carl Eugen Hoyos
Hi! Attached patch silences a warning that is shown with some gcc versions. Please comment, Carl Eugen From 6ed77b4c191028f47f48396a782619f2ba47b716 Mon Sep 17 00:00:00 2001 From: Carl Eugen Hoyos Date: Thu, 18 Apr 2019 13:51:07 +0200 Subject: [PATCH] lavc/alac: Make a variable unsigned.