avcodec: add EPG codec ID

Signed-off-by: Marton Balint <cus@passwd.hu>
This commit is contained in:
Anthony Delannoy 2019-08-21 11:36:15 +02:00 committed by Marton Balint
parent 5e51c1aeb5
commit 81bb71761a
3 changed files with 8 additions and 1 deletions

View File

@ -690,6 +690,7 @@ enum AVCodecID {
AV_CODEC_ID_TTF = 0x18000,
AV_CODEC_ID_SCTE_35, ///< Contain timestamp estimated through PCR of program stream.
AV_CODEC_ID_EPG,
AV_CODEC_ID_BINTEXT = 0x18800,
AV_CODEC_ID_XBIN,
AV_CODEC_ID_IDF,

View File

@ -3197,6 +3197,12 @@ static const AVCodecDescriptor codec_descriptors[] = {
.name = "scte_35",
.long_name = NULL_IF_CONFIG_SMALL("SCTE 35 Message Queue"),
},
{
.id = AV_CODEC_ID_EPG,
.type = AVMEDIA_TYPE_DATA,
.name = "epg",
.long_name = NULL_IF_CONFIG_SMALL("Electronic Program Guide"),
},
{
.id = AV_CODEC_ID_BINTEXT,
.type = AVMEDIA_TYPE_VIDEO,

View File

@ -28,7 +28,7 @@
#include "libavutil/version.h"
#define LIBAVCODEC_VERSION_MAJOR 58
#define LIBAVCODEC_VERSION_MINOR 57
#define LIBAVCODEC_VERSION_MINOR 58
#define LIBAVCODEC_VERSION_MICRO 100
#define LIBAVCODEC_VERSION_INT AV_VERSION_INT(LIBAVCODEC_VERSION_MAJOR, \