lavc: Add coded bitstream read/write support for AV1

This commit is contained in:
Mark Thompson
2018-09-09 23:08:11 +01:00
parent 5ee4144701
commit c8c81ac502
8 changed files with 3541 additions and 0 deletions

View File

@@ -29,6 +29,9 @@
static const CodedBitstreamType *cbs_type_table[] = {
#if CONFIG_CBS_AV1
&ff_cbs_type_av1,
#endif
#if CONFIG_CBS_H264
&ff_cbs_type_h264,
#endif
@@ -47,6 +50,9 @@ static const CodedBitstreamType *cbs_type_table[] = {
};
const enum AVCodecID ff_cbs_all_codec_ids[] = {
#if CONFIG_CBS_AV1
AV_CODEC_ID_AV1,
#endif
#if CONFIG_CBS_H264
AV_CODEC_ID_H264,
#endif