mirror of
https://gitee.com/openharmony/third_party_ffmpeg
synced 2024-11-23 11:19:55 +00:00
avcodec: add EPG codec ID
Signed-off-by: Marton Balint <cus@passwd.hu>
This commit is contained in:
parent
5e51c1aeb5
commit
81bb71761a
@ -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,
|
||||
|
@ -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,
|
||||
|
@ -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, \
|
||||
|
Loading…
Reference in New Issue
Block a user