From 84bb8327f571c4924789413efafde47d96b8b72b Mon Sep 17 00:00:00 2001 From: Mark Thompson Date: Sun, 11 Mar 2018 17:27:15 +0000 Subject: cbs: Add a table of all supported codec IDs Use it as the set of codec IDs supported by the trace_headers BSF. --- libavcodec/cbs.c | 13 +++++++++++++ 1 file changed, 13 insertions(+) (limited to 'libavcodec/cbs.c') 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) { -- cgit v1.2.3