[FFmpeg-devel,1/4] V10 - Adding SCTE-35 CUI codec
Commit Message
From: Carlos Fernandez <carlos@ccextractor.org>
Signed-off-by: Carlos Fernandez <carlos@ccextractor.org>
---
libavcodec/avcodec.h | 3 ++-
libavcodec/codec_desc.c | 6 ++++++
2 files changed, 8 insertions(+), 1 deletion(-)
Comments
2016-09-26 19:59 GMT+02:00 Carlos Fernandez Sanz <carlos@ccextractor.org>:
> From: Carlos Fernandez <carlos@ccextractor.org>
>
> Signed-off-by: Carlos Fernandez <carlos@ccextractor.org>
> ---
> libavcodec/avcodec.h | 3 ++-
> libavcodec/codec_desc.c | 6 ++++++
> 2 files changed, 8 insertions(+), 1 deletion(-)
>
> diff --git a/libavcodec/avcodec.h b/libavcodec/avcodec.h
> index b174116..0eee2ab 100644
> --- a/libavcodec/avcodec.h
> +++ b/libavcodec/avcodec.h
> @@ -630,7 +630,8 @@ enum AVCodecID {
> /* other specific kind of codecs (generally used for attachments) */
> AV_CODEC_ID_FIRST_UNKNOWN = 0x18000, ///< A dummy ID pointing at the start of various fake codecs.
> AV_CODEC_ID_TTF = 0x18000,
> -
> + AV_CODEC_ID_SCTE_35,/**< Contain no valid time stamp in DTS PTS of avpacket, avpacket data contain time stamp
> + in scte-35 format which is relative to DTS/PTS of video stream */
> AV_CODEC_ID_BINTEXT = 0x18800,
The empty line is there to make the list slightly more readable,
please do not remove it.
Sorry, Carl Eugen
@@ -630,7 +630,8 @@ enum AVCodecID {
/* other specific kind of codecs (generally used for attachments) */
AV_CODEC_ID_FIRST_UNKNOWN = 0x18000, ///< A dummy ID pointing at the start of various fake codecs.
AV_CODEC_ID_TTF = 0x18000,
-
+ AV_CODEC_ID_SCTE_35,/**< Contain no valid time stamp in DTS PTS of avpacket, avpacket data contain time stamp
+ in scte-35 format which is relative to DTS/PTS of video stream */
AV_CODEC_ID_BINTEXT = 0x18800,
AV_CODEC_ID_XBIN,
AV_CODEC_ID_IDF,
@@ -2964,6 +2964,12 @@ static const AVCodecDescriptor codec_descriptors[] = {
.long_name = NULL_IF_CONFIG_SMALL("binary data"),
.mime_types= MT("application/octet-stream"),
},
+ {
+ .id = AV_CODEC_ID_SCTE_35,
+ .type = AVMEDIA_TYPE_DATA,
+ .name = "scte_35",
+ .long_name = NULL_IF_CONFIG_SMALL("SCTE 35 Message Queue"),
+ },
/* deprecated codec ids */
};