avcodec/codec_id: add an LCEVC codec id for raw LCEVC data

Signed-off-by: James Almer <jamrial@gmail.com>
release/7.1
James Almer 3 months ago
parent 9cea2410a1
commit 5896318229
  1. 3
      doc/APIchanges
  2. 6
      libavcodec/codec_desc.c
  3. 1
      libavcodec/codec_id.h
  4. 2
      libavcodec/version.h

@ -2,6 +2,9 @@ The last version increases of all libraries were on 2024-03-07
API changes, most recent first:
2024-09-18 - xxxxxxxxxx - lavc 61.16.100 - avcodec.h
Add AV_CODEC_ID_LCEVC.
2024-09-18 - xxxxxxxxxx - lavu 59.37.100 - frame.h
Add AV_FRAME_DATA_LCEVC.

@ -3696,6 +3696,12 @@ static const AVCodecDescriptor codec_descriptors[] = {
.name = "smpte_2038",
.long_name = NULL_IF_CONFIG_SMALL("SMPTE ST 2038 VANC in MPEG-2 TS"),
},
{
.id = AV_CODEC_ID_LCEVC,
.type = AVMEDIA_TYPE_DATA,
.name = "lcevc",
.long_name = NULL_IF_CONFIG_SMALL("LCEVC (Low Complexity Enhancement Video Coding) / MPEG-5 LCEVC / MPEG-5 part 2"),
},
{
.id = AV_CODEC_ID_MPEG2TS,
.type = AVMEDIA_TYPE_DATA,

@ -589,6 +589,7 @@ enum AVCodecID {
AV_CODEC_ID_TIMED_ID3,
AV_CODEC_ID_BIN_DATA,
AV_CODEC_ID_SMPTE_2038,
AV_CODEC_ID_LCEVC,
AV_CODEC_ID_PROBE = 0x19000, ///< codec_id is not known (like AV_CODEC_ID_NONE) but lavf should attempt to identify it

@ -29,7 +29,7 @@
#include "version_major.h"
#define LIBAVCODEC_VERSION_MINOR 15
#define LIBAVCODEC_VERSION_MINOR 16
#define LIBAVCODEC_VERSION_MICRO 100
#define LIBAVCODEC_VERSION_INT AV_VERSION_INT(LIBAVCODEC_VERSION_MAJOR, \

Loading…
Cancel
Save