This is an automated email from the git hooks/post-receive script. Git pushed a commit to branch master in repository ffmpeg.
commit e3ec6322bb13a0fb756aaeb12ef772148f0c1965 Author: Andreas Rheinhardt <[email protected]> AuthorDate: Mon Feb 9 02:34:17 2026 +0100 Commit: Andreas Rheinhardt <[email protected]> CommitDate: Thu Feb 12 11:06:33 2026 +0100 avcodec/dpcm: Avoid trailing '_' in macro parameters Signed-off-by: Andreas Rheinhardt <[email protected]> --- libavcodec/dpcm.c | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/libavcodec/dpcm.c b/libavcodec/dpcm.c index edeb1aae72..fed6f76124 100644 --- a/libavcodec/dpcm.c +++ b/libavcodec/dpcm.c @@ -466,12 +466,12 @@ static av_cold void dpcm_flush(AVCodecContext *avctx) s->sample[0] = s->sample[1] = 0; } -#define DPCM_DECODER(id_, name_, long_name_) \ -const FFCodec ff_ ## name_ ## _decoder = { \ - .p.name = #name_, \ - CODEC_LONG_NAME(long_name_), \ +#define DPCM_DECODER(ID, NAME, LONG_NAME) \ +const FFCodec ff_ ## NAME ## _decoder = { \ + .p.name = #NAME, \ + CODEC_LONG_NAME(LONG_NAME), \ .p.type = AVMEDIA_TYPE_AUDIO, \ - .p.id = id_, \ + .p.id = ID, \ .p.capabilities = AV_CODEC_CAP_DR1, \ .priv_data_size = sizeof(DPCMContext), \ .init = dpcm_decode_init, \ _______________________________________________ ffmpeg-cvslog mailing list -- [email protected] To unsubscribe send an email to [email protected]
