diff options
author | James Almer <jamrial@gmail.com> | 2017-11-11 01:45:46 -0300 |
---|---|---|
committer | James Almer <jamrial@gmail.com> | 2017-11-12 12:49:37 -0300 |
commit | 9549f22bf88dfe622760f0416a29482ba91d5423 (patch) | |
tree | 0f8398ad667aa3dce6c4c770aa3a91cd9003bb7f /libavcodec/h265_metadata_bsf.c | |
parent | 9a6e4c88d64149eaaf28d7ea77de80cedf602935 (diff) | |
download | ffmpeg-9549f22bf88dfe622760f0416a29482ba91d5423.tar.gz |
avcodec/h265_metadata_bsf: fix the AVClass version number
Reviewed-by: Michael Niedermayer <michael@niedermayer.cc>
Reviewed-by: jkqxz
Signed-off-by: James Almer <jamrial@gmail.com>
Diffstat (limited to 'libavcodec/h265_metadata_bsf.c')
-rw-r--r-- | libavcodec/h265_metadata_bsf.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/h265_metadata_bsf.c b/libavcodec/h265_metadata_bsf.c index 9af5cc256f..67dbe288e3 100644 --- a/libavcodec/h265_metadata_bsf.c +++ b/libavcodec/h265_metadata_bsf.c @@ -440,7 +440,7 @@ static const AVClass h265_metadata_class = { .class_name = "h265_metadata_bsf", .item_name = av_default_item_name, .option = h265_metadata_options, - .version = LIBAVCODEC_VERSION_MAJOR, + .version = LIBAVUTIL_VERSION_INT, }; static const enum AVCodecID h265_metadata_codec_ids[] = { |