Re: [libav-devel] [PATCH] dcadec: remove extra indirection

2017-03-29 Thread Luca Barbato
On 29/03/2017 12:36, Luca Barbato wrote: > On 29/03/2017 12:04, Vittorio Giovara wrote: >> From: Anton Khirnov >> >> num_core_channels is always equal to s->audio_header.prim_channels, >> neither one of those variables ever get changed. >> --- >> libavcodec/dcadec.c | 20

Re: [libav-devel] [PATCH] dcadec: remove extra indirection

2017-03-29 Thread Luca Barbato
On 29/03/2017 12:04, Vittorio Giovara wrote: > From: Anton Khirnov > > num_core_channels is always equal to s->audio_header.prim_channels, > neither one of those variables ever get changed. > --- > libavcodec/dcadec.c | 20 > 1 file changed, 8

[libav-devel] [PATCH] dcadec: remove extra indirection

2017-03-29 Thread Vittorio Giovara
From: Anton Khirnov num_core_channels is always equal to s->audio_header.prim_channels, neither one of those variables ever get changed. --- libavcodec/dcadec.c | 20 1 file changed, 8 insertions(+), 12 deletions(-) diff --git a/libavcodec/dcadec.c