projects
/
handbrake
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
ffd4524
)
hb_json: fix title dict format string
author
John Stebbins
<jstebbins.hb@gmail.com>
Mon, 26 Aug 2019 21:53:31 +0000
(14:53 -0700)
committer
John Stebbins
<jstebbins.hb@gmail.com>
Mon, 26 Aug 2019 21:53:31 +0000
(14:53 -0700)
missing format specifier results in LFECount getting dropped from audio
track settings
libhb/hb_json.c
patch
|
blob
|
history
diff --git
a/libhb/hb_json.c
b/libhb/hb_json.c
index 3cb353a4080a2b40179b55ac4ebb933338f05435..9f5286d7f4559caa3f9f680963040e7250be5720 100644
(file)
--- a/
libhb/hb_json.c
+++ b/
libhb/hb_json.c
@@
-391,7
+391,7
@@
static hb_dict_t* hb_title_to_dict_internal( hb_title_t *title )
attributes = hb_audio_attributes_to_dict(audio->config.lang.attributes);
audio_dict = json_pack_ex(&error, 0,
- "{s:o, s:o, s:o, s:o, s:o, s:o, s:o, s:o, s:o, s:o, s:o, s:o}",
+ "{s:o, s:o, s:o, s:o, s:o, s:o, s:o, s:o, s:o, s:o, s:o, s:o
, s:o
}",
"Description", hb_value_string(audio->config.lang.description),
"Language", hb_value_string(audio->config.lang.simple),
"LanguageCode", hb_value_string(audio->config.lang.iso639_2),