diff options
author | John Stebbins <[email protected]> | 2019-08-03 10:22:34 -0700 |
---|---|---|
committer | John Stebbins <[email protected]> | 2019-08-11 15:36:41 -0700 |
commit | 3999c06cb6194d5e537ce2460b80ecf2d2af81af (patch) | |
tree | adf219e3229c035d0f1b39622c4d127bc1df07e7 /libhb/muxavformat.c | |
parent | 31dca439cdc2ac3753d77f376c127083bd6a41cb (diff) |
fix build error
not sure how/why I committed somethng I didn't even compile :-\
Diffstat (limited to 'libhb/muxavformat.c')
-rw-r--r-- | libhb/muxavformat.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/libhb/muxavformat.c b/libhb/muxavformat.c index c2f7c2a62..4ce4841fe 100644 --- a/libhb/muxavformat.c +++ b/libhb/muxavformat.c @@ -969,7 +969,8 @@ 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", name, 0); + av_dict_set(&track->st->metadata, "handler_name", + subtitle->config.name, 0); } } } |