[ffmpeg] branch master updated. 7252f6c0bf avcodec/version: update the codec_ids
The branch, master has been updated via 7252f6c0bfe7b983232c99b1a5f5924a58654d6b (commit) from 4ede75b5f48df5a487ec85da4ec4ca2e16046341 (commit) - Log ----------------------------------------------------------------- commit 7252f6c0bfe7b983232c99b1a5f5924a58654d6b Author: Nicolas Gaullier <nicolas.gaullier@cji.paris> AuthorDate: Fri Aug 29 17:29:24 2025 +0200 Commit: Nicolas Gaullier <nicolas.gaullier@cji.paris> CommitDate: Fri Aug 29 17:32:52 2025 +0200 avcodec/version: update the codec_ids The counters should be incremented for each new codec. Catch-up to be in sync with codec_id.h again. Signed-off-by: Nicolas Gaullier <nicolas.gaullier@cji.paris> diff --git a/libavcodec/version.c b/libavcodec/version.c index 8a0398f28f..07e8e47e44 100644 --- a/libavcodec/version.c +++ b/libavcodec/version.c @@ -31,13 +31,13 @@ const char av_codec_ffversion[] = "FFmpeg version " FFMPEG_VERSION; unsigned avcodec_version(void) { - static_assert(AV_CODEC_ID_DNXUC == 270 && + static_assert(AV_CODEC_ID_PRORES_RAW == 274 && AV_CODEC_ID_PCM_SGA == 65572 && - AV_CODEC_ID_ADPCM_XMD == 69683 && + AV_CODEC_ID_ADPCM_SANYO == 69685 && AV_CODEC_ID_CBD2_DPCM == 81928 && - AV_CODEC_ID_QOA == 86121 && + AV_CODEC_ID_G728 == 86123 && AV_CODEC_ID_IVTV_VBI == 94234 && - AV_CODEC_ID_SMPTE_2038 == 98315, + AV_CODEC_ID_SMPTE_436M_ANC == 98317, "Don't insert new codec ids in the middle of a list"); static_assert(LIBAVCODEC_VERSION_MICRO >= 100, "micro version starts at 100"); ----------------------------------------------------------------------- Summary of changes: libavcodec/version.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) hooks/post-receive --
participants (1)
-
ffmpeg-git@ffmpeg.org