diff options
author | Michael Niedermayer <michael@niedermayer.cc> | 2018-04-19 23:44:13 +0200 |
---|---|---|
committer | Michael Niedermayer <michael@niedermayer.cc> | 2018-04-19 23:44:13 +0200 |
commit | c0bce367e4932f0fb09195e6978ac1a5a60480a4 (patch) | |
tree | 71e37103174fbc9104c61e1d8a9ade2a628af587 /libavcodec/dump_extradata_bsf.c | |
parent | 3dfe3436ac78607d7baf6f1f7f48691343d9d929 (diff) | |
download | ffmpeg-c0bce367e4932f0fb09195e6978ac1a5a60480a4.tar.gz |
avcodec: Fix AVClass .version
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
Diffstat (limited to 'libavcodec/dump_extradata_bsf.c')
-rw-r--r-- | libavcodec/dump_extradata_bsf.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/dump_extradata_bsf.c b/libavcodec/dump_extradata_bsf.c index 081ae5aa08..98703749f7 100644 --- a/libavcodec/dump_extradata_bsf.c +++ b/libavcodec/dump_extradata_bsf.c @@ -93,7 +93,7 @@ static const AVClass dump_extradata_class = { .class_name = "dump_extradata bsf", .item_name = av_default_item_name, .option = options, - .version = LIBAVUTIL_VERSION_MAJOR, + .version = LIBAVUTIL_VERSION_INT, }; const AVBitStreamFilter ff_dump_extradata_bsf = { |