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

@@ -86,6 +86,7 @@ int ff_cbs_write_unsigned(CodedBitstreamContext *ctx, PutBitContext *pbc,
#define MAX_UINT_BITS(length) ((UINT64_C(1) << (length)) - 1)
extern const CodedBitstreamType ff_cbs_type_av1;
extern const CodedBitstreamType ff_cbs_type_h264;
extern const CodedBitstreamType ff_cbs_type_h265;
extern const CodedBitstreamType ff_cbs_type_jpeg;