diff options
author | Paul B Mahol <onemda@gmail.com> | 2023-05-21 20:31:46 +0200 |
---|---|---|
committer | Paul B Mahol <onemda@gmail.com> | 2023-05-21 20:31:46 +0200 |
commit | 4d4aed281527224b444022d1462ec16909571700 (patch) | |
tree | c72c7a2bad48dd68b6b3a74eedd6d35ec7dfdda2 | |
parent | c4b3e882f8bac6dfb4200a372f61dbf7a1a2d143 (diff) | |
download | ffmpeg-4d4aed281527224b444022d1462ec16909571700.tar.gz |
avcodec/fitsdec: fix decoder class category
-rw-r--r-- | libavcodec/fitsdec.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libavcodec/fitsdec.c b/libavcodec/fitsdec.c index 44135309f2..284e945ba5 100644 --- a/libavcodec/fitsdec.c +++ b/libavcodec/fitsdec.c @@ -319,6 +319,7 @@ static const AVClass fits_decoder_class = { .item_name = av_default_item_name, .option = fits_options, .version = LIBAVUTIL_VERSION_INT, + .category = AV_CLASS_CATEGORY_DECODER, }; const FFCodec ff_fits_decoder = { |