summaryrefslogtreecommitdiff
path: root/libavcodec/cbs_bsf.h
Commit message (Collapse)AuthorAgeFilesLines
* avcodec/bsf: Add FFBitStreamFilter, hide internals of BSFsAndreas Rheinhardt2022-03-231-3/+3
| | | | | | | | | | This patch is analogous to 20f972701806be20a77f808db332d9489343bb78: It hides the internal part of AVBitStreamFilter by adding a new internal structure FFBitStreamFilter (declared in bsf_internal.h) that has an AVBitStreamFilter as its first member; the internal part of AVBitStreamFilter is moved to this new structure. Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
* lavc/cbs_bsf.h: explicitly #include all required headersAnton Khirnov2021-06-101-0/+6
|
* cbs: Implement common parts of cbs-based bitstream filters separatelyMark Thompson2021-01-211-0/+131
This allows removal of a lot of duplicated code between BSFs.