diff options
author | Mark Thompson <sw@jkqxz.net> | 2018-03-11 17:27:15 +0000 |
---|---|---|
committer | Mark Thompson <sw@jkqxz.net> | 2018-03-18 17:55:00 +0000 |
commit | 84bb8327f571c4924789413efafde47d96b8b72b (patch) | |
tree | cb4891e50a6d1047ca8c59811fb2201406f4836e /libavcodec | |
parent | 94d42cb4cc6e420c80abbf54148be1578f7c3244 (diff) | |
download | ffmpeg-84bb8327f571c4924789413efafde47d96b8b72b.tar.gz |
cbs: Add a table of all supported codec IDs
Use it as the set of codec IDs supported by the trace_headers BSF.
Diffstat (limited to 'libavcodec')
-rw-r--r-- | libavcodec/cbs.c | 13 | ||||
-rw-r--r-- | libavcodec/cbs.h | 8 | ||||
-rw-r--r-- | libavcodec/trace_headers_bsf.c | 9 |
3 files changed, 22 insertions, 8 deletions
diff --git a/libavcodec/cbs.c b/libavcodec/cbs.c index 62f60be437..897e0bb28e 100644 --- a/libavcodec/cbs.c +++ b/libavcodec/cbs.c @@ -40,6 +40,19 @@ static const CodedBitstreamType *cbs_type_table[] = { #endif }; +const enum AVCodecID ff_cbs_all_codec_ids[] = { +#if CONFIG_CBS_H264 + AV_CODEC_ID_H264, +#endif +#if CONFIG_CBS_H265 + AV_CODEC_ID_H265, +#endif +#if CONFIG_CBS_MPEG2 + AV_CODEC_ID_MPEG2VIDEO, +#endif + AV_CODEC_ID_NONE +}; + int ff_cbs_init(CodedBitstreamContext **ctx_ptr, enum AVCodecID codec_id, void *log_ctx) { diff --git a/libavcodec/cbs.h b/libavcodec/cbs.h index 396ff0faec..402eb39e00 100644 --- a/libavcodec/cbs.h +++ b/libavcodec/cbs.h @@ -202,6 +202,14 @@ typedef struct CodedBitstreamContext { /** + * Table of all supported codec IDs. + * + * Terminated by AV_CODEC_ID_NONE. + */ +extern const enum AVCodecID ff_cbs_all_codec_ids[]; + + +/** * Create and initialise a new context for the given codec. */ int ff_cbs_init(CodedBitstreamContext **ctx, diff --git a/libavcodec/trace_headers_bsf.c b/libavcodec/trace_headers_bsf.c index 0697e98943..94a3ef72a2 100644 --- a/libavcodec/trace_headers_bsf.c +++ b/libavcodec/trace_headers_bsf.c @@ -107,18 +107,11 @@ static int trace_headers(AVBSFContext *bsf, AVPacket *pkt) return 0; } -static const enum AVCodecID trace_headers_codec_ids[] = { - AV_CODEC_ID_H264, - AV_CODEC_ID_HEVC, - AV_CODEC_ID_MPEG2VIDEO, - AV_CODEC_ID_NONE, -}; - const AVBitStreamFilter ff_trace_headers_bsf = { .name = "trace_headers", .priv_data_size = sizeof(TraceHeadersContext), .init = &trace_headers_init, .close = &trace_headers_close, .filter = &trace_headers, - .codec_ids = trace_headers_codec_ids, + .codec_ids = ff_cbs_all_codec_ids, }; |