diff options
author | Marton Balint | 2019-04-14 18:37:44 +0200 |
---|---|---|
committer | Marton Balint | 2019-04-14 21:54:35 +0200 |
commit | f9840cd2b501fe7956155542be5afb4432530903 (patch) | |
tree | 48cc107dd264aee6933cfe220d90328ffebf378a /libavformat/mxfdec.c | |
parent | 1f260d7285c841f9e13c1d76158949a5d3c73a06 (diff) |
avformat/mxfdec: use operational_pattern_ul instead of operational_pattern for metadata
This makes it more consistent with other metadata keys.
Signed-off-by: Marton Balint <cus@passwd.hu>
Diffstat (limited to 'libavformat/mxfdec.c')
-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 8c65a2bbcf..3ea8de1666 100644 --- a/libavformat/mxfdec.c +++ b/libavformat/mxfdec.c @@ -722,7 +722,7 @@ static int mxf_read_partition_pack(void *arg, AVIOContext *pb, int tag, int size if (partition->type == Header) { char str[36]; snprintf(str, sizeof(str), "%08x.%08x.%08x.%08x", AV_RB32(&op[0]), AV_RB32(&op[4]), AV_RB32(&op[8]), AV_RB32(&op[12])); - av_dict_set(&s->metadata, "operational_pattern", str, 0); + av_dict_set(&s->metadata, "operational_pattern_ul", str, 0); } if (partition->this_partition && |