Git Inbox Mirror of the ffmpeg-devel mailing list - see https://ffmpeg.org/mailman/listinfo/ffmpeg-devel
 help / color / mirror / Atom feed
From: "Rémi Denis-Courmont" <remi@remlab.net>
To: ffmpeg-devel@ffmpeg.org
Subject: Re: [FFmpeg-devel] [PATCH 1/8] lavu: add macros to help making future-proof structures
Date: Tue, 02 May 2023 18:36:40 +0300
Message-ID: <11147228.GNNOHJTIDS@basile.remlab.net> (raw)
In-Reply-To: <20230428095508.221826-1-george@nsup.org>

Le perjantaina 28. huhtikuuta 2023, 12.55.01 EEST Nicolas George a écrit :
> Signed-off-by: Nicolas George <george@nsup.org>
> ---
>  libavutil/extendable.h | 59 ++++++++++++++++++++++++++++++++++++++++++
>  1 file changed, 59 insertions(+)
>  create mode 100644 libavutil/extendable.h
> 
> 
> FFReservedPadding is used by the WIP JSON writer.

A JSON writer that requires forced alignment is a poorly-written JSON parser. 
JSON has a very finite set of types that it can handle, so there should never 
be a need to do this kind of pointer arithmetic kludgery.

> diff --git a/libavutil/extendable.h b/libavutil/extendable.h
> new file mode 100644
> index 0000000000..79980fa202
> --- /dev/null
> +++ b/libavutil/extendable.h
> @@ -0,0 +1,59 @@
> +/*
> + * Copyright (c) 2021 The FFmpeg project
> + *
> + * This file is part of FFmpeg.
> + *
> + * FFmpeg is free software; you can redistribute it and/or
> + * modify it under the terms of the GNU Lesser General Public
> + * License as published by the Free Software Foundation; either
> + * version 2.1 of the License, or (at your option) any later version.
> + *
> + * FFmpeg is distributed in the hope that it will be useful,
> + * but WITHOUT ANY WARRANTY; without even the implied warranty of
> + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
> + * Lesser General Public License for more details.
> + *
> + * You should have received a copy of the GNU Lesser General Public
> + * License along with FFmpeg; if not, write to the Free Software
> + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301
> USA + */
> +
> +#ifndef AVUTIL_EXTENDABLE_H
> +#define AVUTIL_EXTENDABLE_H
> +
> +/**
> + * @defgroup ff_extendable FFExtendable
> + *
> + * Types and macros to help designing structures that can be allocated by
> + * the application, including on the stack, but will not break ABI when
> + * extendded.
> + *
> + * This should not be used outside FFmpeg.
> + *
> + * @{
> + */
> +
> +/**
> + * Define a value of type as a compound literal (hidden local variable)
> + * with the field self_size filled.
> + */
> +#define FF_NEW_SZ(type) ((type){ .self_size = sizeof(type) })
> +
> +/**
> + * Type suitable for paddign at the end of a structure, with maximum
> + * alignment.
> + */
> +typedef union FFReservedPadding {
> +    union {
> +        double d;
> +        void *p;
> +        void (*f)(void);
> +        intmax_t i;
> +    } dummy;
> +} FFReservedPadding;

This is reinventing standard max_align_t but with a more confusing name and 
less portable implementation... Indeed this is not about "padding", but about 
alignment.

> +
> +/**
> + * @}
> + */
> +
> +#endif /* AVUTIL_EXTENDABLE_H */


-- 
雷米‧德尼-库尔蒙
http://www.remlab.net/



_______________________________________________
ffmpeg-devel mailing list
ffmpeg-devel@ffmpeg.org
https://ffmpeg.org/mailman/listinfo/ffmpeg-devel

To unsubscribe, visit link above, or email
ffmpeg-devel-request@ffmpeg.org with subject "unsubscribe".

  parent reply	other threads:[~2023-05-02 15:36 UTC|newest]

Thread overview: 38+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2023-04-28  9:55 Nicolas George
2023-04-28  9:55 ` [FFmpeg-devel] [PATCH 2/8] lavu: new AVWriter API Nicolas George
2023-04-28 10:37   ` Rodney Baker
2023-04-28 11:20     ` Nicolas George
2023-05-02 15:53   ` Rémi Denis-Courmont
2023-05-02 16:53     ` Nicolas George
2023-05-02 18:29       ` Rémi Denis-Courmont
2023-05-02 18:36         ` Nicolas George
2023-05-02 18:46           ` Rémi Denis-Courmont
2023-05-02 18:47             ` Nicolas George
2023-04-28  9:55 ` [FFmpeg-devel] [PATCH 3/8] lavu/writer: add test Nicolas George
2023-04-28  9:55 ` [FFmpeg-devel] [PATCH 4/8] lavf/dump: use a writer Nicolas George
2023-04-28  9:55 ` [FFmpeg-devel] [PATCH 5/8] lavu: add a JSON writer API (WIP) Nicolas George
2023-04-29  9:11   ` Nicolas George
2023-04-29  9:41     ` Anton Khirnov
2023-04-29 14:06       ` James Almer
2023-04-29 17:17         ` Nicolas George
2023-04-29 15:06       ` Derek Buitenhuis
2023-04-30  0:29         ` Kieran Kunhya
2023-05-01  6:20           ` Vittorio Giovara
2023-04-29 17:11       ` Nicolas George
2023-04-29 18:27         ` Anton Khirnov
2023-04-29 18:33           ` Nicolas George
2023-05-01  6:57             ` Leo Izen
2023-05-01  9:51               ` Nicolas George
2023-05-01 10:18               ` Jean-Baptiste Kempf
2023-04-30 15:06           ` Michael Niedermayer
2023-04-30 21:51             ` Kieran Kunhya
2023-05-01  9:46             ` Nicolas George
2023-04-28  9:55 ` [FFmpeg-devel] [PATCH 6/8] lavu: add JSON writer test (WIP) Nicolas George
2023-04-28  9:55 ` [FFmpeg-devel] [PATCH 7/8] lavf/options: add av_disposition_write() Nicolas George
2023-04-28  9:55 ` [FFmpeg-devel] [PATCH 8/8] lavf/dump: use av_disposition_write() Nicolas George
2023-04-29  8:17 ` [FFmpeg-devel] [PATCH 1/8] lavu: add macros to help making future-proof structures Anton Khirnov
2023-04-29 15:11   ` Derek Buitenhuis
2023-05-02 15:36 ` Rémi Denis-Courmont [this message]
2023-05-02 16:42   ` Nicolas George
2023-05-02 18:31     ` Rémi Denis-Courmont
2023-05-02 18:38       ` Nicolas George

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=11147228.GNNOHJTIDS@basile.remlab.net \
    --to=remi@remlab.net \
    --cc=ffmpeg-devel@ffmpeg.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link

Git Inbox Mirror of the ffmpeg-devel mailing list - see https://ffmpeg.org/mailman/listinfo/ffmpeg-devel

This inbox may be cloned and mirrored by anyone:

	git clone --mirror https://master.gitmailbox.com/ffmpegdev/0 ffmpegdev/git/0.git

	# If you have public-inbox 1.1+ installed, you may
	# initialize and index your mirror using the following commands:
	public-inbox-init -V2 ffmpegdev ffmpegdev/ https://master.gitmailbox.com/ffmpegdev \
		ffmpegdev@gitmailbox.com
	public-inbox-index ffmpegdev

Example config snippet for mirrors.


AGPL code for this site: git clone https://public-inbox.org/public-inbox.git