diff options
author | James Almer <jamrial@gmail.com> | 2017-11-11 01:45:37 -0300 |
---|---|---|
committer | James Almer <jamrial@gmail.com> | 2017-11-12 12:49:37 -0300 |
commit | 9a6e4c88d64149eaaf28d7ea77de80cedf602935 (patch) | |
tree | 3d0c81f52dd0e70cb7a276000754d4209bc75ac2 /libavcodec | |
parent | 1ef4af2d492e87e6d9fc9157a2d9c7f95585f61c (diff) | |
download | ffmpeg-9a6e4c88d64149eaaf28d7ea77de80cedf602935.tar.gz |
avcodec/h264_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')
-rw-r--r-- | libavcodec/h264_metadata_bsf.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/h264_metadata_bsf.c b/libavcodec/h264_metadata_bsf.c index 73e73e96e4..ada40a57c7 100644 --- a/libavcodec/h264_metadata_bsf.c +++ b/libavcodec/h264_metadata_bsf.c @@ -506,7 +506,7 @@ static const AVClass h264_metadata_class = { .class_name = "h264_metadata_bsf", .item_name = av_default_item_name, .option = h264_metadata_options, - .version = LIBAVCODEC_VERSION_MAJOR, + .version = LIBAVUTIL_VERSION_INT, }; static const enum AVCodecID h264_metadata_codec_ids[] = { |