[FFmpeg-devel] [PATCH 2/2] avcodec/cdtoons: Remove superfluous ;

Michael Niedermayer michaelni at gmx.at
Fri Feb 28 20:39:54 EET 2020


On Thu, Feb 27, 2020 at 06:15:26AM +0000, Fu, Linjie wrote:
> > -----Original Message-----
> > From: ffmpeg-devel <ffmpeg-devel-bounces at ffmpeg.org> On Behalf Of
> > Andreas Rheinhardt
> > Sent: Thursday, February 27, 2020 13:34
> > To: ffmpeg-devel at ffmpeg.org
> > Cc: Andreas Rheinhardt <andreas.rheinhardt at gmail.com>
> > Subject: [FFmpeg-devel] [PATCH 2/2] avcodec/cdtoons: Remove
> > superfluous ;
> > 
> > The second ; in a double ;; is actually a null statement. It triggers
> > the typical declaration-after-statement compiler-warnings if it occurs
> > in the middle of several declarations (like here).
> > 
> > Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt at gmail.com>
> > ---
> >  libavcodec/cdtoons.c | 2 +-
> >  1 file changed, 1 insertion(+), 1 deletion(-)
> > 
> > diff --git a/libavcodec/cdtoons.c b/libavcodec/cdtoons.c
> > index d5dce6351f..13f9a60f0f 100644
> > --- a/libavcodec/cdtoons.c
> > +++ b/libavcodec/cdtoons.c
> > @@ -61,7 +61,7 @@ static int cdtoons_render_sprite(AVCodecContext
> > *avctx, const uint8_t *data,
> >  {
> >      CDToonsContext *c = avctx->priv_data;
> >      const uint8_t *next_line = data;
> > -    const uint8_t *end = data + data_size;;
> > +    const uint8_t *end = data + data_size;
> >      uint16_t line_size;
> >      uint8_t *dest;
> >      int skip = 0, to_skip, x;
> > --
> 
> lgtm, same issue exists in vf_cas.c maybe could be fixed in one commit.

will apply, dont see a reason why not to apply.

thx


[...]
-- 
Michael     GnuPG fingerprint: 9FF2128B147EF6730BADF133611EC787040B0FAB

No human being will ever know the Truth, for even if they happen to say it
by chance, they would not even known they had done so. -- Xenophanes
-------------- next part --------------
A non-text attachment was scrubbed...
Name: signature.asc
Type: application/pgp-signature
Size: 181 bytes
Desc: not available
URL: <https://ffmpeg.org/pipermail/ffmpeg-devel/attachments/20200228/931d1656/attachment.sig>


More information about the ffmpeg-devel mailing list