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>
This commit is contained in:
Nicolas Gaullier
2025-08-29 17:29:24 +02:00
parent 4ede75b5f4
commit 7252f6c0bf

View File

@@ -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");