diff options
author | Bradley Sepos <[email protected]> | 2017-07-26 17:23:18 -0400 |
---|---|---|
committer | Bradley Sepos <[email protected]> | 2017-07-26 17:23:18 -0400 |
commit | 710b8c864556a5324683ea8bdf9d7fd4ef9dd7c5 (patch) | |
tree | 832f6902d50d59397001656bdf7cb4a7a2778274 | |
parent | a0e28aa2a32e41029e7373ef98d9a24fea8e8ce9 (diff) |
MacGUI: Add Align A/V Start to Queue info.
-rw-r--r-- | macosx/HBJob+UIAdditions.m | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/macosx/HBJob+UIAdditions.m b/macosx/HBJob+UIAdditions.m index e3eaea0ac..a580682a8 100644 --- a/macosx/HBJob+UIAdditions.m +++ b/macosx/HBJob+UIAdditions.m @@ -201,6 +201,11 @@ static NSDictionary *shortHeightAttr; [options appendString:@", Web Optimized"]; } + if ((self.container & HB_MUX_MASK_MP4) && self.alignAVStart) + { + [options appendString:@", Align A/V Start"]; + } + if ((self.container & HB_MUX_MASK_MP4) && self.mp4iPodCompatible) { [options appendString:@", iPod 5G Support"]; |