diff options
author | Andreas Rheinhardt <andreas.rheinhardt@outlook.com> | 2022-03-21 22:25:27 +0100 |
---|---|---|
committer | Andreas Rheinhardt <andreas.rheinhardt@outlook.com> | 2022-03-23 23:45:45 +0100 |
commit | f4098bbc3b10926f618cf89e24780c9e6ae9b8b5 (patch) | |
tree | db7d738eeeefadfc5b2400c4375b2a50d9d07516 /libavcodec/imx_dump_header_bsf.c | |
parent | 1dcd0adedd15f2595d51febbfc171c576c9e080a (diff) | |
download | ffmpeg-f4098bbc3b10926f618cf89e24780c9e6ae9b8b5.tar.gz |
avcodec/bsf: Add FFBitStreamFilter, hide internals of BSFs
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>
Diffstat (limited to 'libavcodec/imx_dump_header_bsf.c')
-rw-r--r-- | libavcodec/imx_dump_header_bsf.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/libavcodec/imx_dump_header_bsf.c b/libavcodec/imx_dump_header_bsf.c index e2b6a15591..241415a0ef 100644 --- a/libavcodec/imx_dump_header_bsf.c +++ b/libavcodec/imx_dump_header_bsf.c @@ -69,8 +69,8 @@ static const enum AVCodecID codec_ids[] = { AV_CODEC_ID_MPEG2VIDEO, AV_CODEC_ID_NONE, }; -const AVBitStreamFilter ff_imx_dump_header_bsf = { - .name = "imxdump", - .filter = imx_dump_header, - .codec_ids = codec_ids, +const FFBitStreamFilter ff_imx_dump_header_bsf = { + .p.name = "imxdump", + .p.codec_ids = codec_ids, + .filter = imx_dump_header, }; |