diff options
author | Marton Balint <cus@passwd.hu> | 2021-02-20 00:00:59 +0100 |
---|---|---|
committer | Marton Balint <cus@passwd.hu> | 2021-03-04 20:23:49 +0100 |
commit | 7cb40b270ca6f0a0c7f211ccbd3c0331023e920b (patch) | |
tree | c16c8a9e0653514927259fd73b7fe8ec31562bef /libavformat | |
parent | 433227d45210ef733f8f1f224a8954c16a838bbf (diff) | |
download | ffmpeg-7cb40b270ca6f0a0c7f211ccbd3c0331023e920b.tar.gz |
avformat/mxfdec: change toolkit_version metadata field to toolkit_version_num
It only got added recently, and the new name makes it consistent with
product_version_num in the next patch.
Signed-off-by: Marton Balint <cus@passwd.hu>
Diffstat (limited to 'libavformat')
-rw-r--r-- | libavformat/mxfdec.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/mxfdec.c b/libavformat/mxfdec.c index 9f22c386f0..3ce83dde54 100644 --- a/libavformat/mxfdec.c +++ b/libavformat/mxfdec.c @@ -2798,7 +2798,7 @@ static int mxf_read_identification_metadata(void *arg, AVIOContext *pb, int tag, SET_TS_METADATA(pb, "modification_date", ts, str); break; case 0x3C07: - SET_VERSION_METADATA(pb, "toolkit_version", major, minor, tertiary, patch, release, str); + SET_VERSION_METADATA(pb, "toolkit_version_num", major, minor, tertiary, patch, release, str); break; case 0x3C08: SET_STR_METADATA(pb, "application_platform", str); |