diff options
author | jstebbins <[email protected]> | 2014-12-23 22:08:10 +0000 |
---|---|---|
committer | jstebbins <[email protected]> | 2014-12-23 22:08:10 +0000 |
commit | 2f8e8b63af1a896d4d15b48ee46a09ca1e061583 (patch) | |
tree | c92f6a8c10317b595cf6971ba7ecec6840cc5924 /gtk/src/queuehandler.c | |
parent | 80d43d93c9514df0437480d3054720a803c3b663 (diff) |
eliminate job->largeFileSize
It is no longer needed since we eliminated mp4v2 support
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@6647 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'gtk/src/queuehandler.c')
-rw-r--r-- | gtk/src/queuehandler.c | 10 |
1 files changed, 2 insertions, 8 deletions
diff --git a/gtk/src/queuehandler.c b/gtk/src/queuehandler.c index 69adc81b2..021c56913 100644 --- a/gtk/src/queuehandler.c +++ b/gtk/src/queuehandler.c @@ -197,14 +197,13 @@ add_to_queue_list(signal_user_data_t *ud, GValue *settings, GtkTreeIter *piter) // Next line in the display (Container options) // Container Options: - Chapter Markers - gboolean ipod = FALSE, http = FALSE, large = FALSE; + gboolean ipod = FALSE, http = FALSE; if (mux->format & HB_MUX_MASK_MP4) { ipod = ghb_settings_get_boolean(settings, "Mp4iPodCompatible"); http = ghb_settings_get_boolean(settings, "Mp4HttpOptimize"); - large = ghb_settings_get_boolean(settings, "Mp4LargeFile"); } - if (http || ipod || large || markers) + if (http || ipod || markers) { const char *prefix = " "; XPRINT(_("<b>Container Options:</b><small>")); @@ -223,11 +222,6 @@ add_to_queue_list(signal_user_data_t *ud, GValue *settings, GtkTreeIter *piter) XPRINT(_("%sWeb Optimized"), prefix); prefix = " - "; } - if (large) - { - XPRINT(_("%sLarge File Size (>4GB)"), prefix); - prefix = " - "; - } XPRINT("</small>\n"); } |