diff options
author | Anthony Delannoy <anthony.2lannoy@gmail.com> | 2019-08-21 11:36:15 +0200 |
---|---|---|
committer | Marton Balint <cus@passwd.hu> | 2019-09-19 21:30:54 +0200 |
commit | 81bb71761ac3bcac6d70c66267636753494174cc (patch) | |
tree | 2bd4a5722f5685d5343eda2820f217fd20ee0f32 /libavcodec/codec_desc.c | |
parent | 5e51c1aeb5b3497ce37f3eddab4c252125d54221 (diff) | |
download | ffmpeg-81bb71761ac3bcac6d70c66267636753494174cc.tar.gz |
avcodec: add EPG codec ID
Signed-off-by: Marton Balint <cus@passwd.hu>
Diffstat (limited to 'libavcodec/codec_desc.c')
-rw-r--r-- | libavcodec/codec_desc.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/libavcodec/codec_desc.c b/libavcodec/codec_desc.c index d2c6863d3c..0602ecb1b5 100644 --- a/libavcodec/codec_desc.c +++ b/libavcodec/codec_desc.c @@ -3198,6 +3198,12 @@ static const AVCodecDescriptor codec_descriptors[] = { .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, .name = "bintext", |