Re: [FFmpeg-devel] CBS

2024-08-06 Thread Michael Niedermayer
On Tue, Aug 06, 2024 at 09:51:10PM +0200, Andreas Rheinhardt wrote: > Michael Niedermayer: > > On Tue, Aug 06, 2024 at 08:41:16PM +0200, Andreas Rheinhardt wrote: > >> James Almer: > >>> On 8/6/2024 2:54 PM, Andreas Rheinhardt wrote: > Michael Niedermayer: > > On Tue, Aug 06, 2024 at 07:05

Re: [FFmpeg-devel] CBS

2024-08-06 Thread Andreas Rheinhardt
Michael Niedermayer: > On Tue, Aug 06, 2024 at 08:41:16PM +0200, Andreas Rheinhardt wrote: >> James Almer: >>> On 8/6/2024 2:54 PM, Andreas Rheinhardt wrote: Michael Niedermayer: > On Tue, Aug 06, 2024 at 07:05:38PM +0200, Michael Niedermayer wrote: >> Hi >> >> Did CBS win the

Re: [FFmpeg-devel] CBS

2024-08-06 Thread Michael Niedermayer
On Tue, Aug 06, 2024 at 08:41:16PM +0200, Andreas Rheinhardt wrote: > James Almer: > > On 8/6/2024 2:54 PM, Andreas Rheinhardt wrote: > >> Michael Niedermayer: > >>> On Tue, Aug 06, 2024 at 07:05:38PM +0200, Michael Niedermayer wrote: > Hi > > Did CBS win the obfuscated C contest yet

Re: [FFmpeg-devel] CBS

2024-08-06 Thread Andreas Rheinhardt
James Almer: > On 8/6/2024 2:54 PM, Andreas Rheinhardt wrote: >> Michael Niedermayer: >>> On Tue, Aug 06, 2024 at 07:05:38PM +0200, Michael Niedermayer wrote: Hi Did CBS win the obfuscated C contest yet? I was just looking at a msan issue and then looked at this:

Re: [FFmpeg-devel] CBS

2024-08-06 Thread Michael Niedermayer
On Tue, Aug 06, 2024 at 07:54:58PM +0200, Andreas Rheinhardt wrote: > Michael Niedermayer: > > On Tue, Aug 06, 2024 at 07:05:38PM +0200, Michael Niedermayer wrote: > >> Hi > >> > >> Did CBS win the obfuscated C contest yet? > >> > >> I was just looking at a msan issue and then looked at this: > >>

Re: [FFmpeg-devel] CBS

2024-08-06 Thread James Almer
On 8/6/2024 2:54 PM, Andreas Rheinhardt wrote: Michael Niedermayer: On Tue, Aug 06, 2024 at 07:05:38PM +0200, Michael Niedermayer wrote: Hi Did CBS win the obfuscated C contest yet? I was just looking at a msan issue and then looked at this: CHECK(FUNC_SEI(message_list)(ctx, rw, ¤t->message_

Re: [FFmpeg-devel] CBS

2024-08-06 Thread Andreas Rheinhardt
Michael Niedermayer: > On Tue, Aug 06, 2024 at 07:05:38PM +0200, Michael Niedermayer wrote: >> Hi >> >> Did CBS win the obfuscated C contest yet? >> >> I was just looking at a msan issue and then looked at this: >> >> CHECK(FUNC_SEI(message_list)(ctx, rw, ¤t->message_list, 1)); >> >> >> #define CHE

Re: [FFmpeg-devel] CBS

2024-08-06 Thread Michael Niedermayer
On Tue, Aug 06, 2024 at 07:05:38PM +0200, Michael Niedermayer wrote: > Hi > > Did CBS win the obfuscated C contest yet? > > I was just looking at a msan issue and then looked at this: > > CHECK(FUNC_SEI(message_list)(ctx, rw, ¤t->message_list, 1)); > > > #define CHECK(call) do { \ > er

[FFmpeg-devel] CBS

2024-08-06 Thread Michael Niedermayer
Hi Did CBS win the obfuscated C contest yet? I was just looking at a msan issue and then looked at this: CHECK(FUNC_SEI(message_list)(ctx, rw, ¤t->message_list, 1)); #define CHECK(call) do { \ err = (call); \ if (err < 0) \ return err; \ } while (0) #define FUN