diff options
author | John Stebbins <[email protected]> | 2019-08-02 13:13:44 -0700 |
---|---|---|
committer | John Stebbins <[email protected]> | 2019-08-11 15:36:41 -0700 |
commit | 17e12129b500207053373f9c8480e22191ebb570 (patch) | |
tree | 54d3865578fd25817d300d34ed9f81a6298d912f /libhb/muxavformat.c | |
parent | a1b407bc341c493aa027d526faeb3404e085e8a0 (diff) |
muxavformat: fix writing alternative track name in mp4 hdlr atom
ffmpeg changed the name of the metadata key at some point
Diffstat (limited to 'libhb/muxavformat.c')
-rw-r--r-- | libhb/muxavformat.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libhb/muxavformat.c b/libhb/muxavformat.c index 353e519fc..ecedc0be1 100644 --- a/libhb/muxavformat.c +++ b/libhb/muxavformat.c @@ -701,7 +701,7 @@ static int avformatInit( hb_mux_object_t * m ) { // Some software (MPC, mediainfo) use hdlr description // for track title - av_dict_set(&track->st->metadata, "handler", name, 0); + av_dict_set(&track->st->metadata, "handler_name", name, 0); } } |